diff --git a/admin/survey/SurveyAdmin.php b/admin/survey/SurveyAdmin.php
index bf9a1e4c5..469b2a36e 100644
--- a/admin/survey/SurveyAdmin.php
+++ b/admin/survey/SurveyAdmin.php
@@ -1958,7 +1958,8 @@ class SurveyAdmin
|| $this->first_action == 'langStatistic'
|| $this->first_action == 'usable_resp'
|| $this->first_action == 'speeder_index'
- || $this->first_action == 'reminder_tracking') {
+ || $this->first_action == 'reminder_tracking'
+ || $this->first_action == 'status_advanced') {
echo '
';
+
+ // Uporabni respondenti
+ echo '
';
+
+ // Kakovost respondentov - v delu, zaenkrat samo admini
+ if ($admin_type === '0') {
+ echo '
';
+ }
+
+ // Index hitrosti - v delu, zaenkrat samo admini
+ if ($admin_type === '0') {
+ echo '
';
+ }
+
+ // Analiza besedil
+ if ($admin_type === '0' || $admin_type === '1') {
+ echo '
';
+ }
+
+ // IP lokacija - gorenje ima to ugasnjeno, volitve imajo tudi ugasnjeno
+ if (!Common::checkModule('gorenje') && !SurveyInfo::getInstance()->checkSurveyModule('voting')) {
+ echo '
';
+ }
+
+ // Analize urejanja - v delu, zaenkrat samo admini
+ if ($admin_type === '0') {
+ echo '
';
+ }
+
+ // reminder tracking - pokazi, ce je admin in so vklopljeni napredni parapodatki
+ $survey_track_reminders = SurveySetting::getInstance()->getSurveyMiscSetting('survey_track_reminders');
+ if ($survey_track_reminders == '') $survey_track_reminders = 0;
+ if (($admin_type === '0' || $admin_type === '1') && SurveyInfo::getInstance()->checkSurveyModule('advanced_paradata')) {
+ echo '
';
+ }
+
+ // ul evalvacija
+ if (Common::checkModule('evalvacija') == '1') {
+ echo '
';
+ }
+
+ // AAPOR
+ // aapor naj bo viden samo če so vabila
+ if (SurveyInfo::getSurveyColumn('user_base') == 1 || SurveyInfo::getInstance()->checkSurveyModule('email')) {
+ echo '
';
+ }
+
+ // langStatistic
+ // langStatistic naj bo viden samo če imamo različne jezike in nimamo volitev
+ if (!Common::checkModule('gorenje') && !SurveyInfo::getInstance()->checkSurveyModule('voting')) {
+
+ $qry_string = "SELECT language FROM srv_user WHERE ank_id = '" . $this->anketa . "' AND preview = '0' AND deleted='0' group by language";
+ $qry = (sisplet_query($qry_string));
+ $cntLang = mysqli_num_rows($qry);
+
+ if ($cntLang > 1) {
+ echo '
';
+ }
+ }
+
+ echo '
';
+ }
}
private function displayAnketaTabUrejanje(){
diff --git a/admin/survey/classes/class.SurveyStaticHtml.php b/admin/survey/classes/class.SurveyStaticHtml.php
index c83317156..874e26e83 100644
--- a/admin/survey/classes/class.SurveyStaticHtml.php
+++ b/admin/survey/classes/class.SurveyStaticHtml.php
@@ -342,7 +342,7 @@ class SurveyStaticHtml
if( in_array($data_file_status, array(FILE_STATUS_SRV_DELETED, FILE_STATUS_NO_DATA))
&& in_array($podstran, array(
- 'para_analysis_graph', 'para_graph', 'usable_resp',
+ 'para_analysis_graph', 'para_graph', 'usable_resp', 'status_advanced',
'data', 'quick_edit', 'variables', 'export',
'sumarnik', 'descriptor', 'frequency', 'crosstabs', 'ttest', 'means', 'break', 'multicrosstabs', 'charts', 'analysis_links'
)) ){
diff --git a/admin/survey/classes/tracking/CrossRoad.php b/admin/survey/classes/tracking/CrossRoad.php
index 2b584acde..0cb75dd61 100644
--- a/admin/survey/classes/tracking/CrossRoad.php
+++ b/admin/survey/classes/tracking/CrossRoad.php
@@ -45,6 +45,7 @@ class CrossRoad {
case A_PARA_GRAPH:
case 'langStatistic':
case 'AAPOR':
+ case A_STATUS_ADVANCED:
$first_action = NAVI_STATUS;
$second_action = NAVI_STATUS_OSNOVNI;
$status = 4;
diff --git a/admin/survey/definition.php b/admin/survey/definition.php
index 3a9176331..38649d509 100644
--- a/admin/survey/definition.php
+++ b/admin/survey/definition.php
@@ -66,6 +66,7 @@
define("A_REMINDER_TRACKING", "reminder_tracking");
define("A_REMINDER_TRACKING_RECNUM", "recnum");
define("A_REMINDER_TRACKING_VAR", "vars");
+ define("A_STATUS_ADVANCED", "status_advanced");
#urejanje
define("A_BRANCHING", "branching");
diff --git a/lang/1.php b/lang/1.php
index e18cdc829..e05569444 100644
--- a/lang/1.php
+++ b/lang/1.php
@@ -6356,6 +6356,7 @@ $lang = array (
'srv_comments_on_alert2' => 'Dodatne nastavitve lahko uredite spodaj.',
'srv_off' => 'Izklopi',
'srv_para_neodgovori' => 'Neodgovor spremenljivke',
+ 'srv_status_advanced' => 'Napredni statusi',
'srv_usable_respondents' => 'Uporabni respondenti',
'srv_kakovost' => 'Kakovost respondentov',
'srv_speeder_index' => 'Indeks hitrosti',
diff --git a/lang/2.php b/lang/2.php
index baa1e6bd4..4a58b696d 100644
--- a/lang/2.php
+++ b/lang/2.php
@@ -6241,6 +6241,7 @@ $lang = array (
'srv_comments_on_alert2' => 'You can edit extra settings below.',
'srv_off' => 'Turn off',
'srv_para_neodgovori' => 'Item nonresponse',
+ 'srv_status_advanced' => 'Advanced statuses',
'srv_usable_respondents' => 'Usable respondents',
'srv_kakovost' => 'Respondents quality',
'srv_speeder_index' => 'Speeder index',
diff --git a/public/css/admin.css b/public/css/admin.css
index 464bf82c3..b4e6eeb24 100644
--- a/public/css/admin.css
+++ b/public/css/admin.css
@@ -1,13 +1,29627 @@
-html{height:100%;background-color:#fff}body{position:relative;height:100%;margin:0px;padding:0px;background-color:#fff;color:#333;font-size:12px}body p.ui-draggable-dragging{background-color:#fff;padding:5px;width:200px;border:1px solid gray;z-index:100}body div.folder_container.ui-draggable-dragging{background-color:#fff;padding:5px;border:1px solid gray;width:200px;height:16px;line-height:16px;overflow:hidden;z-index:100}body div.folder_container.ui-draggable-dragging div.folder_right{display:none}body span.new_spr.ui-draggable-dragging{background-color:#fff;padding:5px;border:1px solid gray;width:200px;height:16px;line-height:16px;overflow:hidden;z-index:100}h1{font-size:20px;color:#1e88e5}h2{font-size:16px;font-weight:600;color:#1e88e5}h3{font-size:12px;font-weight:normal}h4{font-weight:600;font-size:14px}a{cursor:pointer;display:inline;color:#1e88e5;text-decoration:none}a:hover{color:#ffa608;text-decoration:none}a img{border:none}img{border:none;vertical-align:text-bottom}fieldset{margin:10px 10px 25px 10px;padding:5px 15px 10px 15px;color:#333;border:1px solid #e6e6e6}fieldset a span{color:#1e88e5;text-decoration:none;cursor:pointer;display:inline}fieldset a:hover span{color:#ffa608;text-decoration:none}fieldset span{color:#333;font-weight:normal}fieldset select{margin-bottom:1px}fieldset input[type=text]{margin-bottom:1px}fieldset input[type=radio]{margin-bottom:1px}fieldset p input[type=text]{margin-bottom:0}fieldset p label{display:inline-block;margin-bottom:0}fieldset p input[type=radio]{margin-bottom:0}fieldset label{display:inline-block;margin-bottom:1px}form{padding:0px;margin:0px}label{cursor:pointer;vertical-align:middle}label input{vertical-align:top;vertical-align:middle;vertical-align:text-bottom}legend{margin:0;padding:0 10px;color:#1e88e5;font-weight:500;font-size:13px;background-color:#fff}legend.red{font-size:14px}table th{font-weight:500}input{vertical-align:middle;font-size:12px}select{cursor:pointer;vertical-align:middle;height:22px;font-size:12px !important;color:#333 !important;background:#fff;background-color:#fff;border:1px #c8e3f8 solid !important;border-radius:4px 0px 0px 4px;-moz-border-radius:4px 0px 0px 4px;-webkit-border-radius:4px 0px 0px 4px}textarea{vertical-align:middle;font-size:12px;color:#333 !important;width:40%;border:1px solid #c6c6c6 !important}textarea:not(disabled){background:#fff}textarea:disabled{background:#eee}button{vertical-align:middle;font-size:9px}input[type=text]{color:#333 !important;border:1px solid #c6c6c6 !important}input[type=text]:not(disabled){background:#fff}input[type=text]:disabled{background:#eee}input[type=number]{color:#333 !important;border:1px solid #c6c6c6 !important;background:#fff;padding:3px 0 3px 3px}iframe{border:0}#main_holder{display:flex;flex-direction:column;justify-content:space-between;height:100%}#main{padding:0;margin:0;border:0;flex-grow:1}#main #anketa{border:0;padding:0px 0px 0px 0px;margin:0px 0px 0px 0px}#main #anketa #anketa_edit{box-sizing:border-box;display:flex;flex-direction:row;width:100%;padding:30px 40px 40px 30px}#main #anketa #anketa_edit .anketa_edit_left{display:flex;flex-direction:column;margin-right:20px}#main #anketa #anketa_edit .anketa_edit_main{flex-grow:1;width:100%}#main #anketa div .folder_container{height:17px;padding:3px;margin:3px;overflow:hidden}#main #anketa div .folder_right{float:left;width:100px;text-align:left}#main #anketa span.opombe{color:gray;height:17px;width:auto;font-size:12px}#main #anketa span.opombe span{font-size:16px}#main #anketa ul{list-style:none;margin:0}#main #anketa ul.first{margin-top:10px}#main #anketa li .anketa{margin:0;padding-left:14px}#main #anketa ul.number_list{list-style-type:decimal}/*!
+@charset "UTF-8";
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+
+SASS poženemo
+sass --style=compressed admin.scss ../../../public/css/admin.css
+
+*/
+/*
+ Created on : 18-Jul-2018, 10:11:58
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Jul-2018, 12:04:21
+ Author : podkrizniku
+*/
+html {
+ height: 100%;
+ background-color: white;
+}
+
+body {
+ position: relative;
+ height: 100%;
+ margin: 0px;
+ padding: 0px;
+ background-color: white;
+ color: #333;
+ font-size: 12px;
+}
+body p.ui-draggable-dragging {
+ background-color: white;
+ padding: 5px;
+ width: 200px;
+ border: 1px solid gray;
+ z-index: 100;
+}
+body div.folder_container.ui-draggable-dragging {
+ background-color: white;
+ padding: 5px;
+ border: 1px solid gray;
+ width: 200px;
+ height: 16px;
+ line-height: 16px;
+ overflow: hidden;
+ z-index: 100;
+}
+body div.folder_container.ui-draggable-dragging div.folder_right {
+ display: none;
+}
+body span.new_spr.ui-draggable-dragging {
+ background-color: white;
+ padding: 5px;
+ border: 1px solid gray;
+ width: 200px;
+ height: 16px;
+ line-height: 16px;
+ overflow: hidden;
+ z-index: 100;
+}
+
+h1 {
+ font-size: 20px;
+ color: #1e88e5;
+}
+
+h2 {
+ font-size: 16px;
+ font-weight: 600;
+ color: #1e88e5;
+}
+
+h3 {
+ font-size: 12px;
+ font-weight: normal;
+}
+
+h4 {
+ font-weight: 600;
+ font-size: 14px;
+}
+
+a {
+ cursor: pointer;
+ display: inline;
+ color: #1e88e5;
+ text-decoration: none;
+}
+a:hover {
+ color: #ffa608;
+ text-decoration: none;
+}
+a img {
+ border: none;
+}
+
+img {
+ border: none;
+ vertical-align: text-bottom;
+}
+
+/*for bottom spacing between elements mainly in settings*/
+fieldset {
+ margin: 10px 10px 25px 10px;
+ padding: 5px 15px 10px 15px;
+ color: #333;
+ border: 1px solid #E6E6E6;
+}
+fieldset a span {
+ color: #1e88e5;
+ text-decoration: none;
+ cursor: pointer;
+ display: inline;
+}
+fieldset a:hover span {
+ color: #ffa608;
+ text-decoration: none;
+}
+fieldset span {
+ /*margin-bottom: 1px;*/
+ color: #333;
+ font-weight: normal;
+}
+fieldset select {
+ margin-bottom: 1px;
+}
+fieldset input[type=text] {
+ margin-bottom: 1px;
+}
+fieldset input[type=radio] {
+ margin-bottom: 1px;
+}
+fieldset p input[type=text] {
+ margin-bottom: 0;
+}
+fieldset p label {
+ display: inline-block;
+ margin-bottom: 0;
+}
+fieldset p input[type=radio] {
+ margin-bottom: 0;
+}
+fieldset label {
+ display: inline-block;
+ margin-bottom: 1px;
+}
+
+/* ker IE nardi razmake */
+form {
+ padding: 0px;
+ margin: 0px;
+}
+
+label {
+ cursor: pointer;
+ vertical-align: middle;
+}
+label input {
+ vertical-align: top;
+ vertical-align: middle;
+ vertical-align: text-bottom;
+}
+
+legend {
+ margin: 0;
+ padding: 0 10px;
+ color: #1e88e5;
+ font-weight: 500;
+ font-size: 13px;
+ background-color: white;
+}
+
+legend.red {
+ font-size: 14px;
+}
+
+table th {
+ font-weight: 500;
+}
+
+input {
+ vertical-align: middle;
+ font-size: 12px;
+}
+
+select {
+ cursor: pointer;
+ vertical-align: middle;
+ height: 22px;
+ font-size: 12px !important;
+ color: #333 !important;
+ background: white;
+ background-color: white;
+ border: 1px #c8e3f8 solid !important;
+ border-radius: 4px 0px 0px 4px;
+ -moz-border-radius: 4px 0px 0px 4px;
+ -webkit-border-radius: 4px 0px 0px 4px;
+}
+
+textarea {
+ vertical-align: middle;
+ font-size: 12px;
+ color: #333 !important;
+ width: 40%;
+ border: 1px solid #c6c6c6 !important;
+}
+textarea:not(disabled) {
+ background: #ffffff;
+}
+textarea:disabled {
+ background: #eeeeee;
+}
+
+button {
+ vertical-align: middle;
+ font-size: 9px;
+}
+
+input[type=text] {
+ color: #333 !important;
+ border: 1px solid #c6c6c6 !important;
+}
+input[type=text]:not(disabled) {
+ background: #ffffff;
+}
+input[type=text]:disabled {
+ background: #eeeeee;
+}
+
+input[type=number] {
+ color: #333 !important;
+ border: 1px solid #c6c6c6 !important;
+ background: #ffffff;
+ padding: 3px 0 3px 3px;
+}
+
+iframe {
+ border: 0;
+}
+
+/*main div element (parent of #anketa and #anketa_active)*/
+#main_holder {
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ height: 100%;
+}
+
+#main {
+ padding: 0;
+ margin: 0;
+ border: 0;
+ flex-grow: 1;
+}
+#main #anketa {
+ border: 0;
+ padding: 0px 0px 0px 0px;
+ margin: 0px 0px 0px 0px;
+}
+#main #anketa #anketa_edit {
+ box-sizing: border-box;
+ display: flex;
+ flex-direction: row;
+ width: 100%;
+ padding: 30px 40px 40px 30px;
+}
+#main #anketa #anketa_edit .anketa_edit_left {
+ display: flex;
+ flex-direction: column;
+ margin-right: 20px;
+}
+#main #anketa #anketa_edit .anketa_edit_main {
+ flex-grow: 1;
+ width: 100%;
+}
+#main #anketa div .folder_container {
+ height: 17px;
+ padding: 3px;
+ margin: 3px;
+ overflow: hidden;
+}
+#main #anketa div .folder_right {
+ float: left;
+ width: 100px;
+ text-align: left;
+}
+#main #anketa span.opombe {
+ color: grey;
+ height: 17px;
+ width: auto;
+ font-size: 12px;
+}
+#main #anketa span.opombe span {
+ font-size: 16px;
+}
+#main #anketa ul {
+ list-style: none;
+ margin: 0;
+}
+#main #anketa ul.first {
+ margin-top: 10px;
+}
+#main #anketa li .anketa {
+ margin: 0;
+ padding-left: 14px;
+}
+#main #anketa ul.number_list {
+ list-style-type: decimal;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Jul-2018, 12:51:06
+ Author : podkrizniku
+*/
+/* FontAwesome 5 */
+/*!
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */.fa,.fas,.far,.fal,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-0.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1, -1)}.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(-1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-ad:before{content:""}.fa-address-book:before{content:""}.fa-address-card:before{content:""}.fa-adjust:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-air-freshener:before{content:""}.fa-algolia:before{content:""}.fa-align-center:before{content:""}.fa-align-justify:before{content:""}.fa-align-left:before{content:""}.fa-align-right:before{content:""}.fa-alipay:before{content:""}.fa-allergies:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-ambulance:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-amilia:before{content:""}.fa-anchor:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angry:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-ankh:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-alt:before{content:""}.fa-apple-pay:before{content:""}.fa-archive:before{content:""}.fa-archway:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-down:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrows-alt:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asterisk:before{content:""}.fa-asymmetrik:before{content:""}.fa-at:before{content:""}.fa-atlas:before{content:""}.fa-atom:before{content:""}.fa-audible:before{content:""}.fa-audio-description:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-award:before{content:""}.fa-aws:before{content:""}.fa-backspace:before{content:""}.fa-backward:before{content:""}.fa-balance-scale:before{content:""}.fa-ban:before{content:""}.fa-band-aid:before{content:""}.fa-bandcamp:before{content:""}.fa-barcode:before{content:""}.fa-bars:before{content:""}.fa-baseball-ball:before{content:""}.fa-basketball-ball:before{content:""}.fa-bath:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-full:before{content:""}.fa-battery-half:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-bed:before{content:""}.fa-beer:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bell:before{content:""}.fa-bell-slash:before{content:""}.fa-bezier-curve:before{content:""}.fa-bible:before{content:""}.fa-bicycle:before{content:""}.fa-bimobject:before{content:""}.fa-binoculars:before{content:""}.fa-birthday-cake:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blender:before{content:""}.fa-blind:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bold:before{content:""}.fa-bolt:before{content:""}.fa-bomb:before{content:""}.fa-bone:before{content:""}.fa-bong:before{content:""}.fa-book:before{content:""}.fa-book-open:before{content:""}.fa-book-reader:before{content:""}.fa-bookmark:before{content:""}.fa-bowling-ball:before{content:""}.fa-box:before{content:""}.fa-box-open:before{content:""}.fa-boxes:before{content:""}.fa-braille:before{content:""}.fa-brain:before{content:""}.fa-briefcase:before{content:""}.fa-briefcase-medical:before{content:""}.fa-broadcast-tower:before{content:""}.fa-broom:before{content:""}.fa-brush:before{content:""}.fa-btc:before{content:""}.fa-bug:before{content:""}.fa-building:before{content:""}.fa-bullhorn:before{content:""}.fa-bullseye:before{content:""}.fa-burn:before{content:""}.fa-buromobelexperte:before{content:""}.fa-bus:before{content:""}.fa-bus-alt:before{content:""}.fa-business-time:before{content:""}.fa-buysellads:before{content:""}.fa-calculator:before{content:""}.fa-calendar:before{content:""}.fa-calendar-alt:before{content:""}.fa-calendar-check:before{content:""}.fa-calendar-minus:before{content:""}.fa-calendar-plus:before{content:""}.fa-calendar-times:before{content:""}.fa-camera:before{content:""}.fa-camera-retro:before{content:""}.fa-cannabis:before{content:""}.fa-capsules:before{content:""}.fa-car:before{content:""}.fa-car-alt:before{content:""}.fa-car-battery:before{content:""}.fa-car-crash:before{content:""}.fa-car-side:before{content:""}.fa-caret-down:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-caret-square-down:before{content:""}.fa-caret-square-left:before{content:""}.fa-caret-square-right:before{content:""}.fa-caret-square-up:before{content:""}.fa-caret-up:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-cart-plus:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-certificate:before{content:""}.fa-chalkboard:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-charging-station:before{content:""}.fa-chart-area:before{content:""}.fa-chart-bar:before{content:""}.fa-chart-line:before{content:""}.fa-chart-pie:before{content:""}.fa-check:before{content:""}.fa-check-circle:before{content:""}.fa-check-double:before{content:""}.fa-check-square:before{content:""}.fa-chess:before{content:""}.fa-chess-bishop:before{content:""}.fa-chess-board:before{content:""}.fa-chess-king:before{content:""}.fa-chess-knight:before{content:""}.fa-chess-pawn:before{content:""}.fa-chess-queen:before{content:""}.fa-chess-rook:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-down:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-chevron-up:before{content:""}.fa-child:before{content:""}.fa-chrome:before{content:""}.fa-church:before{content:""}.fa-circle:before{content:""}.fa-circle-notch:before{content:""}.fa-city:before{content:""}.fa-clipboard:before{content:""}.fa-clipboard-check:before{content:""}.fa-clipboard-list:before{content:""}.fa-clock:before{content:""}.fa-clone:before{content:""}.fa-closed-captioning:before{content:""}.fa-cloud:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cocktail:before{content:""}.fa-code:before{content:""}.fa-code-branch:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-coffee:before{content:""}.fa-cog:before{content:""}.fa-cogs:before{content:""}.fa-coins:before{content:""}.fa-columns:before{content:""}.fa-comment:before{content:""}.fa-comment-alt:before{content:""}.fa-comment-dollar:before{content:""}.fa-comment-dots:before{content:""}.fa-comment-slash:before{content:""}.fa-comments:before{content:""}.fa-comments-dollar:before{content:""}.fa-compact-disc:before{content:""}.fa-compass:before{content:""}.fa-compress:before{content:""}.fa-concierge-bell:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cookie:before{content:""}.fa-cookie-bite:before{content:""}.fa-copy:before{content:""}.fa-copyright:before{content:""}.fa-couch:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-credit-card:before{content:""}.fa-crop:before{content:""}.fa-crop-alt:before{content:""}.fa-cross:before{content:""}.fa-crosshairs:before{content:""}.fa-crow:before{content:""}.fa-crown:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-cut:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-dashcube:before{content:""}.fa-database:before{content:""}.fa-deaf:before{content:""}.fa-delicious:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-desktop:before{content:""}.fa-deviantart:before{content:""}.fa-dharmachakra:before{content:""}.fa-diagnoses:before{content:""}.fa-dice:before{content:""}.fa-dice-five:before{content:""}.fa-dice-four:before{content:""}.fa-dice-one:before{content:""}.fa-dice-six:before{content:""}.fa-dice-three:before{content:""}.fa-dice-two:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-digital-tachograph:before{content:""}.fa-directions:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-divide:before{content:""}.fa-dizzy:before{content:""}.fa-dna:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-dollar-sign:before{content:""}.fa-dolly:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-donate:before{content:""}.fa-door-closed:before{content:""}.fa-door-open:before{content:""}.fa-dot-circle:before{content:""}.fa-dove:before{content:""}.fa-download:before{content:""}.fa-draft2digital:before{content:""}.fa-drafting-compass:before{content:""}.fa-draw-polygon:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drum:before{content:""}.fa-drum-steelpan:before{content:""}.fa-drupal:before{content:""}.fa-dumbbell:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edit:before{content:""}.fa-eject:before{content:""}.fa-elementor:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envelope:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-text:before{content:""}.fa-envelope-square:before{content:""}.fa-envira:before{content:""}.fa-equals:before{content:""}.fa-eraser:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-etsy:before{content:""}.fa-euro-sign:before{content:""}.fa-exchange-alt:before{content:""}.fa-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-expand:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-expeditedssl:before{content:""}.fa-external-link-alt:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-eye:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-slash:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fast-backward:before{content:""}.fa-fast-forward:before{content:""}.fa-fax:before{content:""}.fa-feather:before{content:""}.fa-feather-alt:before{content:""}.fa-female:before{content:""}.fa-fighter-jet:before{content:""}.fa-file:before{content:""}.fa-file-alt:before{content:""}.fa-file-archive:before{content:""}.fa-file-audio:before{content:""}.fa-file-code:before{content:""}.fa-file-contract:before{content:""}.fa-file-download:before{content:""}.fa-file-excel:before{content:""}.fa-file-export:before{content:""}.fa-file-image:before{content:""}.fa-file-import:before{content:""}.fa-file-invoice:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-file-medical:before{content:""}.fa-file-medical-alt:before{content:""}.fa-file-pdf:before{content:""}.fa-file-powerpoint:before{content:""}.fa-file-prescription:before{content:""}.fa-file-signature:before{content:""}.fa-file-upload:before{content:""}.fa-file-video:before{content:""}.fa-file-word:before{content:""}.fa-fill:before{content:""}.fa-fill-drip:before{content:""}.fa-film:before{content:""}.fa-filter:before{content:""}.fa-fingerprint:before{content:""}.fa-fire:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-firefox:before{content:""}.fa-first-aid:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-fish:before{content:""}.fa-flag:before{content:""}.fa-flag-checkered:before{content:""}.fa-flask:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-flushed:before{content:""}.fa-fly:before{content:""}.fa-folder:before{content:""}.fa-folder-minus:before{content:""}.fa-folder-open:before{content:""}.fa-folder-plus:before{content:""}.fa-font:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-football-ball:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-forward:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-frog:before{content:""}.fa-frown:before{content:""}.fa-frown-open:before{content:""}.fa-fulcrum:before{content:""}.fa-funnel-dollar:before{content:""}.fa-futbol:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-gamepad:before{content:""}.fa-gas-pump:before{content:""}.fa-gavel:before{content:""}.fa-gem:before{content:""}.fa-genderless:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-gift:before{content:""}.fa-git:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glass-martini:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-glasses:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-globe:before{content:""}.fa-globe-africa:before{content:""}.fa-globe-americas:before{content:""}.fa-globe-asia:before{content:""}.fa-gofore:before{content:""}.fa-golf-ball:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gopuram:before{content:""}.fa-graduation-cap:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-greater-than:before{content:""}.fa-greater-than-equal:before{content:""}.fa-grimace:before{content:""}.fa-grin:before{content:""}.fa-grin-alt:before{content:""}.fa-grin-beam:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-grin-hearts:before{content:""}.fa-grin-squint:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-grin-stars:before{content:""}.fa-grin-tears:before{content:""}.fa-grin-tongue:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-grip-horizontal:before{content:""}.fa-grip-vertical:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-gulp:before{content:""}.fa-h-square:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hamsa:before{content:""}.fa-hand-holding:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-hand-lizard:before{content:""}.fa-hand-paper:before{content:""}.fa-hand-peace:before{content:""}.fa-hand-point-down:before{content:""}.fa-hand-point-left:before{content:""}.fa-hand-point-right:before{content:""}.fa-hand-point-up:before{content:""}.fa-hand-pointer:before{content:""}.fa-hand-rock:before{content:""}.fa-hand-scissors:before{content:""}.fa-hand-spock:before{content:""}.fa-hands:before{content:""}.fa-hands-helping:before{content:""}.fa-handshake:before{content:""}.fa-hashtag:before{content:""}.fa-haykal:before{content:""}.fa-hdd:before{content:""}.fa-heading:before{content:""}.fa-headphones:before{content:""}.fa-headphones-alt:before{content:""}.fa-headset:before{content:""}.fa-heart:before{content:""}.fa-heartbeat:before{content:""}.fa-helicopter:before{content:""}.fa-highlighter:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-history:before{content:""}.fa-hockey-puck:before{content:""}.fa-home:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-symbol:before{content:""}.fa-hot-tub:before{content:""}.fa-hotel:before{content:""}.fa-hotjar:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-start:before{content:""}.fa-houzz:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-i-cursor:before{content:""}.fa-id-badge:before{content:""}.fa-id-card:before{content:""}.fa-id-card-alt:before{content:""}.fa-image:before{content:""}.fa-images:before{content:""}.fa-imdb:before{content:""}.fa-inbox:before{content:""}.fa-indent:before{content:""}.fa-industry:before{content:""}.fa-infinity:before{content:""}.fa-info:before{content:""}.fa-info-circle:before{content:""}.fa-instagram:before{content:""}.fa-internet-explorer:before{content:""}.fa-ioxhost:before{content:""}.fa-italic:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-joget:before{content:""}.fa-joint:before{content:""}.fa-joomla:before{content:""}.fa-journal-whills:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaaba:before{content:""}.fa-kaggle:before{content:""}.fa-key:before{content:""}.fa-keybase:before{content:""}.fa-keyboard:before{content:""}.fa-keycdn:before{content:""}.fa-khanda:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-kiss:before{content:""}.fa-kiss-beam:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-kiwi-bird:before{content:""}.fa-korvue:before{content:""}.fa-landmark:before{content:""}.fa-language:before{content:""}.fa-laptop:before{content:""}.fa-laptop-code:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-laugh:before{content:""}.fa-laugh-beam:before{content:""}.fa-laugh-squint:before{content:""}.fa-laugh-wink:before{content:""}.fa-layer-group:before{content:""}.fa-leaf:before{content:""}.fa-leanpub:before{content:""}.fa-lemon:before{content:""}.fa-less:before{content:""}.fa-less-than:before{content:""}.fa-less-than-equal:before{content:""}.fa-level-down-alt:before{content:""}.fa-level-up-alt:before{content:""}.fa-life-ring:before{content:""}.fa-lightbulb:before{content:""}.fa-line:before{content:""}.fa-link:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lira-sign:before{content:""}.fa-list:before{content:""}.fa-list-alt:before{content:""}.fa-list-ol:before{content:""}.fa-list-ul:before{content:""}.fa-location-arrow:before{content:""}.fa-lock:before{content:""}.fa-lock-open:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-low-vision:before{content:""}.fa-luggage-cart:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-magic:before{content:""}.fa-magnet:before{content:""}.fa-mail-bulk:before{content:""}.fa-mailchimp:before{content:""}.fa-male:before{content:""}.fa-mandalorian:before{content:""}.fa-map:before{content:""}.fa-map-marked:before{content:""}.fa-map-marked-alt:before{content:""}.fa-map-marker:before{content:""}.fa-map-marker-alt:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-markdown:before{content:""}.fa-marker:before{content:""}.fa-mars:before{content:""}.fa-mars-double:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-medal:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medkit:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-meh:before{content:""}.fa-meh-blank:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-memory:before{content:""}.fa-menorah:before{content:""}.fa-mercury:before{content:""}.fa-microchip:before{content:""}.fa-microphone:before{content:""}.fa-microphone-alt:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-microphone-slash:before{content:""}.fa-microscope:before{content:""}.fa-microsoft:before{content:""}.fa-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-minus-square:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mizuni:before{content:""}.fa-mobile:before{content:""}.fa-mobile-alt:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-money-bill:before{content:""}.fa-money-bill-alt:before{content:""}.fa-money-bill-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-money-check:before{content:""}.fa-money-check-alt:before{content:""}.fa-monument:before{content:""}.fa-moon:before{content:""}.fa-mortar-pestle:before{content:""}.fa-mosque:before{content:""}.fa-motorcycle:before{content:""}.fa-mouse-pointer:before{content:""}.fa-music:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-neuter:before{content:""}.fa-newspaper:before{content:""}.fa-nimblr:before{content:""}.fa-nintendo-switch:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-not-equal:before{content:""}.fa-notes-medical:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-oil-can:before{content:""}.fa-old-republic:before{content:""}.fa-om:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-osi:before{content:""}.fa-outdent:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-paint-brush:before{content:""}.fa-paint-roller:before{content:""}.fa-palette:before{content:""}.fa-palfed:before{content:""}.fa-pallet:before{content:""}.fa-paper-plane:before{content:""}.fa-paperclip:before{content:""}.fa-parachute-box:before{content:""}.fa-paragraph:before{content:""}.fa-parking:before{content:""}.fa-passport:before{content:""}.fa-pastafarianism:before{content:""}.fa-paste:before{content:""}.fa-patreon:before{content:""}.fa-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-paw:before{content:""}.fa-paypal:before{content:""}.fa-peace:before{content:""}.fa-pen:before{content:""}.fa-pen-alt:before{content:""}.fa-pen-fancy:before{content:""}.fa-pen-nib:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-alt:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-carry:before{content:""}.fa-percent:before{content:""}.fa-percentage:before{content:""}.fa-periscope:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-phone:before{content:""}.fa-phone-slash:before{content:""}.fa-phone-square:before{content:""}.fa-phone-volume:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-piggy-bank:before{content:""}.fa-pills:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-place-of-worship:before{content:""}.fa-plane:before{content:""}.fa-plane-arrival:before{content:""}.fa-plane-departure:before{content:""}.fa-play:before{content:""}.fa-play-circle:before{content:""}.fa-playstation:before{content:""}.fa-plug:before{content:""}.fa-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-plus-square:before{content:""}.fa-podcast:before{content:""}.fa-poll:before{content:""}.fa-poll-h:before{content:""}.fa-poo:before{content:""}.fa-poop:before{content:""}.fa-portrait:before{content:""}.fa-pound-sign:before{content:""}.fa-power-off:before{content:""}.fa-pray:before{content:""}.fa-praying-hands:before{content:""}.fa-prescription:before{content:""}.fa-prescription-bottle:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-print:before{content:""}.fa-procedures:before{content:""}.fa-product-hunt:before{content:""}.fa-project-diagram:before{content:""}.fa-pushed:before{content:""}.fa-puzzle-piece:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-qrcode:before{content:""}.fa-question:before{content:""}.fa-question-circle:before{content:""}.fa-quidditch:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-quran:before{content:""}.fa-r-project:before{content:""}.fa-random:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-receipt:before{content:""}.fa-recycle:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redo:before{content:""}.fa-redo-alt:before{content:""}.fa-registered:before{content:""}.fa-rendact:before{content:""}.fa-renren:before{content:""}.fa-reply:before{content:""}.fa-reply-all:before{content:""}.fa-replyd:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-retweet:before{content:""}.fa-rev:before{content:""}.fa-ribbon:before{content:""}.fa-road:before{content:""}.fa-robot:before{content:""}.fa-rocket:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-route:before{content:""}.fa-rss:before{content:""}.fa-rss-square:before{content:""}.fa-ruble-sign:before{content:""}.fa-ruler:before{content:""}.fa-ruler-combined:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-ruler-vertical:before{content:""}.fa-rupee-sign:before{content:""}.fa-sad-cry:before{content:""}.fa-sad-tear:before{content:""}.fa-safari:before{content:""}.fa-sass:before{content:""}.fa-save:before{content:""}.fa-schlix:before{content:""}.fa-school:before{content:""}.fa-screwdriver:before{content:""}.fa-scribd:before{content:""}.fa-search:before{content:""}.fa-search-dollar:before{content:""}.fa-search-location:before{content:""}.fa-search-minus:before{content:""}.fa-search-plus:before{content:""}.fa-searchengin:before{content:""}.fa-seedling:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-server:before{content:""}.fa-servicestack:before{content:""}.fa-shapes:before{content:""}.fa-share:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-share-square:before{content:""}.fa-shekel-sign:before{content:""}.fa-shield-alt:before{content:""}.fa-ship:before{content:""}.fa-shipping-fast:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shoe-prints:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-shopping-cart:before{content:""}.fa-shopware:before{content:""}.fa-shower:before{content:""}.fa-shuttle-van:before{content:""}.fa-sign:before{content:""}.fa-sign-in-alt:before{content:""}.fa-sign-language:before{content:""}.fa-sign-out-alt:before{content:""}.fa-signal:before{content:""}.fa-signature:before{content:""}.fa-simplybuilt:before{content:""}.fa-sistrix:before{content:""}.fa-sitemap:before{content:""}.fa-sith:before{content:""}.fa-skull:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-sliders-h:before{content:""}.fa-slideshare:before{content:""}.fa-smile:before{content:""}.fa-smile-beam:before{content:""}.fa-smile-wink:before{content:""}.fa-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-snowflake:before{content:""}.fa-socks:before{content:""}.fa-solar-panel:before{content:""}.fa-sort:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-sort-amount-down:before{content:""}.fa-sort-amount-up:before{content:""}.fa-sort-down:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-sort-up:before{content:""}.fa-soundcloud:before{content:""}.fa-spa:before{content:""}.fa-space-shuttle:before{content:""}.fa-speakap:before{content:""}.fa-spinner:before{content:""}.fa-splotch:before{content:""}.fa-spotify:before{content:""}.fa-spray-can:before{content:""}.fa-square:before{content:""}.fa-square-full:before{content:""}.fa-square-root-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stamp:before{content:""}.fa-star:before{content:""}.fa-star-and-crescent:before{content:""}.fa-star-half:before{content:""}.fa-star-half-alt:before{content:""}.fa-star-of-david:before{content:""}.fa-star-of-life:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-step-backward:before{content:""}.fa-step-forward:before{content:""}.fa-stethoscope:before{content:""}.fa-sticker-mule:before{content:""}.fa-sticky-note:before{content:""}.fa-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-stopwatch:before{content:""}.fa-store:before{content:""}.fa-store-alt:before{content:""}.fa-strava:before{content:""}.fa-stream:before{content:""}.fa-street-view:before{content:""}.fa-strikethrough:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-stroopwafel:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-subscript:before{content:""}.fa-subway:before{content:""}.fa-suitcase:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-sun:before{content:""}.fa-superpowers:before{content:""}.fa-superscript:before{content:""}.fa-supple:before{content:""}.fa-surprise:before{content:""}.fa-swatchbook:before{content:""}.fa-swimmer:before{content:""}.fa-swimming-pool:before{content:""}.fa-synagogue:before{content:""}.fa-sync:before{content:""}.fa-sync-alt:before{content:""}.fa-syringe:before{content:""}.fa-table:before{content:""}.fa-table-tennis:before{content:""}.fa-tablet:before{content:""}.fa-tablet-alt:before{content:""}.fa-tablets:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-tape:before{content:""}.fa-tasks:before{content:""}.fa-taxi:before{content:""}.fa-teamspeak:before{content:""}.fa-teeth:before{content:""}.fa-teeth-open:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-tencent-weibo:before{content:""}.fa-terminal:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-th:before{content:""}.fa-th-large:before{content:""}.fa-th-list:before{content:""}.fa-the-red-yeti:before{content:""}.fa-theater-masks:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-thermometer:before{content:""}.fa-thermometer-empty:before{content:""}.fa-thermometer-full:before{content:""}.fa-thermometer-half:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-thumbs-down:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbtack:before{content:""}.fa-ticket-alt:before{content:""}.fa-times:before{content:""}.fa-times-circle:before{content:""}.fa-tint:before{content:""}.fa-tint-slash:before{content:""}.fa-tired:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-toolbox:before{content:""}.fa-tooth:before{content:""}.fa-torah:before{content:""}.fa-torii-gate:before{content:""}.fa-trade-federation:before{content:""}.fa-trademark:before{content:""}.fa-traffic-light:before{content:""}.fa-train:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-trash:before{content:""}.fa-trash-alt:before{content:""}.fa-tree:before{content:""}.fa-trello:before{content:""}.fa-tripadvisor:before{content:""}.fa-trophy:before{content:""}.fa-truck:before{content:""}.fa-truck-loading:before{content:""}.fa-truck-monster:before{content:""}.fa-truck-moving:before{content:""}.fa-truck-pickup:before{content:""}.fa-tshirt:before{content:""}.fa-tty:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-tv:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-uikit:before{content:""}.fa-umbrella:before{content:""}.fa-umbrella-beach:before{content:""}.fa-underline:before{content:""}.fa-undo:before{content:""}.fa-undo-alt:before{content:""}.fa-uniregistry:before{content:""}.fa-universal-access:before{content:""}.fa-university:before{content:""}.fa-unlink:before{content:""}.fa-unlock:before{content:""}.fa-unlock-alt:before{content:""}.fa-untappd:before{content:""}.fa-upload:before{content:""}.fa-usb:before{content:""}.fa-user:before{content:""}.fa-user-alt:before{content:""}.fa-user-alt-slash:before{content:""}.fa-user-astronaut:before{content:""}.fa-user-check:before{content:""}.fa-user-circle:before{content:""}.fa-user-clock:before{content:""}.fa-user-cog:before{content:""}.fa-user-edit:before{content:""}.fa-user-friends:before{content:""}.fa-user-graduate:before{content:""}.fa-user-lock:before{content:""}.fa-user-md:before{content:""}.fa-user-minus:before{content:""}.fa-user-ninja:before{content:""}.fa-user-plus:before{content:""}.fa-user-secret:before{content:""}.fa-user-shield:before{content:""}.fa-user-slash:before{content:""}.fa-user-tag:before{content:""}.fa-user-tie:before{content:""}.fa-user-times:before{content:""}.fa-users:before{content:""}.fa-users-cog:before{content:""}.fa-ussunnah:before{content:""}.fa-utensil-spoon:before{content:""}.fa-utensils:before{content:""}.fa-vaadin:before{content:""}.fa-vector-square:before{content:""}.fa-venus:before{content:""}.fa-venus-double:before{content:""}.fa-venus-mars:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-vial:before{content:""}.fa-vials:before{content:""}.fa-viber:before{content:""}.fa-video:before{content:""}.fa-video-slash:before{content:""}.fa-vihara:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-volleyball-ball:before{content:""}.fa-volume-down:before{content:""}.fa-volume-off:before{content:""}.fa-volume-up:before{content:""}.fa-vuejs:before{content:""}.fa-walking:before{content:""}.fa-wallet:before{content:""}.fa-warehouse:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weight:before{content:""}.fa-weight-hanging:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-wheelchair:before{content:""}.fa-whmcs:before{content:""}.fa-wifi:before{content:""}.fa-wikipedia-w:before{content:""}.fa-window-close:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-windows:before{content:""}.fa-wine-glass:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-wix:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-won-sign:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wrench:before{content:""}.fa-x-ray:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yelp:before{content:""}.fa-yen-sign:before{content:""}.fa-yin-yang:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}.sr-only{border:0;clip:rect(0, 0, 0, 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}/*!
+ */
+.fa,
+.fas,
+.far,
+.fal,
+.fab {
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ display: inline-block;
+ font-style: normal;
+ font-variant: normal;
+ text-rendering: auto;
+ line-height: 1;
+}
+
+.fa-lg {
+ font-size: 1.3333333333em;
+ line-height: 0.75em;
+ vertical-align: -0.0667em;
+}
+
+.fa-xs {
+ font-size: 0.75em;
+}
+
+.fa-sm {
+ font-size: 0.875em;
+}
+
+.fa-1x {
+ font-size: 1em;
+}
+
+.fa-2x {
+ font-size: 2em;
+}
+
+.fa-3x {
+ font-size: 3em;
+}
+
+.fa-4x {
+ font-size: 4em;
+}
+
+.fa-5x {
+ font-size: 5em;
+}
+
+.fa-6x {
+ font-size: 6em;
+}
+
+.fa-7x {
+ font-size: 7em;
+}
+
+.fa-8x {
+ font-size: 8em;
+}
+
+.fa-9x {
+ font-size: 9em;
+}
+
+.fa-10x {
+ font-size: 10em;
+}
+
+.fa-fw {
+ text-align: center;
+ width: 1.25em;
+}
+
+.fa-ul {
+ list-style-type: none;
+ margin-left: 2.5em;
+ padding-left: 0;
+}
+.fa-ul > li {
+ position: relative;
+}
+
+.fa-li {
+ left: -2em;
+ position: absolute;
+ text-align: center;
+ width: 2em;
+ line-height: inherit;
+}
+
+.fa-border {
+ border: solid 0.08em #eee;
+ border-radius: 0.1em;
+ padding: 0.2em 0.25em 0.15em;
+}
+
+.fa-pull-left {
+ float: left;
+}
+
+.fa-pull-right {
+ float: right;
+}
+
+.fa.fa-pull-left,
+.fas.fa-pull-left,
+.far.fa-pull-left,
+.fal.fa-pull-left,
+.fab.fa-pull-left {
+ margin-right: 0.3em;
+}
+.fa.fa-pull-right,
+.fas.fa-pull-right,
+.far.fa-pull-right,
+.fal.fa-pull-right,
+.fab.fa-pull-right {
+ margin-left: 0.3em;
+}
+
+.fa-spin {
+ animation: fa-spin 2s infinite linear;
+}
+
+.fa-pulse {
+ animation: fa-spin 1s infinite steps(8);
+}
+
+@keyframes fa-spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+.fa-rotate-90 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+ transform: rotate(90deg);
+}
+
+.fa-rotate-180 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+ transform: rotate(180deg);
+}
+
+.fa-rotate-270 {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+ transform: rotate(270deg);
+}
+
+.fa-flip-horizontal {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+ transform: scale(-1, 1);
+}
+
+.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ transform: scale(1, -1);
+}
+
+.fa-flip-horizontal.fa-flip-vertical {
+ -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+ transform: scale(-1, -1);
+}
+
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+ filter: none;
+}
+
+.fa-stack {
+ display: inline-block;
+ height: 2em;
+ line-height: 2em;
+ position: relative;
+ vertical-align: middle;
+ width: 2em;
+}
+
+.fa-stack-1x,
+.fa-stack-2x {
+ left: 0;
+ position: absolute;
+ text-align: center;
+ width: 100%;
+}
+
+.fa-stack-1x {
+ line-height: inherit;
+}
+
+.fa-stack-2x {
+ font-size: 2em;
+}
+
+.fa-inverse {
+ color: #fff;
+}
+
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+readers do not read off random characters that represent icons */
+.fa-500px:before {
+ content: "";
+}
+
+.fa-accessible-icon:before {
+ content: "";
+}
+
+.fa-accusoft:before {
+ content: "";
+}
+
+.fa-ad:before {
+ content: "";
+}
+
+.fa-address-book:before {
+ content: "";
+}
+
+.fa-address-card:before {
+ content: "";
+}
+
+.fa-adjust:before {
+ content: "";
+}
+
+.fa-adn:before {
+ content: "";
+}
+
+.fa-adversal:before {
+ content: "";
+}
+
+.fa-affiliatetheme:before {
+ content: "";
+}
+
+.fa-air-freshener:before {
+ content: "";
+}
+
+.fa-algolia:before {
+ content: "";
+}
+
+.fa-align-center:before {
+ content: "";
+}
+
+.fa-align-justify:before {
+ content: "";
+}
+
+.fa-align-left:before {
+ content: "";
+}
+
+.fa-align-right:before {
+ content: "";
+}
+
+.fa-alipay:before {
+ content: "";
+}
+
+.fa-allergies:before {
+ content: "";
+}
+
+.fa-amazon:before {
+ content: "";
+}
+
+.fa-amazon-pay:before {
+ content: "";
+}
+
+.fa-ambulance:before {
+ content: "";
+}
+
+.fa-american-sign-language-interpreting:before {
+ content: "";
+}
+
+.fa-amilia:before {
+ content: "";
+}
+
+.fa-anchor:before {
+ content: "";
+}
+
+.fa-android:before {
+ content: "";
+}
+
+.fa-angellist:before {
+ content: "";
+}
+
+.fa-angle-double-down:before {
+ content: "";
+}
+
+.fa-angle-double-left:before {
+ content: "";
+}
+
+.fa-angle-double-right:before {
+ content: "";
+}
+
+.fa-angle-double-up:before {
+ content: "";
+}
+
+.fa-angle-down:before {
+ content: "";
+}
+
+.fa-angle-left:before {
+ content: "";
+}
+
+.fa-angle-right:before {
+ content: "";
+}
+
+.fa-angle-up:before {
+ content: "";
+}
+
+.fa-angry:before {
+ content: "";
+}
+
+.fa-angrycreative:before {
+ content: "";
+}
+
+.fa-angular:before {
+ content: "";
+}
+
+.fa-ankh:before {
+ content: "";
+}
+
+.fa-app-store:before {
+ content: "";
+}
+
+.fa-app-store-ios:before {
+ content: "";
+}
+
+.fa-apper:before {
+ content: "";
+}
+
+.fa-apple:before {
+ content: "";
+}
+
+.fa-apple-alt:before {
+ content: "";
+}
+
+.fa-apple-pay:before {
+ content: "";
+}
+
+.fa-archive:before {
+ content: "";
+}
+
+.fa-archway:before {
+ content: "";
+}
+
+.fa-arrow-alt-circle-down:before {
+ content: "";
+}
+
+.fa-arrow-alt-circle-left:before {
+ content: "";
+}
+
+.fa-arrow-alt-circle-right:before {
+ content: "";
+}
+
+.fa-arrow-alt-circle-up:before {
+ content: "";
+}
+
+.fa-arrow-circle-down:before {
+ content: "";
+}
+
+.fa-arrow-circle-left:before {
+ content: "";
+}
+
+.fa-arrow-circle-right:before {
+ content: "";
+}
+
+.fa-arrow-circle-up:before {
+ content: "";
+}
+
+.fa-arrow-down:before {
+ content: "";
+}
+
+.fa-arrow-left:before {
+ content: "";
+}
+
+.fa-arrow-right:before {
+ content: "";
+}
+
+.fa-arrow-up:before {
+ content: "";
+}
+
+.fa-arrows-alt:before {
+ content: "";
+}
+
+.fa-arrows-alt-h:before {
+ content: "";
+}
+
+.fa-arrows-alt-v:before {
+ content: "";
+}
+
+.fa-assistive-listening-systems:before {
+ content: "";
+}
+
+.fa-asterisk:before {
+ content: "";
+}
+
+.fa-asymmetrik:before {
+ content: "";
+}
+
+.fa-at:before {
+ content: "";
+}
+
+.fa-atlas:before {
+ content: "";
+}
+
+.fa-atom:before {
+ content: "";
+}
+
+.fa-audible:before {
+ content: "";
+}
+
+.fa-audio-description:before {
+ content: "";
+}
+
+.fa-autoprefixer:before {
+ content: "";
+}
+
+.fa-avianex:before {
+ content: "";
+}
+
+.fa-aviato:before {
+ content: "";
+}
+
+.fa-award:before {
+ content: "";
+}
+
+.fa-aws:before {
+ content: "";
+}
+
+.fa-backspace:before {
+ content: "";
+}
+
+.fa-backward:before {
+ content: "";
+}
+
+.fa-balance-scale:before {
+ content: "";
+}
+
+.fa-ban:before {
+ content: "";
+}
+
+.fa-band-aid:before {
+ content: "";
+}
+
+.fa-bandcamp:before {
+ content: "";
+}
+
+.fa-barcode:before {
+ content: "";
+}
+
+.fa-bars:before {
+ content: "";
+}
+
+.fa-baseball-ball:before {
+ content: "";
+}
+
+.fa-basketball-ball:before {
+ content: "";
+}
+
+.fa-bath:before {
+ content: "";
+}
+
+.fa-battery-empty:before {
+ content: "";
+}
+
+.fa-battery-full:before {
+ content: "";
+}
+
+.fa-battery-half:before {
+ content: "";
+}
+
+.fa-battery-quarter:before {
+ content: "";
+}
+
+.fa-battery-three-quarters:before {
+ content: "";
+}
+
+.fa-bed:before {
+ content: "";
+}
+
+.fa-beer:before {
+ content: "";
+}
+
+.fa-behance:before {
+ content: "";
+}
+
+.fa-behance-square:before {
+ content: "";
+}
+
+.fa-bell:before {
+ content: "";
+}
+
+.fa-bell-slash:before {
+ content: "";
+}
+
+.fa-bezier-curve:before {
+ content: "";
+}
+
+.fa-bible:before {
+ content: "";
+}
+
+.fa-bicycle:before {
+ content: "";
+}
+
+.fa-bimobject:before {
+ content: "";
+}
+
+.fa-binoculars:before {
+ content: "";
+}
+
+.fa-birthday-cake:before {
+ content: "";
+}
+
+.fa-bitbucket:before {
+ content: "";
+}
+
+.fa-bitcoin:before {
+ content: "";
+}
+
+.fa-bity:before {
+ content: "";
+}
+
+.fa-black-tie:before {
+ content: "";
+}
+
+.fa-blackberry:before {
+ content: "";
+}
+
+.fa-blender:before {
+ content: "";
+}
+
+.fa-blind:before {
+ content: "";
+}
+
+.fa-blogger:before {
+ content: "";
+}
+
+.fa-blogger-b:before {
+ content: "";
+}
+
+.fa-bluetooth:before {
+ content: "";
+}
+
+.fa-bluetooth-b:before {
+ content: "";
+}
+
+.fa-bold:before {
+ content: "";
+}
+
+.fa-bolt:before {
+ content: "";
+}
+
+.fa-bomb:before {
+ content: "";
+}
+
+.fa-bone:before {
+ content: "";
+}
+
+.fa-bong:before {
+ content: "";
+}
+
+.fa-book:before {
+ content: "";
+}
+
+.fa-book-open:before {
+ content: "";
+}
+
+.fa-book-reader:before {
+ content: "";
+}
+
+.fa-bookmark:before {
+ content: "";
+}
+
+.fa-bowling-ball:before {
+ content: "";
+}
+
+.fa-box:before {
+ content: "";
+}
+
+.fa-box-open:before {
+ content: "";
+}
+
+.fa-boxes:before {
+ content: "";
+}
+
+.fa-braille:before {
+ content: "";
+}
+
+.fa-brain:before {
+ content: "";
+}
+
+.fa-briefcase:before {
+ content: "";
+}
+
+.fa-briefcase-medical:before {
+ content: "";
+}
+
+.fa-broadcast-tower:before {
+ content: "";
+}
+
+.fa-broom:before {
+ content: "";
+}
+
+.fa-brush:before {
+ content: "";
+}
+
+.fa-btc:before {
+ content: "";
+}
+
+.fa-bug:before {
+ content: "";
+}
+
+.fa-building:before {
+ content: "";
+}
+
+.fa-bullhorn:before {
+ content: "";
+}
+
+.fa-bullseye:before {
+ content: "";
+}
+
+.fa-burn:before {
+ content: "";
+}
+
+.fa-buromobelexperte:before {
+ content: "";
+}
+
+.fa-bus:before {
+ content: "";
+}
+
+.fa-bus-alt:before {
+ content: "";
+}
+
+.fa-business-time:before {
+ content: "";
+}
+
+.fa-buysellads:before {
+ content: "";
+}
+
+.fa-calculator:before {
+ content: "";
+}
+
+.fa-calendar:before {
+ content: "";
+}
+
+.fa-calendar-alt:before {
+ content: "";
+}
+
+.fa-calendar-check:before {
+ content: "";
+}
+
+.fa-calendar-minus:before {
+ content: "";
+}
+
+.fa-calendar-plus:before {
+ content: "";
+}
+
+.fa-calendar-times:before {
+ content: "";
+}
+
+.fa-camera:before {
+ content: "";
+}
+
+.fa-camera-retro:before {
+ content: "";
+}
+
+.fa-cannabis:before {
+ content: "";
+}
+
+.fa-capsules:before {
+ content: "";
+}
+
+.fa-car:before {
+ content: "";
+}
+
+.fa-car-alt:before {
+ content: "";
+}
+
+.fa-car-battery:before {
+ content: "";
+}
+
+.fa-car-crash:before {
+ content: "";
+}
+
+.fa-car-side:before {
+ content: "";
+}
+
+.fa-caret-down:before {
+ content: "";
+}
+
+.fa-caret-left:before {
+ content: "";
+}
+
+.fa-caret-right:before {
+ content: "";
+}
+
+.fa-caret-square-down:before {
+ content: "";
+}
+
+.fa-caret-square-left:before {
+ content: "";
+}
+
+.fa-caret-square-right:before {
+ content: "";
+}
+
+.fa-caret-square-up:before {
+ content: "";
+}
+
+.fa-caret-up:before {
+ content: "";
+}
+
+.fa-cart-arrow-down:before {
+ content: "";
+}
+
+.fa-cart-plus:before {
+ content: "";
+}
+
+.fa-cc-amazon-pay:before {
+ content: "";
+}
+
+.fa-cc-amex:before {
+ content: "";
+}
+
+.fa-cc-apple-pay:before {
+ content: "";
+}
+
+.fa-cc-diners-club:before {
+ content: "";
+}
+
+.fa-cc-discover:before {
+ content: "";
+}
+
+.fa-cc-jcb:before {
+ content: "";
+}
+
+.fa-cc-mastercard:before {
+ content: "";
+}
+
+.fa-cc-paypal:before {
+ content: "";
+}
+
+.fa-cc-stripe:before {
+ content: "";
+}
+
+.fa-cc-visa:before {
+ content: "";
+}
+
+.fa-centercode:before {
+ content: "";
+}
+
+.fa-certificate:before {
+ content: "";
+}
+
+.fa-chalkboard:before {
+ content: "";
+}
+
+.fa-chalkboard-teacher:before {
+ content: "";
+}
+
+.fa-charging-station:before {
+ content: "";
+}
+
+.fa-chart-area:before {
+ content: "";
+}
+
+.fa-chart-bar:before {
+ content: "";
+}
+
+.fa-chart-line:before {
+ content: "";
+}
+
+.fa-chart-pie:before {
+ content: "";
+}
+
+.fa-check:before {
+ content: "";
+}
+
+.fa-check-circle:before {
+ content: "";
+}
+
+.fa-check-double:before {
+ content: "";
+}
+
+.fa-check-square:before {
+ content: "";
+}
+
+.fa-chess:before {
+ content: "";
+}
+
+.fa-chess-bishop:before {
+ content: "";
+}
+
+.fa-chess-board:before {
+ content: "";
+}
+
+.fa-chess-king:before {
+ content: "";
+}
+
+.fa-chess-knight:before {
+ content: "";
+}
+
+.fa-chess-pawn:before {
+ content: "";
+}
+
+.fa-chess-queen:before {
+ content: "";
+}
+
+.fa-chess-rook:before {
+ content: "";
+}
+
+.fa-chevron-circle-down:before {
+ content: "";
+}
+
+.fa-chevron-circle-left:before {
+ content: "";
+}
+
+.fa-chevron-circle-right:before {
+ content: "";
+}
+
+.fa-chevron-circle-up:before {
+ content: "";
+}
+
+.fa-chevron-down:before {
+ content: "";
+}
+
+.fa-chevron-left:before {
+ content: "";
+}
+
+.fa-chevron-right:before {
+ content: "";
+}
+
+.fa-chevron-up:before {
+ content: "";
+}
+
+.fa-child:before {
+ content: "";
+}
+
+.fa-chrome:before {
+ content: "";
+}
+
+.fa-church:before {
+ content: "";
+}
+
+.fa-circle:before {
+ content: "";
+}
+
+.fa-circle-notch:before {
+ content: "";
+}
+
+.fa-city:before {
+ content: "";
+}
+
+.fa-clipboard:before {
+ content: "";
+}
+
+.fa-clipboard-check:before {
+ content: "";
+}
+
+.fa-clipboard-list:before {
+ content: "";
+}
+
+.fa-clock:before {
+ content: "";
+}
+
+.fa-clone:before {
+ content: "";
+}
+
+.fa-closed-captioning:before {
+ content: "";
+}
+
+.fa-cloud:before {
+ content: "";
+}
+
+.fa-cloud-download-alt:before {
+ content: "";
+}
+
+.fa-cloud-upload-alt:before {
+ content: "";
+}
+
+.fa-cloudscale:before {
+ content: "";
+}
+
+.fa-cloudsmith:before {
+ content: "";
+}
+
+.fa-cloudversify:before {
+ content: "";
+}
+
+.fa-cocktail:before {
+ content: "";
+}
+
+.fa-code:before {
+ content: "";
+}
+
+.fa-code-branch:before {
+ content: "";
+}
+
+.fa-codepen:before {
+ content: "";
+}
+
+.fa-codiepie:before {
+ content: "";
+}
+
+.fa-coffee:before {
+ content: "";
+}
+
+.fa-cog:before {
+ content: "";
+}
+
+.fa-cogs:before {
+ content: "";
+}
+
+.fa-coins:before {
+ content: "";
+}
+
+.fa-columns:before {
+ content: "";
+}
+
+.fa-comment:before {
+ content: "";
+}
+
+.fa-comment-alt:before {
+ content: "";
+}
+
+.fa-comment-dollar:before {
+ content: "";
+}
+
+.fa-comment-dots:before {
+ content: "";
+}
+
+.fa-comment-slash:before {
+ content: "";
+}
+
+.fa-comments:before {
+ content: "";
+}
+
+.fa-comments-dollar:before {
+ content: "";
+}
+
+.fa-compact-disc:before {
+ content: "";
+}
+
+.fa-compass:before {
+ content: "";
+}
+
+.fa-compress:before {
+ content: "";
+}
+
+.fa-concierge-bell:before {
+ content: "";
+}
+
+.fa-connectdevelop:before {
+ content: "";
+}
+
+.fa-contao:before {
+ content: "";
+}
+
+.fa-cookie:before {
+ content: "";
+}
+
+.fa-cookie-bite:before {
+ content: "";
+}
+
+.fa-copy:before {
+ content: "";
+}
+
+.fa-copyright:before {
+ content: "";
+}
+
+.fa-couch:before {
+ content: "";
+}
+
+.fa-cpanel:before {
+ content: "";
+}
+
+.fa-creative-commons:before {
+ content: "";
+}
+
+.fa-creative-commons-by:before {
+ content: "";
+}
+
+.fa-creative-commons-nc:before {
+ content: "";
+}
+
+.fa-creative-commons-nc-eu:before {
+ content: "";
+}
+
+.fa-creative-commons-nc-jp:before {
+ content: "";
+}
+
+.fa-creative-commons-nd:before {
+ content: "";
+}
+
+.fa-creative-commons-pd:before {
+ content: "";
+}
+
+.fa-creative-commons-pd-alt:before {
+ content: "";
+}
+
+.fa-creative-commons-remix:before {
+ content: "";
+}
+
+.fa-creative-commons-sa:before {
+ content: "";
+}
+
+.fa-creative-commons-sampling:before {
+ content: "";
+}
+
+.fa-creative-commons-sampling-plus:before {
+ content: "";
+}
+
+.fa-creative-commons-share:before {
+ content: "";
+}
+
+.fa-credit-card:before {
+ content: "";
+}
+
+.fa-crop:before {
+ content: "";
+}
+
+.fa-crop-alt:before {
+ content: "";
+}
+
+.fa-cross:before {
+ content: "";
+}
+
+.fa-crosshairs:before {
+ content: "";
+}
+
+.fa-crow:before {
+ content: "";
+}
+
+.fa-crown:before {
+ content: "";
+}
+
+.fa-css3:before {
+ content: "";
+}
+
+.fa-css3-alt:before {
+ content: "";
+}
+
+.fa-cube:before {
+ content: "";
+}
+
+.fa-cubes:before {
+ content: "";
+}
+
+.fa-cut:before {
+ content: "";
+}
+
+.fa-cuttlefish:before {
+ content: "";
+}
+
+.fa-d-and-d:before {
+ content: "";
+}
+
+.fa-dashcube:before {
+ content: "";
+}
+
+.fa-database:before {
+ content: "";
+}
+
+.fa-deaf:before {
+ content: "";
+}
+
+.fa-delicious:before {
+ content: "";
+}
+
+.fa-deploydog:before {
+ content: "";
+}
+
+.fa-deskpro:before {
+ content: "";
+}
+
+.fa-desktop:before {
+ content: "";
+}
+
+.fa-deviantart:before {
+ content: "";
+}
+
+.fa-dharmachakra:before {
+ content: "";
+}
+
+.fa-diagnoses:before {
+ content: "";
+}
+
+.fa-dice:before {
+ content: "";
+}
+
+.fa-dice-five:before {
+ content: "";
+}
+
+.fa-dice-four:before {
+ content: "";
+}
+
+.fa-dice-one:before {
+ content: "";
+}
+
+.fa-dice-six:before {
+ content: "";
+}
+
+.fa-dice-three:before {
+ content: "";
+}
+
+.fa-dice-two:before {
+ content: "";
+}
+
+.fa-digg:before {
+ content: "";
+}
+
+.fa-digital-ocean:before {
+ content: "";
+}
+
+.fa-digital-tachograph:before {
+ content: "";
+}
+
+.fa-directions:before {
+ content: "";
+}
+
+.fa-discord:before {
+ content: "";
+}
+
+.fa-discourse:before {
+ content: "";
+}
+
+.fa-divide:before {
+ content: "";
+}
+
+.fa-dizzy:before {
+ content: "";
+}
+
+.fa-dna:before {
+ content: "";
+}
+
+.fa-dochub:before {
+ content: "";
+}
+
+.fa-docker:before {
+ content: "";
+}
+
+.fa-dollar-sign:before {
+ content: "";
+}
+
+.fa-dolly:before {
+ content: "";
+}
+
+.fa-dolly-flatbed:before {
+ content: "";
+}
+
+.fa-donate:before {
+ content: "";
+}
+
+.fa-door-closed:before {
+ content: "";
+}
+
+.fa-door-open:before {
+ content: "";
+}
+
+.fa-dot-circle:before {
+ content: "";
+}
+
+.fa-dove:before {
+ content: "";
+}
+
+.fa-download:before {
+ content: "";
+}
+
+.fa-draft2digital:before {
+ content: "";
+}
+
+.fa-drafting-compass:before {
+ content: "";
+}
+
+.fa-draw-polygon:before {
+ content: "";
+}
+
+.fa-dribbble:before {
+ content: "";
+}
+
+.fa-dribbble-square:before {
+ content: "";
+}
+
+.fa-dropbox:before {
+ content: "";
+}
+
+.fa-drum:before {
+ content: "";
+}
+
+.fa-drum-steelpan:before {
+ content: "";
+}
+
+.fa-drupal:before {
+ content: "";
+}
+
+.fa-dumbbell:before {
+ content: "";
+}
+
+.fa-dyalog:before {
+ content: "";
+}
+
+.fa-earlybirds:before {
+ content: "";
+}
+
+.fa-ebay:before {
+ content: "";
+}
+
+.fa-edge:before {
+ content: "";
+}
+
+.fa-edit:before {
+ content: "";
+}
+
+.fa-eject:before {
+ content: "";
+}
+
+.fa-elementor:before {
+ content: "";
+}
+
+.fa-ellipsis-h:before {
+ content: "";
+}
+
+.fa-ellipsis-v:before {
+ content: "";
+}
+
+.fa-ello:before {
+ content: "";
+}
+
+.fa-ember:before {
+ content: "";
+}
+
+.fa-empire:before {
+ content: "";
+}
+
+.fa-envelope:before {
+ content: "";
+}
+
+.fa-envelope-open:before {
+ content: "";
+}
+
+.fa-envelope-open-text:before {
+ content: "";
+}
+
+.fa-envelope-square:before {
+ content: "";
+}
+
+.fa-envira:before {
+ content: "";
+}
+
+.fa-equals:before {
+ content: "";
+}
+
+.fa-eraser:before {
+ content: "";
+}
+
+.fa-erlang:before {
+ content: "";
+}
+
+.fa-ethereum:before {
+ content: "";
+}
+
+.fa-etsy:before {
+ content: "";
+}
+
+.fa-euro-sign:before {
+ content: "";
+}
+
+.fa-exchange-alt:before {
+ content: "";
+}
+
+.fa-exclamation:before {
+ content: "";
+}
+
+.fa-exclamation-circle:before {
+ content: "";
+}
+
+.fa-exclamation-triangle:before {
+ content: "";
+}
+
+.fa-expand:before {
+ content: "";
+}
+
+.fa-expand-arrows-alt:before {
+ content: "";
+}
+
+.fa-expeditedssl:before {
+ content: "";
+}
+
+.fa-external-link-alt:before {
+ content: "";
+}
+
+.fa-external-link-square-alt:before {
+ content: "";
+}
+
+.fa-eye:before {
+ content: "";
+}
+
+.fa-eye-dropper:before {
+ content: "";
+}
+
+.fa-eye-slash:before {
+ content: "";
+}
+
+.fa-facebook:before {
+ content: "";
+}
+
+.fa-facebook-f:before {
+ content: "";
+}
+
+.fa-facebook-messenger:before {
+ content: "";
+}
+
+.fa-facebook-square:before {
+ content: "";
+}
+
+.fa-fast-backward:before {
+ content: "";
+}
+
+.fa-fast-forward:before {
+ content: "";
+}
+
+.fa-fax:before {
+ content: "";
+}
+
+.fa-feather:before {
+ content: "";
+}
+
+.fa-feather-alt:before {
+ content: "";
+}
+
+.fa-female:before {
+ content: "";
+}
+
+.fa-fighter-jet:before {
+ content: "";
+}
+
+.fa-file:before {
+ content: "";
+}
+
+.fa-file-alt:before {
+ content: "";
+}
+
+.fa-file-archive:before {
+ content: "";
+}
+
+.fa-file-audio:before {
+ content: "";
+}
+
+.fa-file-code:before {
+ content: "";
+}
+
+.fa-file-contract:before {
+ content: "";
+}
+
+.fa-file-download:before {
+ content: "";
+}
+
+.fa-file-excel:before {
+ content: "";
+}
+
+.fa-file-export:before {
+ content: "";
+}
+
+.fa-file-image:before {
+ content: "";
+}
+
+.fa-file-import:before {
+ content: "";
+}
+
+.fa-file-invoice:before {
+ content: "";
+}
+
+.fa-file-invoice-dollar:before {
+ content: "";
+}
+
+.fa-file-medical:before {
+ content: "";
+}
+
+.fa-file-medical-alt:before {
+ content: "";
+}
+
+.fa-file-pdf:before {
+ content: "";
+}
+
+.fa-file-powerpoint:before {
+ content: "";
+}
+
+.fa-file-prescription:before {
+ content: "";
+}
+
+.fa-file-signature:before {
+ content: "";
+}
+
+.fa-file-upload:before {
+ content: "";
+}
+
+.fa-file-video:before {
+ content: "";
+}
+
+.fa-file-word:before {
+ content: "";
+}
+
+.fa-fill:before {
+ content: "";
+}
+
+.fa-fill-drip:before {
+ content: "";
+}
+
+.fa-film:before {
+ content: "";
+}
+
+.fa-filter:before {
+ content: "";
+}
+
+.fa-fingerprint:before {
+ content: "";
+}
+
+.fa-fire:before {
+ content: "";
+}
+
+.fa-fire-extinguisher:before {
+ content: "";
+}
+
+.fa-firefox:before {
+ content: "";
+}
+
+.fa-first-aid:before {
+ content: "";
+}
+
+.fa-first-order:before {
+ content: "";
+}
+
+.fa-first-order-alt:before {
+ content: "";
+}
+
+.fa-firstdraft:before {
+ content: "";
+}
+
+.fa-fish:before {
+ content: "";
+}
+
+.fa-flag:before {
+ content: "";
+}
+
+.fa-flag-checkered:before {
+ content: "";
+}
+
+.fa-flask:before {
+ content: "";
+}
+
+.fa-flickr:before {
+ content: "";
+}
+
+.fa-flipboard:before {
+ content: "";
+}
+
+.fa-flushed:before {
+ content: "";
+}
+
+.fa-fly:before {
+ content: "";
+}
+
+.fa-folder:before {
+ content: "";
+}
+
+.fa-folder-minus:before {
+ content: "";
+}
+
+.fa-folder-open:before {
+ content: "";
+}
+
+.fa-folder-plus:before {
+ content: "";
+}
+
+.fa-font:before {
+ content: "";
+}
+
+.fa-font-awesome:before {
+ content: "";
+}
+
+.fa-font-awesome-alt:before {
+ content: "";
+}
+
+.fa-font-awesome-flag:before {
+ content: "";
+}
+
+.fa-font-awesome-logo-full:before {
+ content: "";
+}
+
+.fa-fonticons:before {
+ content: "";
+}
+
+.fa-fonticons-fi:before {
+ content: "";
+}
+
+.fa-football-ball:before {
+ content: "";
+}
+
+.fa-fort-awesome:before {
+ content: "";
+}
+
+.fa-fort-awesome-alt:before {
+ content: "";
+}
+
+.fa-forumbee:before {
+ content: "";
+}
+
+.fa-forward:before {
+ content: "";
+}
+
+.fa-foursquare:before {
+ content: "";
+}
+
+.fa-free-code-camp:before {
+ content: "";
+}
+
+.fa-freebsd:before {
+ content: "";
+}
+
+.fa-frog:before {
+ content: "";
+}
+
+.fa-frown:before {
+ content: "";
+}
+
+.fa-frown-open:before {
+ content: "";
+}
+
+.fa-fulcrum:before {
+ content: "";
+}
+
+.fa-funnel-dollar:before {
+ content: "";
+}
+
+.fa-futbol:before {
+ content: "";
+}
+
+.fa-galactic-republic:before {
+ content: "";
+}
+
+.fa-galactic-senate:before {
+ content: "";
+}
+
+.fa-gamepad:before {
+ content: "";
+}
+
+.fa-gas-pump:before {
+ content: "";
+}
+
+.fa-gavel:before {
+ content: "";
+}
+
+.fa-gem:before {
+ content: "";
+}
+
+.fa-genderless:before {
+ content: "";
+}
+
+.fa-get-pocket:before {
+ content: "";
+}
+
+.fa-gg:before {
+ content: "";
+}
+
+.fa-gg-circle:before {
+ content: "";
+}
+
+.fa-gift:before {
+ content: "";
+}
+
+.fa-git:before {
+ content: "";
+}
+
+.fa-git-square:before {
+ content: "";
+}
+
+.fa-github:before {
+ content: "";
+}
+
+.fa-github-alt:before {
+ content: "";
+}
+
+.fa-github-square:before {
+ content: "";
+}
+
+.fa-gitkraken:before {
+ content: "";
+}
+
+.fa-gitlab:before {
+ content: "";
+}
+
+.fa-gitter:before {
+ content: "";
+}
+
+.fa-glass-martini:before {
+ content: "";
+}
+
+.fa-glass-martini-alt:before {
+ content: "";
+}
+
+.fa-glasses:before {
+ content: "";
+}
+
+.fa-glide:before {
+ content: "";
+}
+
+.fa-glide-g:before {
+ content: "";
+}
+
+.fa-globe:before {
+ content: "";
+}
+
+.fa-globe-africa:before {
+ content: "";
+}
+
+.fa-globe-americas:before {
+ content: "";
+}
+
+.fa-globe-asia:before {
+ content: "";
+}
+
+.fa-gofore:before {
+ content: "";
+}
+
+.fa-golf-ball:before {
+ content: "";
+}
+
+.fa-goodreads:before {
+ content: "";
+}
+
+.fa-goodreads-g:before {
+ content: "";
+}
+
+.fa-google:before {
+ content: "";
+}
+
+.fa-google-drive:before {
+ content: "";
+}
+
+.fa-google-play:before {
+ content: "";
+}
+
+.fa-google-plus:before {
+ content: "";
+}
+
+.fa-google-plus-g:before {
+ content: "";
+}
+
+.fa-google-plus-square:before {
+ content: "";
+}
+
+.fa-google-wallet:before {
+ content: "";
+}
+
+.fa-gopuram:before {
+ content: "";
+}
+
+.fa-graduation-cap:before {
+ content: "";
+}
+
+.fa-gratipay:before {
+ content: "";
+}
+
+.fa-grav:before {
+ content: "";
+}
+
+.fa-greater-than:before {
+ content: "";
+}
+
+.fa-greater-than-equal:before {
+ content: "";
+}
+
+.fa-grimace:before {
+ content: "";
+}
+
+.fa-grin:before {
+ content: "";
+}
+
+.fa-grin-alt:before {
+ content: "";
+}
+
+.fa-grin-beam:before {
+ content: "";
+}
+
+.fa-grin-beam-sweat:before {
+ content: "";
+}
+
+.fa-grin-hearts:before {
+ content: "";
+}
+
+.fa-grin-squint:before {
+ content: "";
+}
+
+.fa-grin-squint-tears:before {
+ content: "";
+}
+
+.fa-grin-stars:before {
+ content: "";
+}
+
+.fa-grin-tears:before {
+ content: "";
+}
+
+.fa-grin-tongue:before {
+ content: "";
+}
+
+.fa-grin-tongue-squint:before {
+ content: "";
+}
+
+.fa-grin-tongue-wink:before {
+ content: "";
+}
+
+.fa-grin-wink:before {
+ content: "";
+}
+
+.fa-grip-horizontal:before {
+ content: "";
+}
+
+.fa-grip-vertical:before {
+ content: "";
+}
+
+.fa-gripfire:before {
+ content: "";
+}
+
+.fa-grunt:before {
+ content: "";
+}
+
+.fa-gulp:before {
+ content: "";
+}
+
+.fa-h-square:before {
+ content: "";
+}
+
+.fa-hacker-news:before {
+ content: "";
+}
+
+.fa-hacker-news-square:before {
+ content: "";
+}
+
+.fa-hackerrank:before {
+ content: "";
+}
+
+.fa-hamsa:before {
+ content: "";
+}
+
+.fa-hand-holding:before {
+ content: "";
+}
+
+.fa-hand-holding-heart:before {
+ content: "";
+}
+
+.fa-hand-holding-usd:before {
+ content: "";
+}
+
+.fa-hand-lizard:before {
+ content: "";
+}
+
+.fa-hand-paper:before {
+ content: "";
+}
+
+.fa-hand-peace:before {
+ content: "";
+}
+
+.fa-hand-point-down:before {
+ content: "";
+}
+
+.fa-hand-point-left:before {
+ content: "";
+}
+
+.fa-hand-point-right:before {
+ content: "";
+}
+
+.fa-hand-point-up:before {
+ content: "";
+}
+
+.fa-hand-pointer:before {
+ content: "";
+}
+
+.fa-hand-rock:before {
+ content: "";
+}
+
+.fa-hand-scissors:before {
+ content: "";
+}
+
+.fa-hand-spock:before {
+ content: "";
+}
+
+.fa-hands:before {
+ content: "";
+}
+
+.fa-hands-helping:before {
+ content: "";
+}
+
+.fa-handshake:before {
+ content: "";
+}
+
+.fa-hashtag:before {
+ content: "";
+}
+
+.fa-haykal:before {
+ content: "";
+}
+
+.fa-hdd:before {
+ content: "";
+}
+
+.fa-heading:before {
+ content: "";
+}
+
+.fa-headphones:before {
+ content: "";
+}
+
+.fa-headphones-alt:before {
+ content: "";
+}
+
+.fa-headset:before {
+ content: "";
+}
+
+.fa-heart:before {
+ content: "";
+}
+
+.fa-heartbeat:before {
+ content: "";
+}
+
+.fa-helicopter:before {
+ content: "";
+}
+
+.fa-highlighter:before {
+ content: "";
+}
+
+.fa-hips:before {
+ content: "";
+}
+
+.fa-hire-a-helper:before {
+ content: "";
+}
+
+.fa-history:before {
+ content: "";
+}
+
+.fa-hockey-puck:before {
+ content: "";
+}
+
+.fa-home:before {
+ content: "";
+}
+
+.fa-hooli:before {
+ content: "";
+}
+
+.fa-hornbill:before {
+ content: "";
+}
+
+.fa-hospital:before {
+ content: "";
+}
+
+.fa-hospital-alt:before {
+ content: "";
+}
+
+.fa-hospital-symbol:before {
+ content: "";
+}
+
+.fa-hot-tub:before {
+ content: "";
+}
+
+.fa-hotel:before {
+ content: "";
+}
+
+.fa-hotjar:before {
+ content: "";
+}
+
+.fa-hourglass:before {
+ content: "";
+}
+
+.fa-hourglass-end:before {
+ content: "";
+}
+
+.fa-hourglass-half:before {
+ content: "";
+}
+
+.fa-hourglass-start:before {
+ content: "";
+}
+
+.fa-houzz:before {
+ content: "";
+}
+
+.fa-html5:before {
+ content: "";
+}
+
+.fa-hubspot:before {
+ content: "";
+}
+
+.fa-i-cursor:before {
+ content: "";
+}
+
+.fa-id-badge:before {
+ content: "";
+}
+
+.fa-id-card:before {
+ content: "";
+}
+
+.fa-id-card-alt:before {
+ content: "";
+}
+
+.fa-image:before {
+ content: "";
+}
+
+.fa-images:before {
+ content: "";
+}
+
+.fa-imdb:before {
+ content: "";
+}
+
+.fa-inbox:before {
+ content: "";
+}
+
+.fa-indent:before {
+ content: "";
+}
+
+.fa-industry:before {
+ content: "";
+}
+
+.fa-infinity:before {
+ content: "";
+}
+
+.fa-info:before {
+ content: "";
+}
+
+.fa-info-circle:before {
+ content: "";
+}
+
+.fa-instagram:before {
+ content: "";
+}
+
+.fa-internet-explorer:before {
+ content: "";
+}
+
+.fa-ioxhost:before {
+ content: "";
+}
+
+.fa-italic:before {
+ content: "";
+}
+
+.fa-itunes:before {
+ content: "";
+}
+
+.fa-itunes-note:before {
+ content: "";
+}
+
+.fa-java:before {
+ content: "";
+}
+
+.fa-jedi:before {
+ content: "";
+}
+
+.fa-jedi-order:before {
+ content: "";
+}
+
+.fa-jenkins:before {
+ content: "";
+}
+
+.fa-joget:before {
+ content: "";
+}
+
+.fa-joint:before {
+ content: "";
+}
+
+.fa-joomla:before {
+ content: "";
+}
+
+.fa-journal-whills:before {
+ content: "";
+}
+
+.fa-js:before {
+ content: "";
+}
+
+.fa-js-square:before {
+ content: "";
+}
+
+.fa-jsfiddle:before {
+ content: "";
+}
+
+.fa-kaaba:before {
+ content: "";
+}
+
+.fa-kaggle:before {
+ content: "";
+}
+
+.fa-key:before {
+ content: "";
+}
+
+.fa-keybase:before {
+ content: "";
+}
+
+.fa-keyboard:before {
+ content: "";
+}
+
+.fa-keycdn:before {
+ content: "";
+}
+
+.fa-khanda:before {
+ content: "";
+}
+
+.fa-kickstarter:before {
+ content: "";
+}
+
+.fa-kickstarter-k:before {
+ content: "";
+}
+
+.fa-kiss:before {
+ content: "";
+}
+
+.fa-kiss-beam:before {
+ content: "";
+}
+
+.fa-kiss-wink-heart:before {
+ content: "";
+}
+
+.fa-kiwi-bird:before {
+ content: "";
+}
+
+.fa-korvue:before {
+ content: "";
+}
+
+.fa-landmark:before {
+ content: "";
+}
+
+.fa-language:before {
+ content: "";
+}
+
+.fa-laptop:before {
+ content: "";
+}
+
+.fa-laptop-code:before {
+ content: "";
+}
+
+.fa-laravel:before {
+ content: "";
+}
+
+.fa-lastfm:before {
+ content: "";
+}
+
+.fa-lastfm-square:before {
+ content: "";
+}
+
+.fa-laugh:before {
+ content: "";
+}
+
+.fa-laugh-beam:before {
+ content: "";
+}
+
+.fa-laugh-squint:before {
+ content: "";
+}
+
+.fa-laugh-wink:before {
+ content: "";
+}
+
+.fa-layer-group:before {
+ content: "";
+}
+
+.fa-leaf:before {
+ content: "";
+}
+
+.fa-leanpub:before {
+ content: "";
+}
+
+.fa-lemon:before {
+ content: "";
+}
+
+.fa-less:before {
+ content: "";
+}
+
+.fa-less-than:before {
+ content: "";
+}
+
+.fa-less-than-equal:before {
+ content: "";
+}
+
+.fa-level-down-alt:before {
+ content: "";
+}
+
+.fa-level-up-alt:before {
+ content: "";
+}
+
+.fa-life-ring:before {
+ content: "";
+}
+
+.fa-lightbulb:before {
+ content: "";
+}
+
+.fa-line:before {
+ content: "";
+}
+
+.fa-link:before {
+ content: "";
+}
+
+.fa-linkedin:before {
+ content: "";
+}
+
+.fa-linkedin-in:before {
+ content: "";
+}
+
+.fa-linode:before {
+ content: "";
+}
+
+.fa-linux:before {
+ content: "";
+}
+
+.fa-lira-sign:before {
+ content: "";
+}
+
+.fa-list:before {
+ content: "";
+}
+
+.fa-list-alt:before {
+ content: "";
+}
+
+.fa-list-ol:before {
+ content: "";
+}
+
+.fa-list-ul:before {
+ content: "";
+}
+
+.fa-location-arrow:before {
+ content: "";
+}
+
+.fa-lock:before {
+ content: "";
+}
+
+.fa-lock-open:before {
+ content: "";
+}
+
+.fa-long-arrow-alt-down:before {
+ content: "";
+}
+
+.fa-long-arrow-alt-left:before {
+ content: "";
+}
+
+.fa-long-arrow-alt-right:before {
+ content: "";
+}
+
+.fa-long-arrow-alt-up:before {
+ content: "";
+}
+
+.fa-low-vision:before {
+ content: "";
+}
+
+.fa-luggage-cart:before {
+ content: "";
+}
+
+.fa-lyft:before {
+ content: "";
+}
+
+.fa-magento:before {
+ content: "";
+}
+
+.fa-magic:before {
+ content: "";
+}
+
+.fa-magnet:before {
+ content: "";
+}
+
+.fa-mail-bulk:before {
+ content: "";
+}
+
+.fa-mailchimp:before {
+ content: "";
+}
+
+.fa-male:before {
+ content: "";
+}
+
+.fa-mandalorian:before {
+ content: "";
+}
+
+.fa-map:before {
+ content: "";
+}
+
+.fa-map-marked:before {
+ content: "";
+}
+
+.fa-map-marked-alt:before {
+ content: "";
+}
+
+.fa-map-marker:before {
+ content: "";
+}
+
+.fa-map-marker-alt:before {
+ content: "";
+}
+
+.fa-map-pin:before {
+ content: "";
+}
+
+.fa-map-signs:before {
+ content: "";
+}
+
+.fa-markdown:before {
+ content: "";
+}
+
+.fa-marker:before {
+ content: "";
+}
+
+.fa-mars:before {
+ content: "";
+}
+
+.fa-mars-double:before {
+ content: "";
+}
+
+.fa-mars-stroke:before {
+ content: "";
+}
+
+.fa-mars-stroke-h:before {
+ content: "";
+}
+
+.fa-mars-stroke-v:before {
+ content: "";
+}
+
+.fa-mastodon:before {
+ content: "";
+}
+
+.fa-maxcdn:before {
+ content: "";
+}
+
+.fa-medal:before {
+ content: "";
+}
+
+.fa-medapps:before {
+ content: "";
+}
+
+.fa-medium:before {
+ content: "";
+}
+
+.fa-medium-m:before {
+ content: "";
+}
+
+.fa-medkit:before {
+ content: "";
+}
+
+.fa-medrt:before {
+ content: "";
+}
+
+.fa-meetup:before {
+ content: "";
+}
+
+.fa-megaport:before {
+ content: "";
+}
+
+.fa-meh:before {
+ content: "";
+}
+
+.fa-meh-blank:before {
+ content: "";
+}
+
+.fa-meh-rolling-eyes:before {
+ content: "";
+}
+
+.fa-memory:before {
+ content: "";
+}
+
+.fa-menorah:before {
+ content: "";
+}
+
+.fa-mercury:before {
+ content: "";
+}
+
+.fa-microchip:before {
+ content: "";
+}
+
+.fa-microphone:before {
+ content: "";
+}
+
+.fa-microphone-alt:before {
+ content: "";
+}
+
+.fa-microphone-alt-slash:before {
+ content: "";
+}
+
+.fa-microphone-slash:before {
+ content: "";
+}
+
+.fa-microscope:before {
+ content: "";
+}
+
+.fa-microsoft:before {
+ content: "";
+}
+
+.fa-minus:before {
+ content: "";
+}
+
+.fa-minus-circle:before {
+ content: "";
+}
+
+.fa-minus-square:before {
+ content: "";
+}
+
+.fa-mix:before {
+ content: "";
+}
+
+.fa-mixcloud:before {
+ content: "";
+}
+
+.fa-mizuni:before {
+ content: "";
+}
+
+.fa-mobile:before {
+ content: "";
+}
+
+.fa-mobile-alt:before {
+ content: "";
+}
+
+.fa-modx:before {
+ content: "";
+}
+
+.fa-monero:before {
+ content: "";
+}
+
+.fa-money-bill:before {
+ content: "";
+}
+
+.fa-money-bill-alt:before {
+ content: "";
+}
+
+.fa-money-bill-wave:before {
+ content: "";
+}
+
+.fa-money-bill-wave-alt:before {
+ content: "";
+}
+
+.fa-money-check:before {
+ content: "";
+}
+
+.fa-money-check-alt:before {
+ content: "";
+}
+
+.fa-monument:before {
+ content: "";
+}
+
+.fa-moon:before {
+ content: "";
+}
+
+.fa-mortar-pestle:before {
+ content: "";
+}
+
+.fa-mosque:before {
+ content: "";
+}
+
+.fa-motorcycle:before {
+ content: "";
+}
+
+.fa-mouse-pointer:before {
+ content: "";
+}
+
+.fa-music:before {
+ content: "";
+}
+
+.fa-napster:before {
+ content: "";
+}
+
+.fa-neos:before {
+ content: "";
+}
+
+.fa-neuter:before {
+ content: "";
+}
+
+.fa-newspaper:before {
+ content: "";
+}
+
+.fa-nimblr:before {
+ content: "";
+}
+
+.fa-nintendo-switch:before {
+ content: "";
+}
+
+.fa-node:before {
+ content: "";
+}
+
+.fa-node-js:before {
+ content: "";
+}
+
+.fa-not-equal:before {
+ content: "";
+}
+
+.fa-notes-medical:before {
+ content: "";
+}
+
+.fa-npm:before {
+ content: "";
+}
+
+.fa-ns8:before {
+ content: "";
+}
+
+.fa-nutritionix:before {
+ content: "";
+}
+
+.fa-object-group:before {
+ content: "";
+}
+
+.fa-object-ungroup:before {
+ content: "";
+}
+
+.fa-odnoklassniki:before {
+ content: "";
+}
+
+.fa-odnoklassniki-square:before {
+ content: "";
+}
+
+.fa-oil-can:before {
+ content: "";
+}
+
+.fa-old-republic:before {
+ content: "";
+}
+
+.fa-om:before {
+ content: "";
+}
+
+.fa-opencart:before {
+ content: "";
+}
+
+.fa-openid:before {
+ content: "";
+}
+
+.fa-opera:before {
+ content: "";
+}
+
+.fa-optin-monster:before {
+ content: "";
+}
+
+.fa-osi:before {
+ content: "";
+}
+
+.fa-outdent:before {
+ content: "";
+}
+
+.fa-page4:before {
+ content: "";
+}
+
+.fa-pagelines:before {
+ content: "";
+}
+
+.fa-paint-brush:before {
+ content: "";
+}
+
+.fa-paint-roller:before {
+ content: "";
+}
+
+.fa-palette:before {
+ content: "";
+}
+
+.fa-palfed:before {
+ content: "";
+}
+
+.fa-pallet:before {
+ content: "";
+}
+
+.fa-paper-plane:before {
+ content: "";
+}
+
+.fa-paperclip:before {
+ content: "";
+}
+
+.fa-parachute-box:before {
+ content: "";
+}
+
+.fa-paragraph:before {
+ content: "";
+}
+
+.fa-parking:before {
+ content: "";
+}
+
+.fa-passport:before {
+ content: "";
+}
+
+.fa-pastafarianism:before {
+ content: "";
+}
+
+.fa-paste:before {
+ content: "";
+}
+
+.fa-patreon:before {
+ content: "";
+}
+
+.fa-pause:before {
+ content: "";
+}
+
+.fa-pause-circle:before {
+ content: "";
+}
+
+.fa-paw:before {
+ content: "";
+}
+
+.fa-paypal:before {
+ content: "";
+}
+
+.fa-peace:before {
+ content: "";
+}
+
+.fa-pen:before {
+ content: "";
+}
+
+.fa-pen-alt:before {
+ content: "";
+}
+
+.fa-pen-fancy:before {
+ content: "";
+}
+
+.fa-pen-nib:before {
+ content: "";
+}
+
+.fa-pen-square:before {
+ content: "";
+}
+
+.fa-pencil-alt:before {
+ content: "";
+}
+
+.fa-pencil-ruler:before {
+ content: "";
+}
+
+.fa-people-carry:before {
+ content: "";
+}
+
+.fa-percent:before {
+ content: "";
+}
+
+.fa-percentage:before {
+ content: "";
+}
+
+.fa-periscope:before {
+ content: "";
+}
+
+.fa-phabricator:before {
+ content: "";
+}
+
+.fa-phoenix-framework:before {
+ content: "";
+}
+
+.fa-phoenix-squadron:before {
+ content: "";
+}
+
+.fa-phone:before {
+ content: "";
+}
+
+.fa-phone-slash:before {
+ content: "";
+}
+
+.fa-phone-square:before {
+ content: "";
+}
+
+.fa-phone-volume:before {
+ content: "";
+}
+
+.fa-php:before {
+ content: "";
+}
+
+.fa-pied-piper:before {
+ content: "";
+}
+
+.fa-pied-piper-alt:before {
+ content: "";
+}
+
+.fa-pied-piper-hat:before {
+ content: "";
+}
+
+.fa-pied-piper-pp:before {
+ content: "";
+}
+
+.fa-piggy-bank:before {
+ content: "";
+}
+
+.fa-pills:before {
+ content: "";
+}
+
+.fa-pinterest:before {
+ content: "";
+}
+
+.fa-pinterest-p:before {
+ content: "";
+}
+
+.fa-pinterest-square:before {
+ content: "";
+}
+
+.fa-place-of-worship:before {
+ content: "";
+}
+
+.fa-plane:before {
+ content: "";
+}
+
+.fa-plane-arrival:before {
+ content: "";
+}
+
+.fa-plane-departure:before {
+ content: "";
+}
+
+.fa-play:before {
+ content: "";
+}
+
+.fa-play-circle:before {
+ content: "";
+}
+
+.fa-playstation:before {
+ content: "";
+}
+
+.fa-plug:before {
+ content: "";
+}
+
+.fa-plus:before {
+ content: "";
+}
+
+.fa-plus-circle:before {
+ content: "";
+}
+
+.fa-plus-square:before {
+ content: "";
+}
+
+.fa-podcast:before {
+ content: "";
+}
+
+.fa-poll:before {
+ content: "";
+}
+
+.fa-poll-h:before {
+ content: "";
+}
+
+.fa-poo:before {
+ content: "";
+}
+
+.fa-poop:before {
+ content: "";
+}
+
+.fa-portrait:before {
+ content: "";
+}
+
+.fa-pound-sign:before {
+ content: "";
+}
+
+.fa-power-off:before {
+ content: "";
+}
+
+.fa-pray:before {
+ content: "";
+}
+
+.fa-praying-hands:before {
+ content: "";
+}
+
+.fa-prescription:before {
+ content: "";
+}
+
+.fa-prescription-bottle:before {
+ content: "";
+}
+
+.fa-prescription-bottle-alt:before {
+ content: "";
+}
+
+.fa-print:before {
+ content: "";
+}
+
+.fa-procedures:before {
+ content: "";
+}
+
+.fa-product-hunt:before {
+ content: "";
+}
+
+.fa-project-diagram:before {
+ content: "";
+}
+
+.fa-pushed:before {
+ content: "";
+}
+
+.fa-puzzle-piece:before {
+ content: "";
+}
+
+.fa-python:before {
+ content: "";
+}
+
+.fa-qq:before {
+ content: "";
+}
+
+.fa-qrcode:before {
+ content: "";
+}
+
+.fa-question:before {
+ content: "";
+}
+
+.fa-question-circle:before {
+ content: "";
+}
+
+.fa-quidditch:before {
+ content: "";
+}
+
+.fa-quinscape:before {
+ content: "";
+}
+
+.fa-quora:before {
+ content: "";
+}
+
+.fa-quote-left:before {
+ content: "";
+}
+
+.fa-quote-right:before {
+ content: "";
+}
+
+.fa-quran:before {
+ content: "";
+}
+
+.fa-r-project:before {
+ content: "";
+}
+
+.fa-random:before {
+ content: "";
+}
+
+.fa-ravelry:before {
+ content: "";
+}
+
+.fa-react:before {
+ content: "";
+}
+
+.fa-readme:before {
+ content: "";
+}
+
+.fa-rebel:before {
+ content: "";
+}
+
+.fa-receipt:before {
+ content: "";
+}
+
+.fa-recycle:before {
+ content: "";
+}
+
+.fa-red-river:before {
+ content: "";
+}
+
+.fa-reddit:before {
+ content: "";
+}
+
+.fa-reddit-alien:before {
+ content: "";
+}
+
+.fa-reddit-square:before {
+ content: "";
+}
+
+.fa-redo:before {
+ content: "";
+}
+
+.fa-redo-alt:before {
+ content: "";
+}
+
+.fa-registered:before {
+ content: "";
+}
+
+.fa-rendact:before {
+ content: "";
+}
+
+.fa-renren:before {
+ content: "";
+}
+
+.fa-reply:before {
+ content: "";
+}
+
+.fa-reply-all:before {
+ content: "";
+}
+
+.fa-replyd:before {
+ content: "";
+}
+
+.fa-researchgate:before {
+ content: "";
+}
+
+.fa-resolving:before {
+ content: "";
+}
+
+.fa-retweet:before {
+ content: "";
+}
+
+.fa-rev:before {
+ content: "";
+}
+
+.fa-ribbon:before {
+ content: "";
+}
+
+.fa-road:before {
+ content: "";
+}
+
+.fa-robot:before {
+ content: "";
+}
+
+.fa-rocket:before {
+ content: "";
+}
+
+.fa-rocketchat:before {
+ content: "";
+}
+
+.fa-rockrms:before {
+ content: "";
+}
+
+.fa-route:before {
+ content: "";
+}
+
+.fa-rss:before {
+ content: "";
+}
+
+.fa-rss-square:before {
+ content: "";
+}
+
+.fa-ruble-sign:before {
+ content: "";
+}
+
+.fa-ruler:before {
+ content: "";
+}
+
+.fa-ruler-combined:before {
+ content: "";
+}
+
+.fa-ruler-horizontal:before {
+ content: "";
+}
+
+.fa-ruler-vertical:before {
+ content: "";
+}
+
+.fa-rupee-sign:before {
+ content: "";
+}
+
+.fa-sad-cry:before {
+ content: "";
+}
+
+.fa-sad-tear:before {
+ content: "";
+}
+
+.fa-safari:before {
+ content: "";
+}
+
+.fa-sass:before {
+ content: "";
+}
+
+.fa-save:before {
+ content: "";
+}
+
+.fa-schlix:before {
+ content: "";
+}
+
+.fa-school:before {
+ content: "";
+}
+
+.fa-screwdriver:before {
+ content: "";
+}
+
+.fa-scribd:before {
+ content: "";
+}
+
+.fa-search:before {
+ content: "";
+}
+
+.fa-search-dollar:before {
+ content: "";
+}
+
+.fa-search-location:before {
+ content: "";
+}
+
+.fa-search-minus:before {
+ content: "";
+}
+
+.fa-search-plus:before {
+ content: "";
+}
+
+.fa-searchengin:before {
+ content: "";
+}
+
+.fa-seedling:before {
+ content: "";
+}
+
+.fa-sellcast:before {
+ content: "";
+}
+
+.fa-sellsy:before {
+ content: "";
+}
+
+.fa-server:before {
+ content: "";
+}
+
+.fa-servicestack:before {
+ content: "";
+}
+
+.fa-shapes:before {
+ content: "";
+}
+
+.fa-share:before {
+ content: "";
+}
+
+.fa-share-alt:before {
+ content: "";
+}
+
+.fa-share-alt-square:before {
+ content: "";
+}
+
+.fa-share-square:before {
+ content: "";
+}
+
+.fa-shekel-sign:before {
+ content: "";
+}
+
+.fa-shield-alt:before {
+ content: "";
+}
+
+.fa-ship:before {
+ content: "";
+}
+
+.fa-shipping-fast:before {
+ content: "";
+}
+
+.fa-shirtsinbulk:before {
+ content: "";
+}
+
+.fa-shoe-prints:before {
+ content: "";
+}
+
+.fa-shopping-bag:before {
+ content: "";
+}
+
+.fa-shopping-basket:before {
+ content: "";
+}
+
+.fa-shopping-cart:before {
+ content: "";
+}
+
+.fa-shopware:before {
+ content: "";
+}
+
+.fa-shower:before {
+ content: "";
+}
+
+.fa-shuttle-van:before {
+ content: "";
+}
+
+.fa-sign:before {
+ content: "";
+}
+
+.fa-sign-in-alt:before {
+ content: "";
+}
+
+.fa-sign-language:before {
+ content: "";
+}
+
+.fa-sign-out-alt:before {
+ content: "";
+}
+
+.fa-signal:before {
+ content: "";
+}
+
+.fa-signature:before {
+ content: "";
+}
+
+.fa-simplybuilt:before {
+ content: "";
+}
+
+.fa-sistrix:before {
+ content: "";
+}
+
+.fa-sitemap:before {
+ content: "";
+}
+
+.fa-sith:before {
+ content: "";
+}
+
+.fa-skull:before {
+ content: "";
+}
+
+.fa-skyatlas:before {
+ content: "";
+}
+
+.fa-skype:before {
+ content: "";
+}
+
+.fa-slack:before {
+ content: "";
+}
+
+.fa-slack-hash:before {
+ content: "";
+}
+
+.fa-sliders-h:before {
+ content: "";
+}
+
+.fa-slideshare:before {
+ content: "";
+}
+
+.fa-smile:before {
+ content: "";
+}
+
+.fa-smile-beam:before {
+ content: "";
+}
+
+.fa-smile-wink:before {
+ content: "";
+}
+
+.fa-smoking:before {
+ content: "";
+}
+
+.fa-smoking-ban:before {
+ content: "";
+}
+
+.fa-snapchat:before {
+ content: "";
+}
+
+.fa-snapchat-ghost:before {
+ content: "";
+}
+
+.fa-snapchat-square:before {
+ content: "";
+}
+
+.fa-snowflake:before {
+ content: "";
+}
+
+.fa-socks:before {
+ content: "";
+}
+
+.fa-solar-panel:before {
+ content: "";
+}
+
+.fa-sort:before {
+ content: "";
+}
+
+.fa-sort-alpha-down:before {
+ content: "";
+}
+
+.fa-sort-alpha-up:before {
+ content: "";
+}
+
+.fa-sort-amount-down:before {
+ content: "";
+}
+
+.fa-sort-amount-up:before {
+ content: "";
+}
+
+.fa-sort-down:before {
+ content: "";
+}
+
+.fa-sort-numeric-down:before {
+ content: "";
+}
+
+.fa-sort-numeric-up:before {
+ content: "";
+}
+
+.fa-sort-up:before {
+ content: "";
+}
+
+.fa-soundcloud:before {
+ content: "";
+}
+
+.fa-spa:before {
+ content: "";
+}
+
+.fa-space-shuttle:before {
+ content: "";
+}
+
+.fa-speakap:before {
+ content: "";
+}
+
+.fa-spinner:before {
+ content: "";
+}
+
+.fa-splotch:before {
+ content: "";
+}
+
+.fa-spotify:before {
+ content: "";
+}
+
+.fa-spray-can:before {
+ content: "";
+}
+
+.fa-square:before {
+ content: "";
+}
+
+.fa-square-full:before {
+ content: "";
+}
+
+.fa-square-root-alt:before {
+ content: "";
+}
+
+.fa-squarespace:before {
+ content: "";
+}
+
+.fa-stack-exchange:before {
+ content: "";
+}
+
+.fa-stack-overflow:before {
+ content: "";
+}
+
+.fa-stamp:before {
+ content: "";
+}
+
+.fa-star:before {
+ content: "";
+}
+
+.fa-star-and-crescent:before {
+ content: "";
+}
+
+.fa-star-half:before {
+ content: "";
+}
+
+.fa-star-half-alt:before {
+ content: "";
+}
+
+.fa-star-of-david:before {
+ content: "";
+}
+
+.fa-star-of-life:before {
+ content: "";
+}
+
+.fa-staylinked:before {
+ content: "";
+}
+
+.fa-steam:before {
+ content: "";
+}
+
+.fa-steam-square:before {
+ content: "";
+}
+
+.fa-steam-symbol:before {
+ content: "";
+}
+
+.fa-step-backward:before {
+ content: "";
+}
+
+.fa-step-forward:before {
+ content: "";
+}
+
+.fa-stethoscope:before {
+ content: "";
+}
+
+.fa-sticker-mule:before {
+ content: "";
+}
+
+.fa-sticky-note:before {
+ content: "";
+}
+
+.fa-stop:before {
+ content: "";
+}
+
+.fa-stop-circle:before {
+ content: "";
+}
+
+.fa-stopwatch:before {
+ content: "";
+}
+
+.fa-store:before {
+ content: "";
+}
+
+.fa-store-alt:before {
+ content: "";
+}
+
+.fa-strava:before {
+ content: "";
+}
+
+.fa-stream:before {
+ content: "";
+}
+
+.fa-street-view:before {
+ content: "";
+}
+
+.fa-strikethrough:before {
+ content: "";
+}
+
+.fa-stripe:before {
+ content: "";
+}
+
+.fa-stripe-s:before {
+ content: "";
+}
+
+.fa-stroopwafel:before {
+ content: "";
+}
+
+.fa-studiovinari:before {
+ content: "";
+}
+
+.fa-stumbleupon:before {
+ content: "";
+}
+
+.fa-stumbleupon-circle:before {
+ content: "";
+}
+
+.fa-subscript:before {
+ content: "";
+}
+
+.fa-subway:before {
+ content: "";
+}
+
+.fa-suitcase:before {
+ content: "";
+}
+
+.fa-suitcase-rolling:before {
+ content: "";
+}
+
+.fa-sun:before {
+ content: "";
+}
+
+.fa-superpowers:before {
+ content: "";
+}
+
+.fa-superscript:before {
+ content: "";
+}
+
+.fa-supple:before {
+ content: "";
+}
+
+.fa-surprise:before {
+ content: "";
+}
+
+.fa-swatchbook:before {
+ content: "";
+}
+
+.fa-swimmer:before {
+ content: "";
+}
+
+.fa-swimming-pool:before {
+ content: "";
+}
+
+.fa-synagogue:before {
+ content: "";
+}
+
+.fa-sync:before {
+ content: "";
+}
+
+.fa-sync-alt:before {
+ content: "";
+}
+
+.fa-syringe:before {
+ content: "";
+}
+
+.fa-table:before {
+ content: "";
+}
+
+.fa-table-tennis:before {
+ content: "";
+}
+
+.fa-tablet:before {
+ content: "";
+}
+
+.fa-tablet-alt:before {
+ content: "";
+}
+
+.fa-tablets:before {
+ content: "";
+}
+
+.fa-tachometer-alt:before {
+ content: "";
+}
+
+.fa-tag:before {
+ content: "";
+}
+
+.fa-tags:before {
+ content: "";
+}
+
+.fa-tape:before {
+ content: "";
+}
+
+.fa-tasks:before {
+ content: "";
+}
+
+.fa-taxi:before {
+ content: "";
+}
+
+.fa-teamspeak:before {
+ content: "";
+}
+
+.fa-teeth:before {
+ content: "";
+}
+
+.fa-teeth-open:before {
+ content: "";
+}
+
+.fa-telegram:before {
+ content: "";
+}
+
+.fa-telegram-plane:before {
+ content: "";
+}
+
+.fa-tencent-weibo:before {
+ content: "";
+}
+
+.fa-terminal:before {
+ content: "";
+}
+
+.fa-text-height:before {
+ content: "";
+}
+
+.fa-text-width:before {
+ content: "";
+}
+
+.fa-th:before {
+ content: "";
+}
+
+.fa-th-large:before {
+ content: "";
+}
+
+.fa-th-list:before {
+ content: "";
+}
+
+.fa-the-red-yeti:before {
+ content: "";
+}
+
+.fa-theater-masks:before {
+ content: "";
+}
+
+.fa-themeco:before {
+ content: "";
+}
+
+.fa-themeisle:before {
+ content: "";
+}
+
+.fa-thermometer:before {
+ content: "";
+}
+
+.fa-thermometer-empty:before {
+ content: "";
+}
+
+.fa-thermometer-full:before {
+ content: "";
+}
+
+.fa-thermometer-half:before {
+ content: "";
+}
+
+.fa-thermometer-quarter:before {
+ content: "";
+}
+
+.fa-thermometer-three-quarters:before {
+ content: "";
+}
+
+.fa-thumbs-down:before {
+ content: "";
+}
+
+.fa-thumbs-up:before {
+ content: "";
+}
+
+.fa-thumbtack:before {
+ content: "";
+}
+
+.fa-ticket-alt:before {
+ content: "";
+}
+
+.fa-times:before {
+ content: "";
+}
+
+.fa-times-circle:before {
+ content: "";
+}
+
+.fa-tint:before {
+ content: "";
+}
+
+.fa-tint-slash:before {
+ content: "";
+}
+
+.fa-tired:before {
+ content: "";
+}
+
+.fa-toggle-off:before {
+ content: "";
+}
+
+.fa-toggle-on:before {
+ content: "";
+}
+
+.fa-toolbox:before {
+ content: "";
+}
+
+.fa-tooth:before {
+ content: "";
+}
+
+.fa-torah:before {
+ content: "";
+}
+
+.fa-torii-gate:before {
+ content: "";
+}
+
+.fa-trade-federation:before {
+ content: "";
+}
+
+.fa-trademark:before {
+ content: "";
+}
+
+.fa-traffic-light:before {
+ content: "";
+}
+
+.fa-train:before {
+ content: "";
+}
+
+.fa-transgender:before {
+ content: "";
+}
+
+.fa-transgender-alt:before {
+ content: "";
+}
+
+.fa-trash:before {
+ content: "";
+}
+
+.fa-trash-alt:before {
+ content: "";
+}
+
+.fa-tree:before {
+ content: "";
+}
+
+.fa-trello:before {
+ content: "";
+}
+
+.fa-tripadvisor:before {
+ content: "";
+}
+
+.fa-trophy:before {
+ content: "";
+}
+
+.fa-truck:before {
+ content: "";
+}
+
+.fa-truck-loading:before {
+ content: "";
+}
+
+.fa-truck-monster:before {
+ content: "";
+}
+
+.fa-truck-moving:before {
+ content: "";
+}
+
+.fa-truck-pickup:before {
+ content: "";
+}
+
+.fa-tshirt:before {
+ content: "";
+}
+
+.fa-tty:before {
+ content: "";
+}
+
+.fa-tumblr:before {
+ content: "";
+}
+
+.fa-tumblr-square:before {
+ content: "";
+}
+
+.fa-tv:before {
+ content: "";
+}
+
+.fa-twitch:before {
+ content: "";
+}
+
+.fa-twitter:before {
+ content: "";
+}
+
+.fa-twitter-square:before {
+ content: "";
+}
+
+.fa-typo3:before {
+ content: "";
+}
+
+.fa-uber:before {
+ content: "";
+}
+
+.fa-uikit:before {
+ content: "";
+}
+
+.fa-umbrella:before {
+ content: "";
+}
+
+.fa-umbrella-beach:before {
+ content: "";
+}
+
+.fa-underline:before {
+ content: "";
+}
+
+.fa-undo:before {
+ content: "";
+}
+
+.fa-undo-alt:before {
+ content: "";
+}
+
+.fa-uniregistry:before {
+ content: "";
+}
+
+.fa-universal-access:before {
+ content: "";
+}
+
+.fa-university:before {
+ content: "";
+}
+
+.fa-unlink:before {
+ content: "";
+}
+
+.fa-unlock:before {
+ content: "";
+}
+
+.fa-unlock-alt:before {
+ content: "";
+}
+
+.fa-untappd:before {
+ content: "";
+}
+
+.fa-upload:before {
+ content: "";
+}
+
+.fa-usb:before {
+ content: "";
+}
+
+.fa-user:before {
+ content: "";
+}
+
+.fa-user-alt:before {
+ content: "";
+}
+
+.fa-user-alt-slash:before {
+ content: "";
+}
+
+.fa-user-astronaut:before {
+ content: "";
+}
+
+.fa-user-check:before {
+ content: "";
+}
+
+.fa-user-circle:before {
+ content: "";
+}
+
+.fa-user-clock:before {
+ content: "";
+}
+
+.fa-user-cog:before {
+ content: "";
+}
+
+.fa-user-edit:before {
+ content: "";
+}
+
+.fa-user-friends:before {
+ content: "";
+}
+
+.fa-user-graduate:before {
+ content: "";
+}
+
+.fa-user-lock:before {
+ content: "";
+}
+
+.fa-user-md:before {
+ content: "";
+}
+
+.fa-user-minus:before {
+ content: "";
+}
+
+.fa-user-ninja:before {
+ content: "";
+}
+
+.fa-user-plus:before {
+ content: "";
+}
+
+.fa-user-secret:before {
+ content: "";
+}
+
+.fa-user-shield:before {
+ content: "";
+}
+
+.fa-user-slash:before {
+ content: "";
+}
+
+.fa-user-tag:before {
+ content: "";
+}
+
+.fa-user-tie:before {
+ content: "";
+}
+
+.fa-user-times:before {
+ content: "";
+}
+
+.fa-users:before {
+ content: "";
+}
+
+.fa-users-cog:before {
+ content: "";
+}
+
+.fa-ussunnah:before {
+ content: "";
+}
+
+.fa-utensil-spoon:before {
+ content: "";
+}
+
+.fa-utensils:before {
+ content: "";
+}
+
+.fa-vaadin:before {
+ content: "";
+}
+
+.fa-vector-square:before {
+ content: "";
+}
+
+.fa-venus:before {
+ content: "";
+}
+
+.fa-venus-double:before {
+ content: "";
+}
+
+.fa-venus-mars:before {
+ content: "";
+}
+
+.fa-viacoin:before {
+ content: "";
+}
+
+.fa-viadeo:before {
+ content: "";
+}
+
+.fa-viadeo-square:before {
+ content: "";
+}
+
+.fa-vial:before {
+ content: "";
+}
+
+.fa-vials:before {
+ content: "";
+}
+
+.fa-viber:before {
+ content: "";
+}
+
+.fa-video:before {
+ content: "";
+}
+
+.fa-video-slash:before {
+ content: "";
+}
+
+.fa-vihara:before {
+ content: "";
+}
+
+.fa-vimeo:before {
+ content: "";
+}
+
+.fa-vimeo-square:before {
+ content: "";
+}
+
+.fa-vimeo-v:before {
+ content: "";
+}
+
+.fa-vine:before {
+ content: "";
+}
+
+.fa-vk:before {
+ content: "";
+}
+
+.fa-vnv:before {
+ content: "";
+}
+
+.fa-volleyball-ball:before {
+ content: "";
+}
+
+.fa-volume-down:before {
+ content: "";
+}
+
+.fa-volume-off:before {
+ content: "";
+}
+
+.fa-volume-up:before {
+ content: "";
+}
+
+.fa-vuejs:before {
+ content: "";
+}
+
+.fa-walking:before {
+ content: "";
+}
+
+.fa-wallet:before {
+ content: "";
+}
+
+.fa-warehouse:before {
+ content: "";
+}
+
+.fa-weebly:before {
+ content: "";
+}
+
+.fa-weibo:before {
+ content: "";
+}
+
+.fa-weight:before {
+ content: "";
+}
+
+.fa-weight-hanging:before {
+ content: "";
+}
+
+.fa-weixin:before {
+ content: "";
+}
+
+.fa-whatsapp:before {
+ content: "";
+}
+
+.fa-whatsapp-square:before {
+ content: "";
+}
+
+.fa-wheelchair:before {
+ content: "";
+}
+
+.fa-whmcs:before {
+ content: "";
+}
+
+.fa-wifi:before {
+ content: "";
+}
+
+.fa-wikipedia-w:before {
+ content: "";
+}
+
+.fa-window-close:before {
+ content: "";
+}
+
+.fa-window-maximize:before {
+ content: "";
+}
+
+.fa-window-minimize:before {
+ content: "";
+}
+
+.fa-window-restore:before {
+ content: "";
+}
+
+.fa-windows:before {
+ content: "";
+}
+
+.fa-wine-glass:before {
+ content: "";
+}
+
+.fa-wine-glass-alt:before {
+ content: "";
+}
+
+.fa-wix:before {
+ content: "";
+}
+
+.fa-wolf-pack-battalion:before {
+ content: "";
+}
+
+.fa-won-sign:before {
+ content: "";
+}
+
+.fa-wordpress:before {
+ content: "";
+}
+
+.fa-wordpress-simple:before {
+ content: "";
+}
+
+.fa-wpbeginner:before {
+ content: "";
+}
+
+.fa-wpexplorer:before {
+ content: "";
+}
+
+.fa-wpforms:before {
+ content: "";
+}
+
+.fa-wrench:before {
+ content: "";
+}
+
+.fa-x-ray:before {
+ content: "";
+}
+
+.fa-xbox:before {
+ content: "";
+}
+
+.fa-xing:before {
+ content: "";
+}
+
+.fa-xing-square:before {
+ content: "";
+}
+
+.fa-y-combinator:before {
+ content: "";
+}
+
+.fa-yahoo:before {
+ content: "";
+}
+
+.fa-yandex:before {
+ content: "";
+}
+
+.fa-yandex-international:before {
+ content: "";
+}
+
+.fa-yelp:before {
+ content: "";
+}
+
+.fa-yen-sign:before {
+ content: "";
+}
+
+.fa-yin-yang:before {
+ content: "";
+}
+
+.fa-yoast:before {
+ content: "";
+}
+
+.fa-youtube:before {
+ content: "";
+}
+
+.fa-youtube-square:before {
+ content: "";
+}
+
+.fa-zhihu:before {
+ content: "";
+}
+
+.sr-only {
+ border: 0;
+ clip: rect(0, 0, 0, 0);
+ height: 1px;
+ margin: -1px;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 1px;
+}
+
+.sr-only-focusable:active, .sr-only-focusable:focus {
+ clip: auto;
+ height: auto;
+ margin: 0;
+ overflow: visible;
+ position: static;
+ width: auto;
+}
+
+/*!
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;src:url("../fonts/FontAwesome5/fa-regular-400.eot");src:url("../fonts/FontAwesome5/fa-regular-400.eot?#iefix") format("embedded-opentype"),url("../fonts/FontAwesome5/fa-regular-400.woff2") format("woff2"),url("../fonts/FontAwesome5/fa-regular-400.woff") format("woff"),url("../fonts/FontAwesome5/fa-regular-400.ttf") format("truetype"),url("../fonts/FontAwesome5/fa-regular-400.svg#fontawesome") format("svg")}.far{font-family:"Font Awesome 5 Free";font-weight:400}/*!
+ */
+@font-face {
+ font-family: "Font Awesome 5 Free";
+ font-style: normal;
+ font-weight: 400;
+ src: url("../fonts/FontAwesome5/fa-regular-400.eot");
+ src: url("../fonts/FontAwesome5/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-regular-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-regular-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-regular-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-regular-400.svg#fontawesome") format("svg");
+}
+.far {
+ font-family: "Font Awesome 5 Free";
+ font-weight: 400;
+}
+
+/*!
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;src:url("../fonts/FontAwesome5/fa-solid-900.eot");src:url("../fonts/FontAwesome5/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../fonts/FontAwesome5/fa-solid-900.woff2") format("woff2"),url("../fonts/FontAwesome5/fa-solid-900.woff") format("woff"),url("../fonts/FontAwesome5/fa-solid-900.ttf") format("truetype"),url("../fonts/FontAwesome5/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:"Font Awesome 5 Free";font-weight:900}/*!
+ */
+@font-face {
+ font-family: "Font Awesome 5 Free";
+ font-style: normal;
+ font-weight: 900;
+ src: url("../fonts/FontAwesome5/fa-solid-900.eot");
+ src: url("../fonts/FontAwesome5/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-solid-900.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-solid-900.woff") format("woff"), url("../fonts/FontAwesome5/fa-solid-900.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-solid-900.svg#fontawesome") format("svg");
+}
+.fa,
+.fas {
+ font-family: "Font Awesome 5 Free";
+ font-weight: 900;
+}
+
+/*!
* Font Awesome Free 5.3.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
- */@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url("../fonts/FontAwesome5/fa-brands-400.eot");src:url("../fonts/FontAwesome5/fa-brands-400.eot?#iefix") format("embedded-opentype"),url("../fonts/FontAwesome5/fa-brands-400.woff2") format("woff2"),url("../fonts/FontAwesome5/fa-brands-400.woff") format("woff"),url("../fonts/FontAwesome5/fa-brands-400.ttf") format("truetype"),url("../fonts/FontAwesome5/fa-brands-400.svg#fontawesome") format("svg")}.fab{font-family:"Font Awesome 5 Brands"}body{font-family:Montserrat,sans-serif}.as_link{color:#1e88e5;text-decoration:none;cursor:pointer;display:inline}.as_link:hover{color:#ffa608;text-decoration:none}.link{color:#1e88e5;cursor:pointer}.link:hover{color:#ffa608}.pointer{cursor:pointer}.bold{font-weight:600}.strong{font-weight:600}strong{font-weight:600}b{font-weight:600}.semibold{font-weight:500}.autoWidth{width:auto}.autoWidth p{width:auto}.textItalic{font-style:italic;font-weight:normal !important}.italic{font-style:italic;font-weight:normal !important}.spaceLeft{margin-left:8px !important}.spaceLeftBig{margin-left:20px !important}.spaceRight{margin-right:8px !important}.spaceRightBig{margin-right:20px !important}.inline{display:inline}.fullHeight{height:100%}.fullWidth{width:100%}.halfWidth{width:50%}.taLeft{text-align:left}.taRight{text-align:right}.taCenter{text-align:center}.hidden{display:none !important}.clr{clear:both;padding:0px;margin:0px;height:0px}.clr:after{content:".";display:block;height:0;clear:both;visibility:hidden}.floatLeft{float:left;display:block;width:auto}.floatRight{float:right;display:block;width:auto}.displayTop{position:absolute;top:10px;right:10px}.displayNone{display:none}.displayBlock{display:block !important}.link_no_decoration a{color:#1e88e5;text-decoration:none}.link_no_decoration a:hover{color:#1e88e5;text-decoration:none}.link_no_decoration a:visited{color:#1e88e5;text-decoration:none}.visibility_hidden{visibility:hidden}.small{font-size:smaller}.movable{cursor:move}.move{cursor:move}.moveY{cursor:n-resize}.enkaIcon{padding:3px 2px 2px 2px !important}label.middle input{vertical-align:bottom}label.top input{vertical-align:top}.highlight{font-weight:bold}.down{line-height:16px;vertical-align:bottom;padding-top:2px}.noMargin{margin:0;padding:0}div.left-float{display:inline-block;float:left;padding-bottom:3px;padding-right:10px}.relative{position:relative}li.highlightLineTab a{background-color:#fff;border-bottom:medium none;padding-bottom:2px}li.highlightLineTab a span{font-weight:bold;color:#900}.option{border-bottom:1px solid #fff}.div_error{padding:10px;margin:3px;background-color:#f5fafe}.div_error img{margin-right:5px}a.help{font-size:11px;font-weight:bold;color:#1e88e5}a.help:hover{text-decoration:none;color:#ffa608}a.edithelp{font-size:11px;font-weight:bold;color:#1e88e5}a.edithelp:VISITED{color:#1e88e5}a.edithelp:hover{text-decoration:none}.z-index200{z-index:200 !important}.editable[contenteditable=true]{border:1px solid #fff}.editable[contenteditable=true]:hover{background-color:#f5fafe;border:1px solid #c8e3f8}.editable[contenteditable=true]:focus{background-color:#f5fafe;border:1px dashed #409ee7;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.tab{background-color:#fff}.link-sv-moder{color:#c8e3f8}.link-sv-moder:hover{color:#1e88e5}.link-rdec{color:#ee9800}span.buttonwrapper a{cursor:pointer;display:block;padding:5px 12px 6px;background-color:#1e88e5;border-radius:20px;border:1px #1e88e5 solid;transition:.1s}span.buttonwrapper a:hover{background-color:#ffa608;border:1px #ffa608 solid}span.buttonwrapper a.ovalbutton_gray{cursor:pointer;padding:5px 12px 6px;color:#1e88e5 !important;background-color:#fff;border:1px #1e88e5 solid;transition:.1s}span.buttonwrapper a.ovalbutton_gray:hover{background-color:#1e88e5 !important;color:#fff !important}div.buttonwrapper a{cursor:pointer;display:block;padding:5px 12px 6px;background-color:#1e88e5;border-radius:20px;border:1px #1e88e5 solid;transition:.1s}div.buttonwrapper a:hover{background-color:#ffa608;border:1px #ffa608 solid}div.buttonwrapper a.ovalbutton_gray{cursor:pointer;padding:5px 20px 6px;color:#1e88e5 !important;background-color:#fff;border:1px #1e88e5 solid;transition:.1s}div.buttonwrapper a.ovalbutton_gray:hover{background-color:#1e88e5 !important;color:#fff !important}div.buttonwrapper.ovalbutton_gray a{transition:.1s}div.buttonwrapper.ovalbutton_gray a:hover{background-color:#1e88e5 !important;color:#fff !important}a.ovalbutton{cursor:pointer;color:#fff !important;font-size:11px}a.ovalbutton .button .blue{background-color:#1e88e5}a.ovalbutton .button .lightblue{background-color:#3e99e9}a.ovalbutton .button .orange{background-color:#ffa608}.red{color:red !important}.lightRed{color:#ff5757 !important}.orange{color:#ffa608 !important}.blue{color:#1e88e5 !important}.gray{color:#a9a9a9 !important}.silver{color:silver !important}.green{color:green !important}.green a{color:green !important}.clr_if{color:#1e88e5 !important}.clr_bl{color:purple !important}.clr_lp{color:#d5e9fa !important}.colorif{color:#409ee7}.colorblock{color:purple}.colorloop{color:#d5e9fa}.colorvariable{color:#333;font-weight:bold}.calculationvariable{color:#d48800;font-weight:bold}.quotavariable{color:red;font-weight:bold}.dds_hover{border:1px dashed #d48800}.holder{border:1px dashed #333;background:#fff}.left{float:left}.right{float:right}.white{background-color:#fff !important}.cellGreen{background-color:#e6ffcc}.cellYellow{background-color:ivory}.cellBlue{background-color:#d7f4fa}.cellRed{background-color:#fad7d7}.mobile_header{display:none}#logo{position:absolute;left:15px;top:12px}#enka_logo{display:block;background-image:url(../img/logo/1ka_slo.svg);background-repeat:no-repeat;width:72px;height:41px;margin:0;padding:0}#enka_logo.english{background-image:url(../img/logo/1ka_eng.svg);background-repeat:no-repeat}body.body_anketa #logo{left:0px;top:0px;width:31px;height:42px;padding:12px 15px}body.body_anketa #enka_logo{display:block;background-image:url(../img/logo/1ka_slo.svg);background-repeat:no-repeat;width:72px;height:41px;margin:0;padding:0}body.body_anketa #enka_logo.english{background-image:url(../img/logo/1ka_eng.svg);background-repeat:no-repeat}body.body_anketa #topLine2{margin:0;padding-left:50px;height:66px;font-size:13px;vertical-align:middle}#topLine2{margin:0px;height:66px;font-size:13px}#topLine2 .borderLeft{padding-left:10px}#anketa_naslov{display:inline-block;margin-top:21px;padding:0 0 0 55px;font-size:17px}#anketa_naslov a{color:gray;text-decoration:none;font-weight:600;padding-left:15px}#anketa_naslov.anketa_img_nav{white-space:nowrap}#anketa_url{font-size:15px;color:silver}#anketa_url img{padding-right:5px}#anketa_url a{color:#1e88e5 !important;font-weight:400}#anketa_url a:VISITED{color:#1e88e5 !important;font-weight:400}#anketa_url a:HOVER{color:#ffa608 !important;text-decoration:none}.anketa_url_bottom{font-size:11px;color:silver;padding-left:10px}#anketa_aktivacija img{padding-right:5px}#anketa_activation{padding:0 5px 0 15px}.request-help{margin-left:10px}.quick-settings{margin-left:10px}#anketa_active{height:auto;width:auto;min-width:1002px;background-color:#fff}#anketa_active.newCss{border:none}#anketa_active.folders{border:none}.switch_anketa{position:relative;display:inline-block;width:50px;height:18px;margin:0 3px -2px 0;color:#fff;font-size:11px;font-weight:600}.switch_anketa .switch_anketa_content{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;padding-top:2px;background-color:#1e88e5;border-radius:20px}.switch_anketa .switch_anketa_content:before{position:absolute;content:"";height:14px;width:14px;bottom:2px;background-color:#fff;border-radius:50%}.switch_anketa.anketa_on .switch_anketa_content{padding-left:9px;background-color:#1e88e5}.switch_anketa.anketa_on .switch_anketa_content:before{right:2px}.switch_anketa.anketa_on:hover .switch_anketa_content{background-color:#ffa608}.switch_anketa.anketa_off .switch_anketa_content{padding-left:19px;background-color:#6cb1ee}.switch_anketa.anketa_off .switch_anketa_content:before{left:2px}.switch_anketa.anketa_off:hover .switch_anketa_content{background-color:#1e88e5}input#searchSurvey{display:none;width:150px;padding:3px 0 3px 5px;margin-top:-8px;border:1px solid #c8e3f8}#enka_nav{display:inline-block;position:absolute;top:21px;right:17px;text-align:right;margin-top:0px;height:25px}#enka_nav #search_holder{display:inline-block;vertical-align:middle}#enka_nav #help_holder{display:inline-block;vertical-align:middle;margin-left:12px}#enka_nav #fieldwork_holder{display:inline-block;vertical-align:middle;margin-left:12px}#enka_nav #notification_holder{display:inline-block;vertical-align:middle;margin-left:12px}span.sprites.mail_unread{color:#fff;font-size:11px;font-weight:bold;line-height:23px;text-align:center;text-indent:10px}#xtradiv{display:inline-block;width:auto;margin-left:15px;vertical-align:middle}#xtradiv .xtraname{cursor:pointer;display:inline-block;width:auto;padding:0 15px 2px 0;font-weight:500;color:#1e88e5}#xtradiv .xtraname:hover{color:#ffa608}#xtradiv #xtradivSettings{display:none;position:absolute;z-index:99999;right:8px;top:35px;padding:5px 10px;width:120px;text-align:left;background-color:#fff;border:1px #c8e3f8 solid;-webkit-box-shadow:0 5px 15px 0 rgba(0,0,0,.4);box-shadow:0 5px 15px 0 rgba(0,0,0,.4);-moz-box-shadow:0 5px 15px 0 rgba(0,0,0,.4)}#xtradiv #xtradivSettings span.xtraSetting{clear:both;float:left;padding:6px 0}#xtradiv #xtradivSettings span.xtraSetting a.xtra{display:inline;vertical-align:middle;font-size:13px;color:#4d4d4d}#xtradiv #xtradivSettings span.xtraSetting a.xtra:hover{color:#ffa608}#xtradiv #xtradivSettings span.xtraSetting a.xtra:hover .faicon{color:#ffa608}#xtradiv #xtradivSettings span.xtraSetting a.xtra span.faicon{display:inline;vertical-align:middle;margin-right:10px}.tooltip{position:relative}.tooltip .expanded-tooltip{display:none;white-space:normal}.tooltip:hover .expanded-tooltip{display:block}.tooltip.monitor{cursor:pointer}#srv_footer{display:flex;justify-content:space-between;box-sizing:border-box;width:100%;padding:15px 20px;margin-top:30px;font-size:13px;line-height:22px;background-color:#f5fafe;border-top:1px solid #c8e3f8}#srv_footer .footer_left{text-align:left}#srv_footer .footer_right{text-align:left;font-weight:500}#srv_footer .footer_right span.faicon.inline_comment:before{font-size:18px !important;vertical-align:-2px !important;margin-right:3px}#srv_footer .footer_right span.faicon.external_link:before{font-size:16px !important;vertical-align:-1px !important;margin-right:3px}#srv_news{float:left;width:250px}#srv_faq{float:left;width:250px}#srv_tutorial{float:left;width:250px}#version{width:100%;text-align:center;clear:both;padding:20px 0 15px 0;background-color:#f5fafe;font-size:10px;color:#1e88e5}#surveyNavigation{width:auto;height:60px;padding:0px;margin:0px;background-color:#c8e3f8;min-width:1002px}#firstNavigation{height:50px;width:100%;font-size:15px;line-height:26px;text-align:center;padding-top:10px}#firstNavigation #mojeAnketeLink a{position:absolute;left:0;padding:0 25px;z-index:10;color:#333;background-color:#c8e3f8;transition:.2s}#firstNavigation #mojeAnketeLink a span.sprites{margin:0 7px 3px 0}#firstNavigation #mojeAnketeLink a span.library_link{line-height:50px}#firstNavigation #mojeAnketeLink a:hover{background:#dfeffb}#firstNavigation #mojeAnketeLink .left-1ka{margin-left:40px !important;height:50px}#firstNavigation ol{margin:0px;padding:0px;display:inline}#firstNavigation ol li{display:inline;float:left;list-style-image:none;list-style-position:outside;list-style-type:none}#firstNavigation ol li #status_link_off{padding:0 25px;height:50px;line-height:50px;color:#333;background-color:#c8e3f8;transition:.2s}#firstNavigation ol li #status_link_off span.status_link{display:inline-block;margin-right:5px}#firstNavigation ol li #status_link_off span.faicon{margin:0 10px 0 0;position:relative;top:-2px}#firstNavigation ol li #status_link_off:hover{background:#dfeffb}#firstNavigation ol li #status_link_on{padding:5px 25px;color:#333;background-color:#fff}#firstNavigation ol li #status_link_on span.status_link{display:inline-block;line-height:40px;margin-right:5px}#firstNavigation ol li #status_link_on span.faicon{margin:0 10px 0 0;position:relative;top:-2px}#firstNavigation ol li a div.smaller-singlebutton-off{line-height:50px;padding:0px 25px;background:none;border:0;background:none;color:#333;transition:.2s}#firstNavigation ol li a div.smaller-singlebutton-off:hover{background:#dfeffb}#firstNavigation ol li a div.smaller-singlebutton-on{line-height:50px;padding:0px 25px;background:none;border:0;background:#fff;color:#333}#firstNavigation ol.left-side.right-space{background-color:#c8e3f8}#firstNavigation ol.right-space{margin-left:182px}#firstNavigation ol.left-side{float:left}#firstNavigation li.spaceLarge{width:100px}#firstNavigation li.space{width:10px}#firstNavigation ol.smaller{line-height:26px;margin:0px 10px 0px 10px}#firstNavigation ol.help-1ka{margin-left:20px !important}#firstNavigation ol.help-1ka a{display:inline-block}#firstNavigation ol.help-1ka .smaller-singlebutton-off{color:#ffa608 !important;transition:.2s}#firstNavigation ol.help-1ka .smaller-singlebutton-off:hover{color:#ffb83b !important}#firstNavigation ol.help-1ka .smaller-singlebutton-on{color:#ffa608 !important}#firstNavigation ol.left-1ka{margin-left:40px !important}#firstNavigation ol.right-side{float:right;margin-right:20px !important;margin-top:10px}#firstNavigation .left-off{display:none}#firstNavigation .left-on{display:none}#firstNavigation .right-off{display:none}#firstNavigation .right-on{float:left;height:50px;width:18px;background-image:url("../../../admin/survey/img_new/sprites.png");background-position:-17px -74px;background-repeat:no-repeat}#firstNavigation .step-on{float:left;height:50px;line-height:50px;padding:0px 25px;background-color:#fff;color:#333}#firstNavigation .step-off{float:left;height:50px;line-height:50px;width:auto;padding:0px 25px;background-color:#c8e3f8;color:#333;transition:.2s}#firstNavigation .step-off:hover{background:#dfeffb}#firstNavigation .separator{height:38px;width:2px}#firstNavigation ol.quick_settings li{float:right;margin:4px 5px 0 0}#firstNavigation ol.quick_settings li:first-of-type{margin-right:30px}#firstNavigation.frontpage{margin-left:0px;height:50px;font-size:15px}#firstNavigation.frontpage .sprites{margin:0 6px 2px 0}#firstNavigation.frontpage li.spaceLarge{width:50px}#firstNavigation.frontpage li.spaceBig{width:2px}#firstNavigation.frontpage ol.help-1ka{display:none}#quick_comments_link.newCss{font-size:12px;margin-top:3px !important;margin-right:5px !important}#quick_comments_link.newCss a{margin-right:0px !important;color:#1e88e5 !important;font-weight:600}#quick_comments_link.newCss a:hover{color:#ffa608 !important}#quick_comments_link.newCss a span.comments_blue_off{margin-top:4px !important}#quick_comments_link.newCss a span.comments_orange_off{margin-top:4px !important}#quick_comments_link.newCss a span.comments_blue_on{margin-top:-1px !important}#quick_comments_link.newCss a span.comments_orange_on{margin-top:-1px !important}span.sprites.comments_blue_on{color:#fff;font-size:11px;font-weight:bold;line-height:12px;text-align:center}span.sprites.comments_orange_on{color:#fff;font-size:11px;font-weight:bold;line-height:12px;text-align:center}div#secondNavigation{display:block;z-index:1;left:0px;right:0px;padding:8px 20px 0 145px;height:33px;border-bottom:1px solid #c8e3f8;background-color:#fff}ul.secondNavigation{display:inline-block;float:left;width:auto;margin-top:1px !important;margin-bottom:0}.secondNavigation{display:inline-block;list-style-image:none;list-style-position:outside;list-style-type:none;padding:0px;width:100%}.secondNavigation li{display:list-item;float:left;padding:0px;margin:0px}.secondNavigation .blank{height:12px;width:6px}.secondNavigation .no-img{padding:0px 12px !important;background-image:none !important}.secondNavigation a{display:block;line-height:30px;font-size:14px;color:gray}.secondNavigation a:hover{border-bottom:2px solid #ffa608}.secondNavigation a.active{color:#ffa608;background-color:inherit;border-bottom:2px solid #ffa608}.secondNavigation .side-left{padding-left:10px}.secondNavigation .side-right{padding-right:12px}.secondNavigation .space{width:20px;height:19px;padding:0px}.secondNavigation .single{padding:0px 12px 0px 24px¸}.secondNavigation .single:hover{text-shadow:0px 1px 0px #fff}.secondNavigation .single:active{color:gray}div#secondNavigation.library{padding-left:35px}div#secondNavigation.library a{font-size:14px}div#secondNavigation.library ul.secondNavigation .space{width:25px}#secondNavigation_links{position:relative;float:right;width:auto;margin-top:-7px;line-height:38px;z-index:2;text-align:right}#secondNavigation_links #hover_export{display:none;position:absolute;z-index:99999;right:10px;top:39px;padding:5px 0 5px 13px;width:180px;text-align:left;line-height:normal;background-color:#fff;border:1px #c8e3f8 solid;-webkit-box-shadow:0 5px 15px 0 rgba(0,0,0,.4);box-shadow:0 5px 15px 0 rgba(0,0,0,.4);-moz-box-shadow:0 5px 15px 0 rgba(0,0,0,.4)}#secondNavigation_links #hover_export a{display:block;padding:6px 0;color:#606060;font-size:14px;transition:.2s}#secondNavigation_links #hover_export a:hover{color:#ffa608}#secondNavigation_links #hover_export span.hover_export_icon{display:inline-block;width:40px}ul.secondNavigationArchive{display:inline-block;float:left;width:auto;padding:0px;margin:0 0 0 10px !important;padding-left:23px;padding-top:0px;font-size:14px;list-style-image:none;list-style-position:outside;list-style-type:none;border-left:1px dotted #c8e3f8}ul.secondNavigationArchive li{display:list-item;padding:0 12px;float:left;margin:0px;transition:.2s}ul.secondNavigationArchive li a{color:gray;line-height:31px}ul.secondNavigationArchive li a.active{color:#ffa608}ul.secondNavigationArchive li:hover{border-bottom:2px solid #ffa608}ul.secondNavigationArchive li.aactive{border-bottom:2px solid #ffa608}a.srv_ico{display:inline-block;margin-right:13px}span.faicon,a.faicon{font-family:"Font Awesome 5 Free";font-size:inherit;color:inherit;display:inline-block;font-weight:900}span.faicon.icon-center{text-align:center;width:100%;height:100%}span.faicon.icon-inline{width:auto !important}span.faicon.normal,span.faicon.normal::before{font-size:16px !important}span.faicon.small,span.faicon.small::before{font-size:14px !important}span.faicon.smaller,span.faicon.smaller::before{font-size:15px !important}span.faicon.large,span.faicon.large::before{font-size:18px !important}span.faicon.very_large,span.faicon.very_large::before{font-size:24px !important}span.faicon.icon-blue{color:#1e88e5 !important}span.faicon.icon-white{color:#fff !important}span.faicon.icon-as_link{color:#1e88e5;cursor:pointer}span.faicon.icon-as_link:hover{color:#ffa608}span.icon-as_link{color:#1e88e5;cursor:pointer}span.icon-as_link:hover{color:#ffa608}span.faicon.icon-blue_dark{color:#166dba !important}span.faicon.icon-blue_light{color:#6cb1ee !important}span.faicon.icon-orange{color:#ffa608 !important}span.faicon.icon-orange_hover_red{color:#ffa608 !important}span.faicon.icon-orange_hover_red:hover{color:red !important}span.faicon.icon-orange_very_dark{color:#d48800 !important}span.faicon.icon-blue_soft{color:#c8e3f8 !important}span.faicon.icon-blue_soft_link{color:#c8e3f8 !important;cursor:pointer}span.faicon.icon-blue_soft_link:hover{color:#ffa608 !important}span.faicon.icon-grey_normal{color:gray !important}span.faicon.icon-grey_dark_link{color:#606060 !important;cursor:pointer}span.faicon.icon-grey_dark_link:hover{color:#ffa608 !important}span.faicon.icon-grey_dark_link_reverse{color:#ffa608 !important;cursor:pointer}span.faicon.icon-grey_dark_link_reverse:hover{color:#606060 !important}span.faicon.icon-orange_link{color:#ffa608 !important;cursor:pointer}span.faicon.icon-orange_link:hover{color:#ee9800 !important}.custom_radio{display:inline-block}.custom_radio>label>input[type=radio]{display:none}input[type=radio]+span.enka-custom-radio{font-family:"Font Awesome 5 Free";font-size:20px}.enka-custom-radio::before{letter-spacing:10px;color:#d3d3d3}.enka-custom-radio.star::before{content:""}.enka-custom-radio.thumb::before{content:""}.enka-custom-radio.smiley::before{content:""}.enka-custom-radio.heart::before{content:""}.enka-custom-radio.flag::before{content:""}.enka-custom-radio.user::before{content:""}.enka-vizualna-skala::before{font-family:"Font Awesome 5 Free";font-size:20px;letter-spacing:10px;color:#d3d3d3}.enka-vizualna-skala.siv-61::before,.enka-vizualna-skala.siv-71::before{content:""}.enka-vizualna-skala.siv-41::before,.enka-vizualna-skala.siv-51::before,.enka-vizualna-skala.siv-62::before,.enka-vizualna-skala.siv-72::before{content:""}.enka-vizualna-skala.siv-21::before,.enka-vizualna-skala.siv-31::before,.enka-vizualna-skala.siv-42::before,.enka-vizualna-skala.siv-52::before,.enka-vizualna-skala.siv-63::before,.enka-vizualna-skala.siv-73::before{content:""}.enka-vizualna-skala.siv-32::before,.enka-vizualna-skala.siv-53::before,.enka-vizualna-skala.siv-74::before{content:""}.enka-vizualna-skala.siv-22::before,.enka-vizualna-skala.siv-33::before,.enka-vizualna-skala.siv-43::before,.enka-vizualna-skala.siv-54::before,.enka-vizualna-skala.siv-64::before,.enka-vizualna-skala.siv-75::before{content:""}.enka-vizualna-skala.siv-44::before,.enka-vizualna-skala.siv-55::before,.enka-vizualna-skala.siv-65::before,.enka-vizualna-skala.siv-76::before{content:""}.enka-vizualna-skala.siv-66::before,.enka-vizualna-skala.siv-77::before{content:""}span.faicon.plus::before{content:""}span.faicon.minus::before{content:""}span.faicon.close::before{font-size:18px;font-weight:400;content:""}span.faicon.dropdown_blue::before{font-size:16px;content:""}span.faicon.dropup_blue::before{font-size:16px;content:""}span.faicon.arrow_back::before{font-weight:600;font-size:16px;content:""}span.faicon.add::before{font-size:18px;content:""}span.faicon.remove::before{font-size:18px;content:""}span.faicon.delete::before{font-size:18px;font-weight:400;content:""}span.faicon.anketa_delete::before{font-size:24px;font-weight:400;content:""}span.faicon.copy::before{font-size:18px;content:"";font-weight:400}span.faicon.anketa_copy::before{font-size:24px;content:"";font-weight:400}span.faicon.export::before{font-size:24px;content:""}span.faicon.import{width:32px}span.faicon.import::before{font-size:24px;font-weight:400;content:""}span.faicon.import::after{font-size:14px;content:"";display:inline-block}span.faicon.library::before{font-size:24px;content:""}span.faicon.folder::before{font-size:22px;content:"";vertical-align:middle}span.faicon.after.sort_down_arrow::after{content:"";margin-left:5px}span.faicon.after.sort_up_arrow::after{content:"";margin-left:5px}span.faicon.info::before{font-size:28px;content:"";vertical-align:middle}span.faicon.pagination_left::before{margin:0 1px 0 1px;content:""}span.faicon.pagination_right::before{margin:0 0 0 1px;content:""}span.faicon.edit::before{font-size:16px;content:""}span.faicon.refresh::before{font-size:18px;content:""}span.faicon.filter::before{font-size:18px;content:""}span.faicon.star::before,span.faicon.star_off::before{font-size:14px;font-weight:400;content:""}span.faicon.star_on::before{font-size:14px;font-weight:700;content:""}span.faicon.search::before{font-size:20px;content:""}span.faicon.help2::before{font-size:20px;content:""}span.faicon.user::before{font-size:18px;content:""}span.faicon.logout::before{font-size:20px;content:""}span.faicon.monitor::before{font-size:18px;content:""}span.faicon.users::before{font-size:18px;content:""}span.faicon.lock_open::before{font-size:18px;content:""}span.faicon.lock_close::before{font-size:18px;content:""}span.faicon.bottom_saving::before{font-size:24px;font-weight:400;content:""}span.faicon.bottom_publish::before{font-size:24px;content:""}span.faicon.bottom_preview{width:20px}span.faicon.bottom_preview::before{font-size:24px;font-weight:400;content:""}span.faicon.bottom_preview::after{font-size:14px;content:"";display:inline-block;margin-left:-70%}span.faicon.bottom_test::before{font-size:24px;content:""}span.faicon.language::before{font-size:24px;content:""}span.faicon.mobile_off::before{font-size:24px;content:""}span.faicon.mobile_off::after{font-size:24px;content:"";margin-left:-23px}span.faicon.comments::before{font-size:24px;content:""}span.faicon.comments_num::before{font-size:24px;content:""}span.faicon.comments_num strong{color:#fff;font-family:Montserrat,sans-serif;margin-top:-2px}span.faicon.data_link::before{font-size:20px;content:""}span.faicon.data_link_small::before{font-size:16px;content:""}span.faicon.print::before{font-size:24px;content:""}span.faicon.print_small::before{font-size:16px;content:""}span.faicon.preview{width:18px}span.faicon.preview::before{font-size:18px;font-weight:400;content:""}span.faicon.preview::after{content:"";display:inline-block;font-size:11px;margin-left:-50%}span.faicon.palette::before{font-size:18px;content:""}span.faicon.inline_comment::before{font-size:14px;font-weight:400;content:""}span.faicon.inline_double_comment::before{font-size:14px;font-weight:400;content:""}span.faicon.comments_creport::before{font-size:16px;content:""}span.faicon.compress::before{font-size:15px;content:""}span.faicon.expand::before{font-size:15px;content:""}span.faicon.hashtag::before{font-size:15px;content:""}span.faicon.bug::before{font-size:15px;content:""}span.faicon.paragraph::before{font-size:15px;content:""}span.faicon.replace::before{font-size:15px;content:""}span.faicon.plus_square::before{font-size:15px;font-weight:400;content:""}span.faicon.minus_square::before{font-size:15px;font-weight:400;content:""}span.faicon.delete_circle::before{font-size:14px;content:""}span.faicon.quick_view::before{font-size:15px;font-weight:400;content:""}span.faicon.edit_square::before{font-size:15px;content:""}span.faicon.test::before{font-size:15px;content:""}a.faicon.if_add{font-size:12px;font-family:Montserrat,sans-serif;font-weight:400}a.faicon.if_add:before{background-color:#1e88e5;font-weight:500;padding:2px 4px;color:#fff;content:"IF"}a.faicon.if_add:hover:before{background-color:#ffa608}span.faicon.if_add{font-size:12px;font-family:Montserrat,sans-serif;font-weight:400}span.faicon.if_add:before{background-color:#1e88e5;font-weight:500;padding:2px 4px;color:#fff;content:"IF"}span.faicon.if_add:hover:before{background-color:#ffa608}span.faicon.text_file::before{font-size:24px;font-weight:400;content:""}span.faicon.text_file_small{height:20px;vertical-align:middle}span.faicon.text_file_small:before{font-size:18px;font-weight:400;content:""}span.faicon.warning::before{font-size:16px;content:""}span.faicon.users_small::before{font-size:16px;content:""}span.faicon.popup_0::before{font-size:14px;content:"";color:#c8e3f8}span.faicon.popup_1::before{font-size:14px;content:"";color:#1e88e5}span.faicon.flat_0::before{font-size:14px;content:"";color:#1e88e5}span.faicon.flat_1::before{font-size:14px;content:"";color:#c8e3f8}span.basic-icon.spss::before{content:"Σ";line-height:26px;vertical-align:bottom;font-size:30px !important;font-weight:bold}span.faicon.external_link::before{font-size:14px;font-weight:600;content:""}span.faicon.cog_large::before{font-size:34px;font-weight:600;content:""}span.faicon.chart_large::before{font-size:34px;font-weight:600;content:""}span.faicon.reload_large::before{font-size:34px;font-weight:600;content:""}span.faicon.calendar_icon::before,button.ui-datepicker-trigger::before{font-family:"Font Awesome 5 Free";font-weight:400;font-size:16px;content:""}span.faicon.arrow_up::before{font-size:14px;content:"";color:#333}span.faicon.arrow2_r::before{font-size:14px;content:""}span.faicon.arrow2_l::before{font-size:14px;content:""}span.faicon.arrow2_d::before{font-size:14px;content:""}span.faicon.arrow2_u::before{font-size:14px;content:""}span.faicon.arrow_large2_r::before{font-size:35px;content:""}span.faicon.arrow_large2_l::before{font-size:35px;content:""}span.faicon.arrow_verylarge2_r::before{font-size:40px;content:""}span.faicon.arrow_verylarge2_l::before{font-size:40px;content:""}span.faicon.sort_descending::before{font-size:14px;content:""}span.faicon.sort_ascending::before{font-size:14px;content:""}span.folder_plusminus{text-indent:0px !important;font-style:normal !important}span.faicon.plus_orange::before{font-size:12px;font-weight:400;content:""}span.faicon.minus_orange::before{font-size:12px;font-weight:400;content:""}span.faicon.spinner::before{font-size:18px;content:""}span.faicon.bars::before{font-size:26px;content:""}span.module_icon{padding:0 6px;color:#fff;font-weight:600;font-size:17px;background-color:#ffb83b;border:2px #ffa608 solid}span.module_icon.maza::before{content:"MAZA"}span.module_icon.wpn::before{content:"WPN"}span.module_icon.panel::before{content:"Panel"}span.module_icon.telephone::before{content:"TEL"}span.module_icon.slideshow::before{content:"SS"}span.module_icon.evalvation::before{content:"EVAL"}span.module_icon.vnos::before{content:"V"}span.module_icon.social::before{content:"SN"}span.module_icon.quiz::before{content:"Q"}span.module_icon.voting::before{content:"VOTE"}span.module_icon.advanced_paradata::before{content:"AP"}span.module_icon.chat::before{content:"C"}span.module_icon.degrees_1ka::before{content:"360"}span.module_icon.mju::before{content:"H"}span.module_icon.sa-hierarhija::before{content:"SA"}span.module_icon.degrees::before{content:"360"}span.module_icon.borza::before{content:"Borza"}span.module_icon.evoli::before{content:"Evoli"}span.module_icon.evoli_teammeter::before{content:"Evoli TM"}span.module_icon.evoli_quality_climate::before{content:"Evoli QC"}span.module_icon.evoli_teamship_meter::before{content:"Evoli TSM"}span.module_icon.evoli_organizational_employeeship_meter::before{content:"Evoli OEM"}span.module_icon.evoli_employmeter::before{content:"Evoli EM"}span.module_icon.excell_matrix::before{content:"EM"}span.module_icon.mfdps::before{content:"MFDPS"}span.module_icon.mju::before{content:"MJU"}span.module_icon.gdpr{color:#6cb1ee;background-color:#c8e3f8;border:2px #6cb1ee solid}span.module_icon.gdpr:hover{color:#1e88e5;border:2px #1e88e5 solid}span.module_icon.gdpr.active{color:#fff;background-color:#1e88e5;border:2px #1e88e5 solid}span.module_icon.gdpr.active:hover{color:#fff;border:2px #1e88e5 solid}span.module_icon.gdpr::before{content:"GDPR"}span.faicon.wheel_32::before{content:"";font-size:20px}span.faicon.radio_32::before{content:"";font-weight:400;font-size:18px}span.faicon.check_32::before{content:"";font-weight:400;font-size:18px}span.faicon.matrix_32::before{content:"\a";white-space:pre;font-weight:400;font-size:12px}span.faicon.abc_32::before{content:"ABC";font-family:Montserrat,sans-serif;font-size:16px}span.faicon.number_32::before{content:"123";font-family:Montserrat,sans-serif;font-size:16px}span.faicon.nagovor::before{content:"T";font-size:18px}span.faicon.plus_32::before{content:"";font-size:18px}span.faicon.if_32::before{content:"IF";font-family:Montserrat,sans-serif;font-size:16px}span.faicon.block_32::before{content:"B";font-family:Montserrat,sans-serif;font-size:16px}span.faicon.loop_32::before{content:"L";font-family:Montserrat,sans-serif;font-size:15px}a.faicon{color:#1e88e5 !important}a.faicon:hover{color:#ffa608 !important}span.faicon.edit-vprasanje{line-height:25px}span.faicon.edit-vprasanje:before{font-size:18px;content:""}a.faicon.edit::before{font-size:16px;content:""}a.faicon.addif::before{font-family:Montserrat,sans-serif;font-size:18px;font-weight:900;content:"IF"}a.faicon.copy::before{font-size:18px;font-weight:400;content:""}a.faicon.copycond::before{font-size:18px;content:""}a.faicon.preview::before{font-size:18px;font-weight:400;content:""}a.faicon.preview::after{content:"";display:inline-block;font-size:11px;margin-left:-50%}a.faicon.arhiv::before{font-size:18px;content:""}a.faicon.delete::before{font-size:18px;font-weight:400;content:""}a.faicon.hide::before{font-size:18px;font-weight:400;content:""}a.faicon.unhide_icon::before{font-size:18px;font-weight:400;content:""}.variabla span.inline.faicon::before{color:#c8e3f8}.variabla span.inline.faicon:hover::before{color:#1e88e5}.variabla span.inline.faicon.edit2::before{font-size:14px;content:""}.variabla span.inline.faicon.odg_hidden::before{font-size:14px;content:""}.variabla span.inline.faicon.odg_hidden.show-hidden::before{color:red}.variabla span.inline.faicon.odg_hidden.show-disable::before{color:#ffa608}.variabla span.inline.faicon.odg_if_not::before{font-family:Montserrat,sans-serif;font-size:15px;font-weight:900;content:"IF*"}.variabla span.inline.faicon.odg_if_follow::before{font-family:Montserrat,sans-serif;font-size:15px;font-weight:900;content:"IF🠞"}.variabla span.inline.faicon.correct::before{font-size:14px;font-weight:900;content:""}.variabla span.inline.faicon.move_updown::before{font-size:16px;color:#1e88e5;content:""}span.faicon.mapca.anketa::before{font-size:16px;font-weight:400;content:""}span.faicon.table::before{font-size:16px;content:""}span.faicon.other_vprasanja::before{font-size:16px;content:"" !important}span.faicon.osnovna_vprasanja::before{font-size:16px;content:""}span.faicon.mapca.if::before{font-family:Montserrat,sans-serif;font-weight:500;font-size:16px;content:"IF"}span.faicon.mapca.b::before{font-family:Montserrat,sans-serif;font-weight:500;font-size:16px;content:"B"}span.faicon.pdf::before{font-size:16px;font-weight:400;content:"";color:#ed1c24}span.faicon.pdf.black{color:#606060 !important}span.faicon.pdf.black:hover{color:#ed1c24 !important}a:hover span.faicon.pdf.black{color:#ed1c24 !important}span.faicon.pdf.black::before{color:inherit !important}span.faicon.xls::before{font-size:16px;font-weight:400;content:"";color:green}span.faicon.xls.black{color:#606060 !important}span.faicon.xls.black:hover{color:green !important}a:hover span.faicon.xls.black{color:green !important}span.faicon.xls.black::before{color:inherit !important}span.faicon.rtf::before{font-size:16px;font-weight:400;content:"";color:#0f3ea8}span.faicon.rtf.black{color:#606060 !important}span.faicon.rtf.black:hover{color:#0f3ea8 !important}a:hover span.faicon.rtf.black{color:#0f3ea8 !important}span.faicon.rtf.black::before{color:inherit !important}span.faicon.ppt::before{font-size:16px;font-weight:400;content:"";color:#fa4913}span.faicon.ppt.black{color:#606060 !important}span.faicon.ppt.black:hover{color:#fa4913 !important}a:hover span.faicon.ppt.black{color:#fa4913 !important}span.faicon.ppt.black::before{color:inherit !important}span.faicon.xml::before{font-size:16px;font-weight:400;content:"";color:#00a000}span.faicon.xml.black{color:#606060 !important}span.faicon.xml.black:hover{color:#00a000 !important}a:hover span.faicon.xml.black{color:#00a000 !important}span.faicon.xml.black::before{color:inherit !important}span.faicon.arhiv::before{font-size:16px;content:""}span.faicon.arhiv_mail::before{font-size:16px;font-weight:400;content:""}span.faicon.an_sigma::before{font-family:Montserrat,sans-serif;font-weight:700;content:"Σ";vertical-align:middle}span.faicon.an_sigmax::before{font-family:Montserrat,sans-serif;font-weight:700;content:"Σ*";vertical-align:middle;margin-left:3px}span.faicon.an_freq::before{font-family:Montserrat,sans-serif;font-weight:700;font-style:italic;content:"f";vertical-align:middle;margin-left:3px}span.faicon.an_freqx::before{font-family:Montserrat,sans-serif;font-weight:700;font-style:italic;content:"f*";vertical-align:middle;margin-left:3px}span.faicon.an_stat::before{font-family:Montserrat,sans-serif;font-weight:700;font-style:italic;content:"s";vertical-align:middle;margin-left:3px}span.faicon.an_chart_bar::before{font-size:14px;font-weight:700;content:"";margin-left:3px}span.faicon.inv_sent_0::before{font-size:14px;content:"";font-weight:400}span.faicon.inv_sent_1::before{font-size:14px;content:""}span.faicon.inv_responded_0::before{font-size:14px;font-weight:400;content:""}span.faicon.inv_responded_1::before{font-size:14px;font-weight:700;content:""}span.faicon.inv_unsubscribed_0::before{font-size:14px;font-weight:400;content:""}span.faicon.inv_unsubscribed_1::before{font-size:14px;font-weight:700;content:"";color:red}#fade{display:none;position:fixed;z-index:79;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,.75)}#fade .popup_holder{display:flex;justify-content:center;align-items:center;width:100%;height:100%}#fade .popup_holder #fullscreen{display:none;position:relative;z-index:81}#fade .popup_holder .divPopUp{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);position:relative}#fade .popup_holder .divPopUp .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#fade .popup_holder .divPopUp .popup_close:hover{color:#1e88e5}#fade .popup_holder .divPopUp .popup_close a{color:#d3d3d3}#fade .popup_holder .divPopUp .popup_close a:hover{color:#1e88e5}#fade .popup_holder .divPopUp h2,#fade .popup_holder .divPopUp .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#fade .popup_holder .divPopUp p{line-height:20px}#fade .popup_holder .divPopUp.popup_violet,#fade .popup_holder .divPopUp#popup_user_access{border-left:6px #921ee5 solid !important}#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a,#fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a:hover,#fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a.ovalbutton_gray,#fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,#fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#fade .popup_holder .divPopUp.popup_orange,#fade .popup_holder .divPopUp#surveyTrajanje,#fade .popup_holder .divPopUp#dropped_alert,#fade .popup_holder .divPopUp#check_pogoji{border-left:6px #ffa608 solid !important}#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a,#fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a,#fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a,#fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a:hover,#fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a:hover,#fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a:hover,#fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a.ovalbutton_gray,#fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a.ovalbutton_gray,#fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a.ovalbutton_gray,#fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,#fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover,#fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover,#fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#fade .popup_holder .divPopUp.popup_red{border-left:6px red solid !important}#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#fade .popup_holder .divPopUp .buttons_holder{position:absolute;bottom:20px;right:20px}#fade .popup_holder .divPopUp div.divPopUp_top{display:inline-block;height:auto;top:0;left:0;right:0}#fade .popup_holder .divPopUp div.divPopUp_content{height:100%}#fade .popup_holder .divPopUp div.divPopUp_btm{display:inline-block;bottom:0;left:0;right:0;width:100%;height:auto;padding:20px 0px 0px 0px !important;margin-right:0;margin-bottom:0}#popup_note{display:none;max-width:600px !important}#popup_note .popup_content{margin-bottom:40px;line-height:24px}#clipboard{position:fixed;top:10px;left:50%;margin-left:-180px;width:340px;background-color:#1e88e5;color:#fff;padding:5px 10px 5px 10px;z-index:1000;display:none}#clipboard p{margin:0}#clipboard a{color:#fff}#request_help_content a{padding-left:0 !important;font-weight:600 !important;color:#1e88e5 !important}#request_help_content a:hover{color:#ffa608 !important}.active-alert{position:fixed;top:0;right:0;background-color:#efefef;padding:1px 10px;border-left:1px solid #900;border-bottom:1px solid #900;z-index:10}span.active-editors{color:gray;font-weight:normal}#div_float_editing{display:none;min-height:350px;max-height:600px;overflow:auto;width:702px}#div_float_editing_inner{border:1px solid #ff0;overflow:auto;min-height:150px;height:489px;max-height:650px}#div_error{padding:10px;margin:3px;background-color:#f5fafe;border:1px solid #c8e3f8}#div_error ul{list-style:square inside}#div_error li{padding-bottom:5px}#div_error img{margin-right:5px}.alert_authors{display:block;text-indent:30px}.alert_textarea{border:1px solid silver;background-color:gray}#invisible-layer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:9999999}#invisible-close{z-index:99999999;cursor:pointer;top:15px;right:20% !important;position:absolute;width:auto;padding:5px 25px;font-size:15px !important;font-weight:500 !important;color:#1e88e5;text-transform:uppercase;background-color:#f5fafe;background-image:none;border:2px solid #1e88e5}#invisible-close:hover{color:#ffa608;border-color:#ffa608}#cookie_alert{position:absolute;right:10px;top:80px;width:300px;background-color:#fff0d4 !important;border:1px solid #ffa608}#cookie_alert span{display:block;padding-bottom:7px}#cookie_alert a{font-weight:500}#ie_alert{position:absolute;top:-30px;width:100%;padding:7px 0;z-index:9999;background-color:#fff0d4;border-top:#d48800 1px solid;border-bottom:#d48800 1px solid;text-align:center;font-weight:bold}#pasteFromWordAlert{display:none;bottom:15%;left:50%;z-index:99999;position:fixed;margin-left:-100px;padding:3px 15px;text-align:center;font-weight:normal;font-size:13px;line-height:30px;color:#333;background-color:#ffdda1;border:1px solid #ffa608}#alternativno-obvestilo.error{color:#ee9800}#alternativno-obvestilo.success{color:#1e88e5}body.wait #loading{display:block}body.waitlong #loading{bottom:auto;top:45%;left:50%;transform:translateX(-50%);padding:15px 25px;border:1px solid #1e88e5}#loading{display:none;z-index:900;position:fixed;bottom:0px;left:0px;padding:7px 12px;line-height:20px;font-size:13px;background-color:#dfeffb;border-top:1px solid #1e88e5;border-right:1px solid #1e88e5}.qtip{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);padding:15px !important}.qtip .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}.qtip .popup_close:hover{color:#1e88e5}.qtip .popup_close a{color:#d3d3d3}.qtip .popup_close a:hover{color:#1e88e5}.qtip h2,.qtip .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}.qtip p{line-height:20px}.qtip.popup_violet,.qtip#popup_user_access{border-left:6px #921ee5 solid !important}.qtip.popup_violet div.buttonwrapper a,.qtip#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.qtip.popup_violet div.buttonwrapper a:hover,.qtip#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}.qtip.popup_violet div.buttonwrapper a.ovalbutton_gray,.qtip#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}.qtip.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,.qtip#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}.qtip.popup_orange,.qtip#surveyTrajanje,.qtip#dropped_alert,.qtip#check_pogoji{border-left:6px #ffa608 solid !important}.qtip.popup_orange div.buttonwrapper a,.qtip#surveyTrajanje div.buttonwrapper a,.qtip#dropped_alert div.buttonwrapper a,.qtip#check_pogoji div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}.qtip.popup_orange div.buttonwrapper a:hover,.qtip#surveyTrajanje div.buttonwrapper a:hover,.qtip#dropped_alert div.buttonwrapper a:hover,.qtip#check_pogoji div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}.qtip.popup_orange div.buttonwrapper a.ovalbutton_gray,.qtip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray,.qtip#dropped_alert div.buttonwrapper a.ovalbutton_gray,.qtip#check_pogoji div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}.qtip.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,.qtip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover,.qtip#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover,.qtip#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}.qtip.popup_red{border-left:6px red solid !important}.qtip.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}.qtip.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}.qtip.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}.qtip.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.qtip .qtip-tip{display:none !important}.qtip .qtip-wrapper{border:0 !important}.qtip .qtip-wrapper .qtip-contentWrapper{border:0 !important}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title{padding:0 !important;color:#000 !important;font-size:14px;font-weight:600;background-color:#fff !important}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button{position:absolute !important;top:0px;right:0px;font-size:25px !important;line-height:18px;color:#d3d3d3}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button:hover{color:#1e88e5}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content{overflow:visible !important;padding:0 !important;margin-top:10px;font-size:12px;background-color:#fff !important;border:0}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content textarea{box-sizing:border-box}.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-help{margin-top:-10px;padding-right:30px;line-height:20px}.qtip .qtip-borderTop,.qtip .qtip-borderBottom{display:none !important}.expanded-tooltip{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);top:-45px;left:-25px;z-index:99999;position:absolute;display:block;margin:0;width:200px;height:29px;padding-bottom:10px;background-color:#fff;text-align:center;font-weight:normal;font-size:11px;line-height:14px}.expanded-tooltip .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}.expanded-tooltip .popup_close:hover{color:#1e88e5}.expanded-tooltip .popup_close a{color:#d3d3d3}.expanded-tooltip .popup_close a:hover{color:#1e88e5}.expanded-tooltip h2,.expanded-tooltip .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}.expanded-tooltip p{line-height:20px}.expanded-tooltip.popup_violet,.expanded-tooltip#popup_user_access{border-left:6px #921ee5 solid !important}.expanded-tooltip.popup_violet div.buttonwrapper a,.expanded-tooltip#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.expanded-tooltip.popup_violet div.buttonwrapper a:hover,.expanded-tooltip#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}.expanded-tooltip.popup_violet div.buttonwrapper a.ovalbutton_gray,.expanded-tooltip#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}.expanded-tooltip.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,.expanded-tooltip#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}.expanded-tooltip.popup_orange,.expanded-tooltip#surveyTrajanje,.expanded-tooltip#dropped_alert,.expanded-tooltip#check_pogoji{border-left:6px #ffa608 solid !important}.expanded-tooltip.popup_orange div.buttonwrapper a,.expanded-tooltip#surveyTrajanje div.buttonwrapper a,.expanded-tooltip#dropped_alert div.buttonwrapper a,.expanded-tooltip#check_pogoji div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}.expanded-tooltip.popup_orange div.buttonwrapper a:hover,.expanded-tooltip#surveyTrajanje div.buttonwrapper a:hover,.expanded-tooltip#dropped_alert div.buttonwrapper a:hover,.expanded-tooltip#check_pogoji div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}.expanded-tooltip.popup_orange div.buttonwrapper a.ovalbutton_gray,.expanded-tooltip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray,.expanded-tooltip#dropped_alert div.buttonwrapper a.ovalbutton_gray,.expanded-tooltip#check_pogoji div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}.expanded-tooltip.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,.expanded-tooltip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover,.expanded-tooltip#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover,.expanded-tooltip#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}.expanded-tooltip.popup_red{border-left:6px red solid !important}.expanded-tooltip.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}.expanded-tooltip.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}.expanded-tooltip.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}.expanded-tooltip.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.expanded-tooltip a{font-weight:600 !important}.expanded-tooltip a.close{color:#333;float:right}.expanded-tooltip span.arrow{display:none;display:block;height:18px;left:50%;top:35px;overflow:hidden;position:absolute;width:60px;margin-left:-30px}.expanded-tooltip span.arrow:after{background-color:#fff;border:2px solid #fff;content:"";height:25px;left:15px;position:absolute;top:-20px;width:25px;-webkit-box-shadow:6px 5px 9px -9px #000,5px 6px 9px -9px #000;-moz-box-shadow:6px 5px 9px -9px #000,5px 6px 9px -9px #000;box-shadow:6px 5px 9px -9px #000,5px 6px 9px -9px #000;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg)}.expanded-tooltip.bottom{text-align:left;left:-100px;top:35px;background-color:#fff;height:auto;z-index:99999}.expanded-tooltip.bottom span.arrow{top:-18px}.expanded-tooltip.bottom span.arrow:after{background-color:#fff;top:10px;-webkit-box-shadow:-6px -5px 9px -9px #000,-5px -6px 9px -9px #000;-moz-box-shadow:-6px -5px 9px -9px #000,-5px -6px 9px -9px #000;box-shadow:-6px -5px 9px -9px #000,-5px -6px 9px -9px #000}#tooltip_preview_content.expanded-tooltip{top:33px}#baseSurveyInfoImg .expanded-tooltip{width:400px;left:-38px}#baseSurveyInfoImg .expanded-tooltip span.arrow{left:12%}#quick_title_edit{position:relative;width:720px;height:265px}#quick_title_edit .quick_title_edit_label{width:145px;font-weight:600}#div_chart_settings_profiles{display:none;position:relative;z-index:90;width:650px;height:420px;padding:10px}#div_chart_settings_profiles .as_link{color:#1e88e5 !important}#div_chart_settings_profiles #chart_skin_note{width:auto;padding:3px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f0f7fd}#div_chart_settings_profiles #chart_settings_profiles_left{float:left;width:30%;height:200px}#div_chart_settings_profiles #chart_settings_profiles_right{padding:20px;width:60%;float:right}#chart_float_editing{display:none;position:relative;z-index:999;width:815px;padding:0 20px}#chart_float_editing .chartSettingsArea{position:absolute;overflow:auto;right:20px;width:615px;height:300px;padding:20px;margin:0 0 40px 0;background-color:#dfeffb}#chart_float_editing .chartSettingsArea ul.vrednost_sort li{border:1px solid gray}#chart_float_editing .chartSettingsArea .chart_setting{padding:5px}#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul{padding:3px 20px}#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li{padding:2px 0px 3px 0px}#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li .chart_advanced_warning{padding:0px 10px;color:red}#chart_float_editing .chartSettingsTabs{position:absolute;width:160px;height:260px;padding:0px;font-size:13px;font-weight:500;text-align:center;background-color:#fff}#chart_float_editing .chartSettingsTabs ul{padding:0;margin:0;list-style-type:none}#chart_float_editing .chartSettingsTabs ul li{width:100%;height:20px;padding:10px 0;cursor:pointer}#chart_float_editing .chartSettingsTabs ul li.active{background-color:#dfeffb}#chart_float_editing .form-item{padding:3px;width:200px}#chart_float_editing .colorwell{width:70px;height:20px;font-size:11px}.farbtastic{position:relative;width:195px;height:195px}.farbtastic *{position:absolute;cursor:crosshair}.farbtastic .wheel{width:195px;height:195px;background:url(../../../admin/survey/img_0/wheel.png) no-repeat;width:195px;height:195px}.farbtastic .color{top:47px;left:47px;width:101px;height:101px}.farbtastic .overlay{top:47px;left:47px;width:101px;height:101px;background:url(../../../admin/survey/img_0/mask.png) no-repeat}.farbtastic .marker{width:17px;height:17px;margin:-8px 0 0 -8px;overflow:hidden;background:url(../../../admin/survey/img_0/marker.png) no-repeat}#div_variable_profiles{z-index:90}#divConditionProfiles{width:1035px}#calculation{display:none;position:relative;z-index:91;margin-left:auto;margin-right:auto;height:auto;width:600px}#calculation #calculation_editing_inner{top:0;bottom:0;left:0;right:0;margin-bottom:40px;overflow:auto}#calculation #condition_editing_close{float:right;margin:20px 20px 20px 0}#calculation #bottom_space{bottom:0;left:0;position:absolute;right:0;padding:0}#check_pogoji{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;width:340px}#check_pogoji .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#check_pogoji .popup_close:hover{color:#1e88e5}#check_pogoji .popup_close a{color:#d3d3d3}#check_pogoji .popup_close a:hover{color:#1e88e5}#check_pogoji h2,#check_pogoji .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#check_pogoji p{line-height:20px}#check_pogoji.popup_violet{border-left:6px #921ee5 solid !important}#check_pogoji.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#check_pogoji.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#check_pogoji.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#check_pogoji.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#check_pogoji.popup_orange,#check_pogoji{border-left:6px #ffa608 solid !important}#check_pogoji.popup_orange div.buttonwrapper a,#check_pogoji div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#check_pogoji.popup_orange div.buttonwrapper a:hover,#check_pogoji div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#check_pogoji.popup_orange div.buttonwrapper a.ovalbutton_gray,#check_pogoji div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#check_pogoji.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#check_pogoji.popup_red{border-left:6px red solid !important}#check_pogoji.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#check_pogoji.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#check_pogoji.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#check_pogoji.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#dropped_alert{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;min-height:30px;width:300px}#dropped_alert .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#dropped_alert .popup_close:hover{color:#1e88e5}#dropped_alert .popup_close a{color:#d3d3d3}#dropped_alert .popup_close a:hover{color:#1e88e5}#dropped_alert h2,#dropped_alert .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#dropped_alert p{line-height:20px}#dropped_alert.popup_violet{border-left:6px #921ee5 solid !important}#dropped_alert.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#dropped_alert.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#dropped_alert.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#dropped_alert.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#dropped_alert.popup_orange,#dropped_alert{border-left:6px #ffa608 solid !important}#dropped_alert.popup_orange div.buttonwrapper a,#dropped_alert div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#dropped_alert.popup_orange div.buttonwrapper a:hover,#dropped_alert div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#dropped_alert.popup_orange div.buttonwrapper a.ovalbutton_gray,#dropped_alert div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#dropped_alert.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#dropped_alert.popup_red{border-left:6px red solid !important}#dropped_alert.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#dropped_alert.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#dropped_alert.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#dropped_alert.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#alert_close_block{display:none;min-height:30px;width:500px}#popup_user_access{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:relative;z-index:9999;height:auto;width:450px}#popup_user_access .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#popup_user_access .popup_close:hover{color:#1e88e5}#popup_user_access .popup_close a{color:#d3d3d3}#popup_user_access .popup_close a:hover{color:#1e88e5}#popup_user_access h2,#popup_user_access .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#popup_user_access p{line-height:20px}#popup_user_access.popup_violet,#popup_user_access{border-left:6px #921ee5 solid !important}#popup_user_access.popup_violet div.buttonwrapper a,#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#popup_user_access.popup_violet div.buttonwrapper a:hover,#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#popup_user_access.popup_violet div.buttonwrapper a.ovalbutton_gray,#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#popup_user_access.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#popup_user_access.popup_orange{border-left:6px #ffa608 solid !important}#popup_user_access.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#popup_user_access.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#popup_user_access.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#popup_user_access.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#popup_user_access.popup_red{border-left:6px red solid !important}#popup_user_access.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#popup_user_access.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#popup_user_access.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#popup_user_access.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#popup_user_access div.buttonwrapper a{margin-top:10px}#popup_user_access p{margin-top:0;font-size:13px;font-weight:500}#dsp_div{display:none;position:relative;z-index:90}#dsp_cover_div{position:absolute;left:0px;top:0px;right:0px;bottom:0px;width:100%;height:100%;background:#c8e3f8;opacity:.4;z-index:10;display:none}#dsp_profiles_left{width:192px;float:left}#dsp_profiles_right{float:right;width:490px;padding:0 0 10px 10px;margin-bottom:40px;background-color:#feffff}#dsp_profiles_holder{width:190px;height:150px;display:inline-block}#dsp_profiles{height:150px;overflow:auto;cursor:pointer;width:190px;display:inline-block}#dsp_profiles .option{padding:2px 5px;margin-bottom:5px}#dsp_profiles .active{padding:2px 5px;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#dsp_note{width:450px;padding:3px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f5fafe}#dsp_content{width:auto;min-height:80px;padding:0}#dsp_content fieldset{margin:0px 0px 5px 0px;border:0;border-top:1px solid #166dba}#dsp_content legend{background-color:#fff}#dsp_left_link_holder{width:auto;max-width:180px}#dsp_button_holder{position:absolute;bottom:20px;right:20px}.dsp_sett_label{display:inline-block;width:auto;line-height:20px}#div_export_setting_show{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;z-index:90;left:calc(50% - 200px);top:30vh;min-width:250px;min-height:80px;height:auto;width:auto;margin:10px}#div_export_setting_show .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#div_export_setting_show .popup_close:hover{color:#1e88e5}#div_export_setting_show .popup_close a{color:#d3d3d3}#div_export_setting_show .popup_close a:hover{color:#1e88e5}#div_export_setting_show h2,#div_export_setting_show .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#div_export_setting_show p{line-height:20px}#div_export_setting_show.popup_violet{border-left:6px #921ee5 solid !important}#div_export_setting_show.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#div_export_setting_show.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#div_export_setting_show.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#div_export_setting_show.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#div_export_setting_show.popup_orange{border-left:6px #ffa608 solid !important}#div_export_setting_show.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#div_export_setting_show.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#div_export_setting_show.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#div_export_setting_show.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#div_export_setting_show.popup_red{border-left:6px red solid !important}#div_export_setting_show.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#div_export_setting_show.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#div_export_setting_show.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#div_export_setting_show.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.condition_profile_holder{float:left;width:190px;height:150px;margin:8px 8px 8px 0px}.zanka_profile_holder{float:left;width:190px;height:150px;color:#1e88e5}.variable_profile_holder{float:left;width:190px;height:150px;color:#1e88e5}#zanka_profile{overflow:auto;cursor:pointer;width:190px}#zanka_profile .option{padding:2px 5px;margin-bottom:5px}#zanka_profile .active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#variable_profile{overflow:auto;cursor:pointer}#variable_profile .option{padding:2px 5px;margin-bottom:5px}#variable_profile .active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#condition_profile{height:200px;overflow:auto;cursor:pointer}#condition_profile .option{padding:2px 5px;margin-bottom:5px}#condition_profile .active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#variableProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#zankaProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#statisticProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#timeProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#statusProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#conditionProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#surveyConditionCover{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#profileManagerCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}fieldset.statusProfileFieldset{width:460px;margin:0px;padding:5px;border:0;border-top:1px solid #c8e3f8}fieldset.statusProfileFieldset legend{background-color:#f5fafe}fieldset#missingProfileFieldset{width:470px;margin:0px;padding:5px;border:0;border-top:1px solid #c8e3f8}#missingProfileFieldsetHolder1{width:481px;padding:4px;margin-top:4px;margin-bottom:5px;font-size:11px}#missingProfilebuttons{position:absolute;bottom:20px;right:20px}#div_missing_profiles{display:none;position:relative;z-index:90;width:730px}#div_missing_profiles fieldset{border:0;border-top:1px solid #c8e3f8}#div_missing_profiles legend{background-color:#f5fafe}#fs_list{overflow:auto;float:right;width:490px;height:320px;padding:10px;color:#333;border:1px solid #c8e3f8;background-color:#f5fafe}.fs_container{height:280px;width:235px;overflow:auto;padding:3px 0px 3px 0px}#fs_list_1{display:block;list-style-type:none;padding:0px;min-height:275px;height:275px;width:220px;min-width:220px;padding:0px;margin:0px}#fs_list_1 ul{padding:0px;max-height:275px}#fs_list_1 li{list-style-type:none;display:block;background:#f5fafe;width:220px;padding:5px 0px;margin-bottom:5px}#fs_list_1 li.dds_selected{background:#b3cbc2}#fs_list_1 li.dds_ghost{opacity:.5}#fs_list_1 li.dds_move{background:#cfc}#fs_list_2{display:block;list-style-type:none;padding:0px;min-height:275px;height:275px;width:220px;min-width:220px;padding:0px;margin:0px}#fs_list_2 ul{padding:0px;max-height:275px}#fs_list_2 li{list-style-type:none;display:block;background:#f5fafe;width:220px;padding:5px 0px;margin-bottom:5px}#fs_list_2 li.dds_selected{background:#b3cbc2}#fs_list_2 li.dds_ghost{opacity:.5}#fs_list_2 li.dds_move{background:#cfc}#fs_list_3{display:block;list-style-type:none;padding:0px;min-height:275px;height:275px;width:220px;min-width:220px;padding:0px;margin:0px}#fs_list_3 ul{padding:0px;max-height:275px}#fs_list_3 li{list-style-type:none;display:block;background:#f5fafe;width:220px;padding:5px 0px;margin-bottom:5px}#fs_list_3 li.dds_selected{background:#b3cbc2}#fs_list_3 li.dds_ghost{opacity:.5}#fs_list_3 li.dds_move{background:#cfc}#fs_list_4{display:block;list-style-type:none;padding:0px;min-height:275px;height:275px;width:220px;min-width:220px;padding:0px;margin:0px}#fs_list_4 ul{padding:0px;max-height:275px}#fs_list_4 li{list-style-type:none;display:block;background:#f5fafe;width:220px;padding:5px 0px;margin-bottom:5px}#fs_list_4 li.dds_selected{background:#b3cbc2}#fs_list_4 li.dds_ghost{opacity:.5}#fs_list_4 li.dds_move{background:#cfc}#div_cp_preview{float:right;display:inline-block;width:780px;margin:8px 8px 40px 0px;max-height:500px;border:1px solid #c8e3f8;background-color:#f5fafe}#div_cp_preview_content{display:block;margin:6px}.statistic_profile_left_right{width:auto;height:190px;padding:5px}.time_profile_left_right{width:auto;height:200px;padding:5px}.time_profile_left_right.floatRight{height:140px;border:1px solid #c8e3f8;background-color:#f5fafe;float:right;padding:10px;width:380px}.statistic_profile_holder{float:left;width:190px;height:150px;color:#1e88e5}#statistic_profile{height:150px;overflow:auto;cursor:pointer;width:190px}#statistic_profile .option{padding:2px 5px;margin-bottom:5px}#statistic_profile .active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#time_profile{height:150px;overflow:auto;cursor:pointer;width:190px}#time_profile .option{padding:2px 5px;margin-bottom:5px}#time_profile .active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#statistic_profile_content{float:left;width:auto;height:80px;padding:5px;margin-bottom:10px;color:#333}#time_profile_content{float:left;width:auto;height:80px;padding:5px;margin-bottom:10px;color:#333}.statistic_profile_button_left_holder{width:auto;max-width:180px}.statistic_profile_button_right_holder{position:absolute;bottom:10px;right:10px}.time_profile_button_right_holder{position:absolute;bottom:20px;right:20px}.statistic_profile_note{width:430px;padding:3px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f5fafe}#missing_profile_holder{float:left;width:190px;height:150px;margin:0px 8px 8px 0px;color:#1e88e5}#status_profile_holder{float:left;width:190px;height:150px;margin:0px 8px 8px 0px;color:#1e88e5;height:auto}#divStatusProfile{position:relative}#missing_profile{height:150px;overflow:auto;cursor:pointer;width:190px}#missing_profile div.option{padding:2px 5px;margin-bottom:5px}#missing_profile div.active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#status_profile{height:150px;overflow:auto;cursor:pointer;width:190px}#status_profile div.option{padding:2px 5px;margin-bottom:5px}#status_profile div.active{padding:2px 5px;border:1px solid #c8e3f8;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#status_casi{height:150px;overflow:auto;cursor:pointer;width:190px}#missing_profile_data_holder{float:right;width:490px;padding:10px;border:1px solid #c8e3f8;background-color:#f5fafe}#status_profile_data_holder{float:right;width:490px;padding:10px;border:1px solid #c8e3f8;background-color:#f5fafe}#missingProfileFieldsetHolder{width:470px;padding:5px;margin:0px;margin-bottom:5px;font-size:11px}#statusProfileFieldsetHolder{width:470px;padding:5px;margin:0px;margin-bottom:5px;font-size:11px}#conditionProfileButtons{position:absolute;bottom:20px;right:20px}#tbl_color_ersidual{font-size:11px;line-height:12px;border-collapse:collapse;margin:0px;margin-left:5px}#variableTypeNote{display:inline-block;width:auto;padding:3px 10px;margin-bottom:4px;line-height:2em;vertical-align:middle;border:1px solid #c8e3f8;background-color:#f5fafe}#variableProfileNote{display:inline-block;width:auto;padding:3px 10px;margin-bottom:4px;line-height:2em;vertical-align:middle;border:1px solid #c8e3f8;background-color:#f5fafe}#variableProfileNote div.if_content{display:inline-block}#timeProfileDafaultNote{display:inline-block;width:auto;padding:3px 10px;margin-bottom:4px;line-height:2em;vertical-align:middle;border:1px solid #c8e3f8;background-color:#f5fafe}#dashboardEmailFilter{display:inline-block;width:auto;padding:3px 10px;margin-bottom:4px;line-height:2em;vertical-align:middle;border:1px solid #c8e3f8;background-color:#f5fafe}#not_default_setting{padding:5px;width:auto;margin-bottom:15px;border:1px solid #ffa608;background-color:#fff0d4}input#startDate{width:80px}input#endDate{width:80px}#vp_list{float:right;overflow:auto;width:430px;padding:10px;margin:0 10px;color:#333;border:1px solid #c8e3f8;background-color:#f5fafe}#vp_list ul{display:inline-block;padding:0 3px;max-height:400px;width:auto}#vp_list ul li{list-style-type:none;display:inline-block;width:100%;max-width:400px;padding:5px;margin-bottom:5px;background-color:#f5fafe;outline:1px solid #f5fafe;color:#333}#vp_list ul li label{display:inline-block;width:100%;height:100%}#vp_list ul li.selected{background-color:#f5fafe !important;outline:0 !important;color:#1e88e5 !important}#div_condition_profiles{width:1010px;height:auto !important;display:none;position:relative;z-index:90}#div_time_profiles{width:620px;display:none;position:relative;z-index:90}#div_zanka_profiles{width:730px;height:430px;display:none;position:relative;z-index:90}#newProfile{display:none;position:absolute;z-index:20;left:calc(50% - 300px);top:40%;padding:20px;width:550px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34)}#newProfileDiv{display:none;position:absolute;z-index:20;left:calc(50% - 300px);top:40%;padding:20px;width:550px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34)}#renameProfileDiv{display:none;position:absolute;z-index:20;left:calc(50% - 300px);top:40%;padding:20px;width:550px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34)}#deleteProfileDiv{display:none;position:absolute;z-index:20;left:calc(50% - 300px);top:40%;padding:20px;width:550px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34)}#popup_import_from_text{display:none;position:relative;z-index:90;height:auto;width:800px;margin:0 auto;line-height:18px}#popup_import_from_text .anketa_from_text{height:auto;overflow:auto}#popup_import_from_text .anketa_from_text h2{margin-top:0}#popup_import_from_text .anketa_from_text #input_field_holder{float:left;width:50%;height:400px;box-sizing:border-box;padding:20px}#popup_import_from_text .anketa_from_text #input_field_holder #input_field{width:100%;height:100%}#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea{width:100%;height:100%;box-sizing:border-box;resize:none;padding:20px;border:1px #c8e3f8 solid !important}#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder{color:transparent}#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder{color:transparent}#popup_import_from_text .anketa_from_text #preview_field_holder{float:right;width:50%;height:400px;box-sizing:border-box;padding:20px}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field{width:100%;height:100%;box-sizing:border-box;overflow:auto;padding:20px;background-color:#f5fafe;border:1px #c8e3f8 solid}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.title{font-size:18px;line-height:30px}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable{font-size:15px;font-weight:400}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]{display:none !important}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]+span.enka-checkbox-radio:before{font-family:"Font Awesome 5 Free";content:"";display:inline-block;font-size:14px;color:#aaa;letter-spacing:8px;font-weight:400}#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked+span.enka-checkbox-radio:before{content:"";color:#333}#div_analiza_archive_name{min-width:900px;width:auto;padding-bottom:50px !important}.div_curent_archives{margin-top:10px;padding:20px 5px 20px 5px;max-height:300px;overflow:auto;border-top:1px dashed #efefef}.arch_tbl{width:100%;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse}.arch_tbl th{padding:3px}.arch_tbl td{padding:3px}#arch_body{text-align:center;margin:auto;margin-top:20px;padding:0px;background:none;background-color:#fff;color:#000;font-size:11px;width:100%}#arch_body .anl_more{display:none}#arch_body_div{margin:auto;width:auto;max-width:1024px;background-color:#fff;text-align:center}.arch_body_div{margin:auto;width:auto;max-width:1024px;background-color:#fff;text-align:center}.arch_head_date{float:right;width:auto;height:50px}#div_archives_email_buttons{position:absolute;bottom:20px;right:20px}#div_archives_email_left{width:590px;float:left}#div_archives_email_right{width:300px;float:right}dl.arch_email dd{margin-left:60px;position:relative;top:-1.1em}#email_archive_text{height:150px}#preview_spremenljivka{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);overflow-x:hidden;overflow-y:auto;height:auto;max-height:500px;width:60vw}#preview_spremenljivka .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#preview_spremenljivka .popup_close:hover{color:#1e88e5}#preview_spremenljivka .popup_close a{color:#d3d3d3}#preview_spremenljivka .popup_close a:hover{color:#1e88e5}#preview_spremenljivka h2,#preview_spremenljivka .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#preview_spremenljivka p{line-height:20px}#preview_spremenljivka.popup_violet{border-left:6px #921ee5 solid !important}#preview_spremenljivka.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#preview_spremenljivka.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#preview_spremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#preview_spremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#preview_spremenljivka.popup_orange{border-left:6px #ffa608 solid !important}#preview_spremenljivka.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#preview_spremenljivka.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#preview_spremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#preview_spremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#preview_spremenljivka.popup_red{border-left:6px red solid !important}#preview_spremenljivka.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#preview_spremenljivka.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#preview_spremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#preview_spremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#preview_spremenljivka .buttons_holder{margin-top:30px}#preview_spremenljivka h1{text-align:center}#preview_spremenljivka h1 span{display:none}#preview_spremenljivka h1,#preview_spremenljivka h2,#preview_spremenljivka h3{font-size:20px;line-height:27px;font-weight:500}#preview_spremenljivka input{vertical-align:middle;padding:0;margin:0}#preview_spremenljivka select{vertical-align:middle;padding:0;margin:0;cursor:pointer}#preview_spremenljivka textarea{vertical-align:middle;width:40%;padding:5px;margin:0}#preview_spremenljivka input[type=text]{padding:5px}#preview_spremenljivka .disabled{border:1px solid silver}#preview_spremenljivka img{border:none;max-width:800px}#preview_spremenljivka label{vertical-align:middle;cursor:pointer}#preview_spremenljivka table.grid_header_table label{display:block}#preview_spremenljivka input[type=radio]{cursor:pointer}#preview_spremenljivka input[type=checkbox]{cursor:pointer}#preview_spremenljivka #admin_options{position:absolute;left:20px}#preview_spremenljivka #admin_options a{cursor:pointer;display:inline-block;width:16px;height:16px;margin:0 2px}#preview_spremenljivka #admin_options a.printView{background:url("../../../admin/survey/icons/icons/printer.png")}#preview_spremenljivka #admin_options a.normalView{background:url("../../../admin/survey/icons/icons/pencil_go.png");display:none}#preview_spremenljivka #admin_options a.pdfExport{background:url("../../../admin/survey/icons/icons/page_white_acrobat.png")}#preview_spremenljivka #admin_options a.embed_out{background:url("../../../admin/survey/icons/icons/page_copy.png");width:23px}#preview_spremenljivka .printDiv{border:1px solid gray;padding:10px;margin-right:10px}#preview_spremenljivka #logo{position:absolute;background:url("../../../main/survey/skins/Default/logo-small.png") no-repeat scroll 100% 0 transparent;right:0px}#preview_spremenljivka #logo a{display:block;width:96px;height:45px;text-indent:-9999px;overflow:hidden}#preview_spremenljivka .header_settings_holder{position:absolute;right:20px}#preview_spremenljivka .header_settings_holder .progress_bar span{float:left}#preview_spremenljivka .header_settings_holder .progress_bar div{display:inline-block;width:100px;height:16px;border:1px solid #000;margin:0 10px;float:left}#preview_spremenljivka .header_settings_holder .progress_bar div span{display:inline-block;background-color:#000;height:16px;float:none}#preview_spremenljivka #preview{position:fixed;top:10px;right:10px;width:200px;text-align:center;z-index:100;background-color:#fff;border:1px solid #d3d3d3;font-size:90%}#preview_spremenljivka #preview select{font-size:100%}#preview_spremenljivka div.buttons{text-align:center}#preview_spremenljivka #footer_survey{text-align:center;font-size:90%}#preview_spremenljivka #footer_survey p{margin:0;padding:0}#preview_spremenljivka #footer_survey p.footer_mobile{margin-bottom:10px}#preview_spremenljivka #footer_survey p.footer_survey_UL{display:none}#preview_spremenljivka #footer_survey p.footer_survey_FDV{display:none}#preview_spremenljivka #footer_survey p.footer_survey_PoweredBy{display:none}#preview_spremenljivka .display_none{display:none}#preview_spremenljivka .clr{clear:both}#preview_spremenljivka .floatLeft{float:left;display:inline}#preview_spremenljivka div.spremenljivka p{margin:0;padding:0}#preview_spremenljivka .spremenljivka_info{color:gray}#preview_spremenljivka .variabla{padding:5px}#preview_spremenljivka div.spremenljivka.tip_7 .variabla label{padding:5px 10px 5px 0}#preview_spremenljivka div.spremenljivka.tip_21 .variabla label{padding:5px 10px 5px 0}#preview_spremenljivka span.reminder{position:absolute;color:red;left:-8px}#preview_spremenljivka div.naslov{position:relative;float:left;width:auto;min-width:100px;max-width:100%;padding:0 0 20px 0;font-size:16px;line-height:24px;font-weight:500}#preview_spremenljivka p.spremenljivka_info{font-size:80%}#preview_spremenljivka .variable_holder{padding:0 10px}#preview_spremenljivka table.grid_table{table-layout:fixed;width:100%;text-align:center;border-spacing:0}#preview_spremenljivka table.grid_table td.alignLeft{text-align:left !important}#preview_spremenljivka table.grid_table td.alignRight{text-align:right !important}#preview_spremenljivka table.grid_table td.alignCenter{text-align:center !important}#preview_spremenljivka table.grid_table label{display:block}#preview_spremenljivka table.grid_table td{padding:5px;overflow:hidden;text-overflow:ellipsis}#preview_spremenljivka thead{font-weight:600}#preview_spremenljivka td.question{text-align:left}#preview_spremenljivka td.differential{text-align:left}#preview_spremenljivka table td.question input{width:80px}#preview_spremenljivka table.grid_table.multigriddropdown{text-align:left}#preview_spremenljivka td.category input[type=text]{border:0;outline:1px solid #f5fafe}#preview_spremenljivka td.category textarea{border:0;outline:1px solid #f5fafe}#preview_spremenljivka table.doublegrid thead tr:first-child{height:30px}#preview_spremenljivka table.doublecheckgrid thead tr:first-child{height:30px}#preview_spremenljivka col.space{width:5%}#preview_spremenljivka td.double{border-left:1px solid #000}#preview_spremenljivka .width_5{width:5%}#preview_spremenljivka .width_10{width:10%}#preview_spremenljivka .width_15{width:15%}#preview_spremenljivka .width_20{width:20%}#preview_spremenljivka .width_25{width:25%}#preview_spremenljivka .width_30{width:30%}#preview_spremenljivka .width_33{width:33.3%}#preview_spremenljivka .width_35{width:35%}#preview_spremenljivka .width_40{width:40%}#preview_spremenljivka .width_45{width:45%}#preview_spremenljivka .width_50{width:50%}#preview_spremenljivka .width_55{width:55%}#preview_spremenljivka .width_60{width:60%}#preview_spremenljivka .width_65{width:65%}#preview_spremenljivka .width_70{width:70%}#preview_spremenljivka .width_75{width:75%}#preview_spremenljivka .width_80{width:80%}#preview_spremenljivka .width_85{width:85%}#preview_spremenljivka .width_90{width:90%}#preview_spremenljivka .width_95{width:95%}#preview_spremenljivka .width_100{width:100%}#preview_spremenljivka table.text_vrednost{table-layout:fixed;text-align:left;width:100%;border-spacing:0}#preview_spremenljivka .limit{color:red;cursor:default}#preview_spremenljivka table.ranking_table{width:100%;table-layout:fixed;border-spacing:0}#preview_spremenljivka table.ranking_table td{width:45%;padding:5px;vertical-align:top}#preview_spremenljivka table.ranking_table td.middle{width:10%;vertical-align:top;text-align:center}#preview_spremenljivka table.ranking_table ul{list-style:none;margin:0;padding:0}#preview_spremenljivka td.middle img{position:absolute;top:50%;left:50%;margin-left:-20px}#preview_spremenljivka .handle{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#preview_spremenljivka .handle_long{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#preview_spremenljivka .ime{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#preview_spremenljivka .izbran{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#preview_spremenljivka .ranking{cursor:pointer;text-overflow:ellipsis;white-space:nowrap;width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;position:relative;background-color:#fff}#preview_spremenljivka .ranking_long{cursor:pointer;text-overflow:ellipsis;white-space:nowrap;width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;position:relative;background-color:#fff}#preview_spremenljivka .frame_ranking{width:230px !important;padding:5px;margin:0px auto 10px auto;border:1px dashed #000;height:15px;text-indent:-25px;font-weight:bold}#preview_spremenljivka .dropholder{position:relative;padding-top:11px}#preview_spremenljivka .dropholder .dropzone{position:absolute;left:0;right:0;top:0;bottom:0}#preview_spremenljivka .dropzone{border-top:1px solid #000;min-height:100px;padding-top:10px}#preview_spremenljivka .frame_dropping{width:230px;padding:5px;margin:0px auto 10px auto;height:15px;text-indent:-25px;background-color:#f5fafe;border:1px solid #c8e3f8}#preview_spremenljivka .frame_dropping_titles{width:230px;padding:5px;margin:0px auto 0px auto;height:15px;text-align:center;background-color:#fff;border-top:1px solid #c8e3f8;border-left:1px solid #c8e3f8;border-right:1px solid #c8e3f8}#preview_spremenljivka .moving{cursor:pointer;margin-left:auto;margin-right:auto;width:230px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#preview_spremenljivka .frame_moving{width:230px;padding:5px;margin:0px auto 10px auto;border:1px dashed #000;height:15px;text-indent:-25px;font-weight:bold}#preview_spremenljivka ul.sorting{list-style:none;margin:0;padding:0}#preview_spremenljivka .sortholder{margin:0 auto;width:250px;padding:5px}#preview_spremenljivka .sortzone{position:absolute;margin:0 auto 0 auto;width:250px}#preview_spremenljivka .spremenljivka.tip_17 input{width:50px}#preview_spremenljivka .variabla_sum{text-align:right;padding:5px}#preview_spremenljivka .variabla_sum input{width:50px}#preview_spremenljivka .variabla_sum.sum{float:left;border-top:1px solid #000}#preview_spremenljivka .stat{float:right}#preview_spremenljivka #vnos{position:absolute;top:10px;left:10px;border:3px solid #aaa;background-color:#eee;text-align:center;padding:3px}#preview_spremenljivka p.vnos{width:100%;text-align:center}#preview_spremenljivka .content_status{border:none;padding-bottom:2px}#preview_spremenljivka .content_status span{display:inline-table}#preview_spremenljivka .counter{float:left;width:auto;padding-top:5px;display:block}#preview_spremenljivka div.comment{font-style:italic;color:red;float:left;width:98%;padding-top:5px;display:block;border-top:1px dashed #ccc}#preview_spremenljivka #edit_warning{width:380px;margin:-15px 0 5px 15px;padding:5px;border:2px red solid}#preview_spremenljivka .arrow{cursor:pointer;width:24px;height:24px;margin:0 auto}#preview_spremenljivka #arrow_up{background-image:url("../../../main/survey/skins/Default/arrowU.png")}#preview_spremenljivka #arrow_up:hover{background-image:url("../../../main/survey/skins/Default/arrowU2.png")}#preview_spremenljivka #arrow_down{background-image:url("../../../main/survey/skins/Default/arrowD.png")}#preview_spremenljivka #arrow_down:hover{background-image:url("../../../main/survey/skins/Default/arrowD2.png")}#preview_spremenljivka #arrow_left{background-image:url("../../../main/survey/skins/Default/arrowL.png")}#preview_spremenljivka #arrow_left:hover{background-image:url("../../../main/survey/skins/Default/arrowL2.png")}#preview_spremenljivka #arrow_right{background-image:url("../../../main/survey/skins/Default/arrowR.png")}#preview_spremenljivka #arrow_right:hover{background-image:url("../../../main/survey/skins/Default/arrowR2.png")}#preview_spremenljivka #dynamic_count{width:60px;padding:7px 0;font-weight:bold;color:green}#tip_preview{position:absolute;display:none;z-index:9999;width:auto;height:auto;pointer-events:none}.tip_preview_sub{display:none;margin:10px 10px 10px 10px}.tip_preview_sub>span{padding:10px}.inside{min-width:380px;background-color:#f5fafe;border:1px #c8e3f8 solid}.tip_sample{padding:10px;overflow:hidden;margin-top:10px}.tip_sample div.spremenljivka div.naslov{font-weight:bold;width:auto;padding:0}.tip_sample div.spremenljivka div.naslov p{margin:0}.tip_sample_text{font-weight:500}.tip_sample_option{padding-left:5px;width:100%}.tip_sample_option div{display:block;float:left;width:100px}.tip_sample_option span{display:block;float:left;width:80px;text-align:center;margin-bottom:3px}.tip_sample_option2{padding-left:5px;width:100%}.tip_sample_option2 div{display:block;float:left;width:100px}.tip_sample_option2 span{display:block;float:left;width:80px;text-align:center;margin-bottom:3px;width:60px}.popup_content.consulting{font-weight:600;padding:20px 20px;text-align:center}.popup_content.consulting .row{display:flex;justify-content:space-around;padding:10px 0}.popup_content.consulting .row .col{min-width:120px}.popup_content.consulting .row .col a{display:flex;flex-direction:column;text-align:center}.popup_content.dodeljeni_uporabniki ul{overflow:auto;max-height:60vh;padding:10px;margin:0 0 20px 0;list-style-type:none;background-color:#f0f7fd;border:1px solid #d5e9fa}.popup_content.dodeljeni_uporabniki ul li{display:flex;justify-content:space-between;line-height:24px;padding:0 5px}.popup_content.dodeljeni_uporabniki ul li:hover{background-color:#d5e9fa}.popup_content.dodeljeni_uporabniki h4{margin:0 0 5px 0}.popup_content.dodeljeni_uporabniki .add_user{box-sizing:border-box;width:100%;padding:10px;margin-bottom:50px;background-color:#f0f7fd;border:1px solid #d5e9fa}#new_anketa_div{position:relative;min-height:600px}.noSurvey_sequence{padding:70px 50px 70px 50px}.noSurvey_sequence .main_holder{max-width:1400px;margin:0 auto 70px auto}.noSurvey_sequence .main_holder.main{display:flex;align-items:center}.noSurvey_sequence .main_holder.main .left_holder{width:50%;margin:0 20px}.noSurvey_sequence .main_holder.main .right_holder{width:50%;margin:0 20px}.noSurvey_sequence .main_holder.main .right_holder img{width:100%}.noSurvey_sequence .main_holder span.title{clear:both;display:block;margin-bottom:20px;color:#1e88e5;font-weight:600;font-size:28px;text-align:left}.noSurvey_sequence .main_holder h2{color:#333}.noSurvey_sequence .main_holder p{padding:10px 0 !important;font-size:17px;line-height:28px}.noSurvey_sequence .main_holder ul{margin-left:30px !important}.noSurvey_sequence .main_holder ul li{font-size:16px !important;border:0 !important;padding-bottom:40px !important}.noSurvey_sequence .main_holder ul li span.new_survey_text{margin:0 0 0 0 !important;padding:0 0 0 0 !important;clear:both;display:block}.noSurvey_sequence .main_holder ul li div.new_survey_link{font-size:16px;font-weight:600;color:#1e88e5;float:left;margin:14px 0 0 0 !important}.noSurvey_sequence .main_holder ul li div.new_survey_link:hover{color:#ffa608}.noSurvey_sequence .main_holder ul li div.new_survey_link input{margin-bottom:8px}.noSurvey_sequence .main_holder ul.features{margin-left:30px !important}.noSurvey_sequence .main_holder ul.features li{font-size:14px !important;border:0 !important;padding-bottom:5px !important}.noSurvey_sequence .main_holder ul.features li a{font-size:14px;font-weight:500}.noSurvey_sequence .buttons_holder{display:flex;justify-content:center}.noSurvey_sequence .buttons_holder a .button{box-sizing:border-box;width:220px;margin:0 30px;padding:27px 30px;font-weight:bold;font-size:16px;letter-spacing:1px;text-transform:uppercase;text-align:center;color:#fff;word-spacing:160px;background-color:#1e88e5;transition:.2s}.noSurvey_sequence .buttons_holder a .button:hover{background-color:#ffa608}.noSurvey_sequence .buttons_holder a .button.button_gray{padding:27px 10px;color:#333;background-color:#c8e3f8}.noSurvey_sequence .buttons_holder a .button.button_gray:hover{color:#fff;background-color:#1e88e5}#new_anketa_div #left_menu{position:absolute;width:240px;height:100%;padding:0;background-color:#fff;border-right:1px solid #c8e3f8}#new_anketa_div #left_menu .title{display:block;margin:0px 0 1px 0;padding:20px 0 20px 30px;color:#fff;font-size:16px;font-weight:600;text-transform:uppercase;background-color:#1e88e5}#new_anketa_div #left_menu .item{display:block;margin:0px 0 1px 0;padding:20px 0 20px 30px;color:#606060;font-size:15px;font-weight:400;text-transform:uppercase;background-color:#dfeffb}#new_anketa_div #left_menu .item:hover{background-color:#c8e3f8}#new_anketa_div #left_menu .item.active{background-color:#ffdda1}#new_anketa_div #left_menu ul{list-style-type:none;padding-left:30px;margin:25px 0 15px 0}#new_anketa_div #left_menu ul li{padding:0 0 10px 0}#new_anketa_div #left_menu ul li a{font-size:14px;color:#606060}#new_anketa_div #left_menu ul li a:hover{color:#1e88e5}#new_anketa_div #left_menu ul li .active{color:#1e88e5}#new_anketa_div #right_content{color:#333;position:relative;width:calc(100%-240px);max-width:1300px;min-height:200px;margin-left:240px;padding:30px 35px}#new_anketa_div #right_content .fieldset{width:100%;padding:0 0 20px 0;margin-bottom:20px;font-size:15px;font-weight:400}#new_anketa_div #right_content .fieldset .title{padding:10px 0 20px 0;color:#333;font-size:20px;font-weight:500}#new_anketa_div #right_content .fieldset .setting{padding:0 0 7px 15px}#new_anketa_div #right_content .fieldset .setting .radioSetting_type.active{color:#404040}#new_anketa_div #right_content .fieldset .setting input{padding:0;margin:0}#new_anketa_div #right_content .fieldset .setting select{padding:2px 5px;margin:0;width:302px;font-size:12px;border:1px solid #c8e3f8 !important;border-radius:1px}#new_anketa_div #right_content .fieldset .setting input[type=file]{height:24px;width:240px;font-size:10px}#new_anketa_div #right_content .fieldset .setting input[type=text]{padding:10px 12px;width:310px;font-size:15px;border:1px solid #c8e3f8 !important;border-radius:1px}#new_anketa_div #right_content .fieldset .setting #novaanketa_akronim_1_chars{float:right;padding-right:15px;font-weight:400;font-size:11px}#new_anketa_div #right_content .fieldset .setting #novaanketa_naslov_1_chars{float:right;padding-right:7px;font-weight:400;font-size:11px}#new_anketa_div #right_content .fieldset .setting input[type=radio]{margin:0 8px 4px 0;display:none !important}#new_anketa_div #right_content .fieldset .setting input[type=radio]+span.enka-checkbox-radio{font-size:16px;font-weight:400}#new_anketa_div #right_content .fieldset .setting input[type=radio]+span.enka-checkbox-radio:before{font-family:"Font Awesome 5 Free";display:inline-block;content:"";letter-spacing:10px}#new_anketa_div #right_content .fieldset .setting input[type=radio]+span.enka-custom-radio:before{font-family:"Font Awesome 5 Free";display:inline-block}#new_anketa_div #right_content .fieldset .setting input[type=radio]:checked+span.enka-checkbox-radio:before{content:""}#new_anketa_div #right_content .fieldset .setting input[type=checkbox]{display:none !important}#new_anketa_div #right_content .fieldset .setting input[type=checkbox]+span.enka-checkbox-radio{font-size:16px;font-weight:400;color:#1e88e5}#new_anketa_div #right_content .fieldset .setting input[type=checkbox]+span.enka-checkbox-radio:before{font-family:"Font Awesome 5 Free";display:inline-block;content:"";letter-spacing:10px}#new_anketa_div #right_content .fieldset .setting input[type=checkbox]:checked+span.enka-checkbox-radio:before{content:"";letter-spacing:8px}#new_anketa_div #right_content .fieldset .setting .custom_radio_picture.obarvan>label>span.enka-custom-radio:before{color:#1e88e5}#new_anketa_div #right_content .fieldset .setting .visual-radio-scale.checked .enka-vizualna-skala::before{color:#1e88e5}#new_anketa_div #right_content .fieldset .setting.archive{margin-top:20px;font-weight:500;font-size:14px}#new_anketa_div #right_content .fieldset .survey_title_text_holder{display:flex;flex-direction:row;justify-content:flex-start}#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text{width:350px;margin-right:20px}#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text span{line-height:28px}#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text select{height:40px;width:330px;font-size:15px !important}#new_anketa_div #right_content .fieldset .survey_type_holder{display:flex;flex-direction:row;justify-content:flex-start}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type{cursor:pointer;width:300px;margin:0 30px 60px 15px;padding:15px 18px;border:1px #c8e3f8 solid;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type:hover{background-color:#ecf5fd}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type span{line-height:28px}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_title{font-size:17px;font-weight:500}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_title .help{vertical-align:top}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_text{font-size:13px;line-height:26px}#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type.active{border-color:#ffa608;background-color:#fff0d4}#new_anketa_div #right_content .fieldset.noSurvey_skin{overflow:hidden;height:270px;display:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #skins_holder{overflow:hidden;position:absolute;height:220px;width:83%;left:120px;margin-top:10px}#new_anketa_div #right_content .fieldset.noSurvey_skin #skins_holder #noSurvey_skins{width:3450px}#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin{cursor:pointer;float:left;margin:0 10px;padding:5px 5px 15px 5px;font-size:13px;text-transform:uppercase;background-color:#dfeffb;border:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin:hover{color:#404040;background-color:#c8e3f8;border:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin .preview{width:200px;height:150px;margin-bottom:4px;border:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin.selected{color:#404040;background-color:#ffdda1;border:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin.selected .preview{border:none}#new_anketa_div #right_content .fieldset.noSurvey_skin #skin_arrow_left{float:left;width:30px;height:40px;margin-top:80px;margin-left:20px}#new_anketa_div #right_content .fieldset.noSurvey_skin #skin_arrow_right{float:right;width:30px;height:40px;margin-top:80px}#new_anketa_div #right_content .noSurvey_buttons{width:auto;margin:20px auto;text-align:center}#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_create{display:inline-block;padding:12px 0px;margin:8px 15px;width:120px;text-align:center;font-size:15px;font-weight:500;border-radius:40px;-moz-border-radius:40px;-webkit-border-radius:40px;color:#fff;background-color:#1e88e5}#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_create:hover{background-color:#ffa608}#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_cancel{display:inline-block;padding:11px 0px;margin:8px 15px;width:120px;text-align:center;font-size:15px;font-weight:500;border-radius:40px;-moz-border-radius:40px;-webkit-border-radius:40px;color:#1e88e5 !important;background-color:#fff;border:1px #1e88e5 solid}#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_cancel:hover{background-color:#1e88e5;color:#fff !important}#new_anketa_div #right_content .noSurvey_template{overflow:auto}#new_anketa_div #right_content .noSurvey_template .template{cursor:pointer;float:left;margin:0 30px 30px 20px;width:200px}#new_anketa_div #right_content .noSurvey_template .template:hover{color:#404040}#new_anketa_div #right_content .noSurvey_template .template .template_content{overflow:hidden;width:200px;height:189px;margin:0 10px;padding:5px 5px 5px 5px;background-color:#dfeffb;border:none}#new_anketa_div #right_content .noSurvey_template .template .template_content:hover{background-color:#c8e3f8;border:none}#new_anketa_div #right_content .noSurvey_template .template .template_content .template_content_white{width:190px;height:120px;padding:15px 5px;text-align:center;font-size:12px;font-weight:400;background-color:#fff}#new_anketa_div #right_content .noSurvey_template .template .template_content .template_title{font-size:13px;text-transform:uppercase}#new_anketa_div #right_content .noSurvey_template .template .template_preview{margin-right:-15px;float:right;padding:5px 0 5px 5px;font-size:12px;font-weight:400}#new_anketa_div #right_content .noSurvey_template .template.selected{color:#404040}#new_anketa_div #right_content .noSurvey_template .template.selected .template_content{background-color:#ffdda1;border:none}#new_anketa_div #right_content .anketa_from_text{height:auto;overflow:auto}#new_anketa_div #right_content .anketa_from_text .from_text_instructions{line-height:14px;margin-bottom:10px}#new_anketa_div #right_content .anketa_from_text #input_field_holder{float:left;width:50%;height:400px;box-sizing:border-box;padding:20px}#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field{width:100%;height:100%}#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea{width:100%;height:100%;box-sizing:border-box;resize:none;padding:20px;border:1px #c8e3f8 solid !important}#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder{color:transparent}#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder{color:transparent}#new_anketa_div #right_content .anketa_from_text #preview_field_holder{float:right;width:50%;height:400px;box-sizing:border-box;padding:20px}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field{width:100%;height:100%;box-sizing:border-box;overflow:auto;padding:20px;background-color:#f5fafe;border:1px #c8e3f8 solid}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.title{font-size:18px;line-height:30px}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable{font-size:15px;font-weight:400}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]{display:none !important}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]+span.enka-checkbox-radio:before{font-family:"Font Awesome 5 Free";content:"";display:inline-block;font-size:14px;color:#aaa;letter-spacing:8px;font-weight:400}#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked+span.enka-checkbox-radio:before{content:"";color:#333}input[type=radio]+span.enka-checkbox-radio{color:#1e88e5}select#my_surveys{padding:5px 8px;margin-left:15px;height:30px;font-size:12px;border:1px solid #b9c5d9 !important;border-radius:1px}.noSurvey_skin #noSurvey_skins .skin:hover .preview{background-color:#ffdda1;border:1px #dfeffb solid}#novaanketa_naslov_1{margin-bottom:3px;width:290px;color:#000}#novaanketa_akronim_1{margin-bottom:3px;width:290px;color:#000}#novaanketa_naslov_1.full{width:290px;color:#000}#novaanketa_opis{width:290px;color:#000}#novaanketa_akronim_1.full{width:510px !important;max-width:510px !important;color:#000}#novaanketa_opis_1.full{width:505px !important;max-width:505px !important;vertical-align:top;color:#000}#novaanketa_naslov_1_chars{display:inline-block;min-width:40px;height:auto}#language_select{position:absolute;z-index:78;right:40px;top:139px;font-weight:500}#language_select a{display:flex;align-items:center}#language_select a .flag{height:14px;width:24px;margin-right:7px;background-size:100% 30px;background-position:center;border:1px #d3d3d3 solid}#language_select a .flag.slo{background-image:url("../img/flags/flag_slo.svg")}#language_select a .flag.eng{background-image:url("../img/flags/flag_eng.svg")}#anketa_new_float{margin-left:10px;width:auto;padding:0px}#anketa_new_float span{font-size:13px}#anketa_new_float span div.buttonwrapper{margin-top:3px}#buttonCreate{text-align:center;background-color:#ffa608;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;transition:.1s}#buttonCreate:hover{background-color:#ffb83b}#buttonCreate a{display:inline-block;padding:10px 14px;color:#fff;font-size:16px;font-weight:600}#sortButton{cursor:pointer;float:right;margin-right:20px;margin-left:10px;padding:8px 12px;font-size:16px;font-weight:600;text-align:center;color:#1e88e5;border:1px #1e88e5 solid;background-color:#fff;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;transition:.1s}#sortButton:after{font-family:"Font Awesome 5 Free";display:inline-block;content:"";margin-left:5px}#sortButton:hover{background-color:#f0f7fd}#sortButton:hover #sortSettings{visibility:visible;opacity:1;-moz-transition-delay:0s;-o-transition-delay:0s;-ms-transition-delay:0;-webkit-transition-delay:0s;transition-delay:0s;right:60px}#filterButton{cursor:pointer;float:right;margin-right:20px;margin-left:10px;padding:8px 12px;font-size:16px;font-weight:600;text-align:center;color:#1e88e5;border:1px #1e88e5 solid;background-color:#fff;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;transition:.1s}#filterButton:after{font-family:"Font Awesome 5 Free";display:inline-block;content:"";margin-left:5px}#filterButton:hover{background-color:#f0f7fd}#filterButton:hover #filterSettings{visibility:visible;opacity:1;-moz-transition-delay:0s;-o-transition-delay:0s;-ms-transition-delay:0;-webkit-transition-delay:0s;transition-delay:0s;right:210px}#filterButton.active{background-color:#d5e9fa}#folderSwitch{cursor:pointer;float:right;margin-right:20px;margin-left:10px;padding:8px 12px;font-size:16px;font-weight:600;text-align:center;color:#1e88e5;border:1px #1e88e5 solid;background-color:#fff;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;right:375px;transition:.1s}#folderSwitch:hover{background-color:#f0f7fd}#folderSwitch.active{background-color:#d5e9fa}#sortSettings{visibility:hidden;opacity:0;position:absolute;right:0;z-index:9999;width:160px;margin-top:12px;padding:0 10px;text-align:left;font-size:12px;font-weight:400;background-color:#fff;border:1px solid #1e88e5;-moz-transition-delay:.7s;-o-transition-delay:.7s;-ms-transition-delay:.7s;-webkit-transition-delay:.7s;transition-delay:.7s}#sortSettings ul li.active{background-color:#fff;font-weight:500}#sortSettings ul li .sprites{float:right;margin:8px 10px 0 0}#sortSettings ul a li{color:#1e88e5}#sortSettings ul a:hover li{color:#ffa608}#filterSettings{visibility:hidden;opacity:0;position:absolute;right:0;z-index:9999;width:160px;margin-top:12px;padding:0 10px;text-align:left;font-size:12px;font-weight:400;background-color:#fff;border:1px solid #1e88e5;-moz-transition-delay:.7s;-o-transition-delay:.7s;-ms-transition-delay:.7s;-webkit-transition-delay:.7s;transition-delay:.7s;width:200px}#filterSettings ul li.active{background-color:#fff;font-weight:500}#filterSettings ul li .sprites{float:right;margin:8px 10px 0 0}#filterSettings ul a li{color:#1e88e5}#filterSettings ul a:hover li{color:#ffa608}#filterSettings .filter_title{color:#1e88e5;font-weight:500;line-height:22px}#filterSettings label{line-height:12px}span#sl_language{padding:2px 5px;width:auto;display:inline-block;margin:3px 5px 3px 20px}#searchSettings,#searchLibrarySettings{clear:both;float:left;width:500px;margin:-50px 0 20px 0;padding:10px;background-color:#f5fafe;border:1px solid #c8e3f8}#searchSettings span.title,#searchLibrarySettings span.title{color:#1e88e5;font-weight:600;font-size:13px}#searchSettings p,#searchLibrarySettings p{margin:10px 0 12px 10px !important;padding:0 !important}#searchSettings input[type=text],#searchLibrarySettings input[type=text]{padding:2px 4px}#searchSettings input[type=submit],#searchLibrarySettings input[type=submit]{padding:2px 4px}#searchSettings input[type=text]#searchMySurveyText,#searchLibrarySettings input[type=text]#searchMySurveyText{width:200px;font-size:12px;padding:2px 5px}#searchSettings span.link,#searchLibrarySettings span.link{float:left;margin-top:20px;font-weight:500}#searchLibrarySettings{margin:0 0 20px 0}.folder_holder.level1{margin-top:35px}.folder_holder .folder_content{margin-left:20px;padding:0}.folder_holder .folder_content.closed{display:none}.folder_holder .folder_content.subfolder{margin-bottom:5px}.folder_holder .folder_title{padding:4px;border:1px solid transparent;margin:15px 0 15px 0;font-size:12px;font-weight:600}.folder_holder .folder_title a{vertical-align:0px}.folder_holder .folder_title a span{vertical-align:middle}.folder_holder .folder_title a span:before{display:table-cell;vertical-align:middle}.folder_holder .folder_title span{vertical-align:middle}.folder_holder .folder_title .folder_title_text{margin-left:5px}.folder_holder .folder_title .folder_title_text a{cursor:text}.folder_holder .folder_title .folder_title_text a:hover{color:#1e88e5}.folder_holder .folder_title .folder_title_text input[type=text]{font-size:12px;padding:2px 3px}.folder_holder .folder_title .map_holder_control{display:none}.folder_holder .folder_title:hover .map_holder_control{display:inline-block}.folder_holder .folder_title span.folder_blue{cursor:move}.folder_holder #folder_content_0{padding-bottom:50px}.folder_holder table#surveyList_new{margin-bottom:20px}.folder_holder table#surveyList_new tr.anketa_list td.col3{cursor:move}.folderhover{background-color:#fff0d4 !important;border:1px solid #ffb83b !important;border-radius:5px 5px 5px 5px}.mySurvey_draggable_helper{cursor:move}.mySurvey_draggable_helper .map_holder_control{display:none}.mySurvey_draggable_helper td{display:none;border:0}.mySurvey_draggable_helper td.col3{display:inline-block;border:0 !important}.mySurvey_draggable_helper span.minus{display:none !important}.mySurvey_draggable_helper span.map_holder_control{display:none !important}#main #moje_ankete_edit{box-sizing:border-box;width:100%;padding:30px 40px 40px 30px}#main #moje_ankete_edit.page_pregledovanje,#main #moje_ankete_edit.page_{padding:50px 60px}#main #moje_ankete_edit.subpage_b_new_survey,#main #moje_ankete_edit.subpage_b_video,#main #moje_ankete_edit.subpage_b_features,#main #moje_ankete_edit.page_ustvari_anketo{padding:0}#main #moje_ankete_edit fieldset{max-width:1200px}#survey_list{min-height:570px;padding:0px}#survey_list .search_title{margin:15px 0;float:left;font-size:15px;color:#1e88e5;font-weight:600}#survey_list #searchMySurveys{clear:both;display:block;float:left;margin:25px 0 10px 0;padding:10px}#survey_list #searchMySurveys input[type=text]{width:200px;padding:4px 0 4px 7px;font-size:12px;border:1px solid #c8e3f8}#survey_list #searchMySurveys .buttonwrapper{margin:-2px 0 0 2px;padding:1px 3px}#survey_list #pagination{margin-top:5px;margin-left:20%}#survey_list #pagination.bottom{float:left;margin-top:-15px;margin-left:50%;transform:translateX(-50%)}#survey_list p{padding:10px}#survey_list ul{list-style:none;width:100%;padding:0px;margin:0px;overflow:hidden}#survey_list li{overflow:hidden;display:block;width:100%;padding:5px 0px;margin:0px;font-size:13px;color:#4d4d4d;border-bottom:1px #f5fafe solid}#survey_list li div{padding:3px 2px;margin:0px;overflow:hidden;line-height:16px}#survey_list li div a{text-decoration:none}#survey_list li div a img{padding-right:2px}#survey_list li div a span.sprites{margin-right:2px}div#sl_userNote{display:inline-block;width:auto;padding:2px 5px;margin:3px 5px 3px 25px;border:1px #1e88e5 solid;background-color:#f5fafe;color:#1e88e5}div#sl_userNote span:hover{color:#ffa608}div#sl_mySurveys{width:auto;display:inline-block;margin:3px 5px 3px 40px;padding:2px 5px;color:#1e88e5}div#sl_mySurveys:hover{color:#ffa608}ul #surveyList{list-style:none;width:100%;padding:0px;margin:0px;overflow:hidden}.survey_list_box{min-height:250px !important}.users_list_box{min-height:250px !important}.users_list_box .add_user{display:flex;align-items:flex-start}.users_list_box .add_user fieldset{width:500px}.users_list_box .add_user fieldset.new_user{margin:40px 40px 0 0}#survey_list_inner{padding:10px;width:auto;height:auto}.sl_setting_link{position:absolute;top:170px;right:50px;text-align:center;background-color:#1e88e5;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}.sl_setting_link:hover{background-color:#ffa608}.sl_setting_link a{display:inline-block;padding:8px 12px;color:#1e88e5;font-size:16px;font-weight:bold}.sl_div_error_holder{margin:0px;padding:0px 0px 0px 10px}.sl_div_error{width:100%}.div_sl_new{padding:50px 0px}table#surveyList_new{width:100%;padding:0px;margin:0px;overflow:hidden;font-size:12px;color:#404040;border-collapse:collapse}table#surveyList_new tr td{padding:8px 0;line-height:15px;border-bottom:1px #dfeffb solid}table#surveyList_new tr td .title{color:#1e88e5;font-size:15px;font-weight:600}table#surveyList_new tr td .title:hover{color:#ffa608}table#surveyList_new tr td .small{color:#999;font-size:10px}table#surveyList_new tr td .email{color:#1e88e5}table#surveyList_new tr td .email:hover{color:#ffa608}table#surveyList_new tr td .dot{cursor:default;width:8px;height:8px;margin:0 0 14px 5px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}table#surveyList_new tr td .dot.grey{background-color:#c8e3f8}table#surveyList_new tr td .dot.orange{background-color:#ffa608}table#surveyList_new tr td .dot.blue{background-color:#1e88e5}table#surveyList_new tr td.col2{padding:15px 0 0 0 !important}table#surveyList_new tr.sl_header_new{height:25px;padding:0px;margin:0px}table#surveyList_new tr.sl_header_new td{cursor:pointer;padding:0px;color:gray;font-size:12px}table#surveyList_new tr.sl_header_new td:hover{color:#1e88e5}table#surveyList_new tr.sl_header_new td div.active{color:#1e88e5}table#surveyList_new tr.sl_header_new td.col1{width:40px}table#surveyList_new tr.sl_header_new td.col2{width:40px}table#surveyList_new tr.sl_header_new td.col4{width:110px}table#surveyList_new tr.sl_header_new td.col5{width:120px}table#surveyList_new tr.sl_header_new td.col6{width:120px}table#surveyList_new tr.sl_header_new td.col7{width:190px}table#surveyList_new tr.sl_header_new td.col8{width:50px}table#surveyList_new tr.sl_header_new td.col9{width:50px}table#surveyList_new tr.sl_header_new td.col10{width:50px}#survey_list_info{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);position:absolute;display:none;width:400px;white-space:normal}#survey_list_info .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#survey_list_info .popup_close:hover{color:#1e88e5}#survey_list_info .popup_close a{color:#d3d3d3}#survey_list_info .popup_close a:hover{color:#1e88e5}#survey_list_info h2,#survey_list_info .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#survey_list_info p{line-height:20px}#survey_list_info.popup_violet{border-left:6px #921ee5 solid !important}#survey_list_info.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#survey_list_info.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#survey_list_info.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#survey_list_info.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#survey_list_info.popup_orange{border-left:6px #ffa608 solid !important}#survey_list_info.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#survey_list_info.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#survey_list_info.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#survey_list_info.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#survey_list_info.popup_red{border-left:6px red solid !important}#survey_list_info.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#survey_list_info.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#survey_list_info.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#survey_list_info.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#survey_list_info .survey_info_title{color:#000 !important;font-size:14px;font-weight:600}#survey_list_info span.space{display:inline-block;width:95px;padding:2px 0px;font-weight:600}#survey_list_info .infoData{margin-left:95px;width:auto}#survey_list_info span.arrow{left:12%}#pagination{padding:0px 10px;float:left}#pagination div{float:left;margin:3px 3px;display:inline;border:1px solid #1e88e5;background-color:#fff;padding:2px 6px}#pagination div:hover{background-color:#f0f7fd}#pagination div a{display:block;text-decoration:none;color:#1e88e5}#pagination div.currentPage{padding:2px 6px;color:#fff;background-color:#1e88e5}#pagination div.currentPage_small{color:#1e88e5 !important}#pagination div.currentPage_small a{color:#fff !important;background:#1e88e5}#pagination div.spacePage{color:#1e88e5;font-weight:normal;text-decoration:none;background:none;padding:2px 6px;border:none}#pagination div.disabledPage{color:#c8e3f8;background:#fff;border:1px solid #c8e3f8;padding:2px 6px}#pagination div.justtext{border:none;background:#fff;padding:2px 6px}.quick_edit_container #pagination{margin:0 300px 0 240px;padding:5px 0px}table.gdpr_surveys{max-width:1200px;padding:0px;margin:30px 0 10px 0;font-size:13px;color:#404040;border-collapse:collapse}table.gdpr_surveys tr th{padding:3px 10px;min-width:80px;border:1px solid #d3d3d3;text-align:center;font-weight:600;background-color:#c8e3f8}table.gdpr_surveys tr td{padding:3px 10px;min-width:80px;border:1px solid #d3d3d3;background-color:#f5fafe;text-align:center}table.gdpr_surveys tr.red_row td{background-color:#ffe8e8 !important}table.gdpr_surveys tr.green_row td{background-color:#a8eea8 !important}#form_gdpr_user_settings div.setting{height:25px}#form_gdpr_user_settings div.setting.red label{color:red}#form_gdpr_user_settings div.setting.red input{border:1px red solid !important}#form_gdpr_user_settings span.nastavitveSpan2{width:160px}#form_gdpr_user_settings input[type=text]{padding:3px 8px}#form_gdpr_user_settings input.red{border:1px red solid !important}#gdpr_authority_info{padding:10px 0 15px 0}.gdpr_authority_info_data{padding:0 0 0 20px}.requests_table_title{line-height:30px;margin-top:20px;font-size:14px;font-weight:600}a .requests_table_title{color:#1e88e5}#gdpr_additional_info input[type=text],#gdpr_data_settings input[type=text]{padding:2px;width:250px}#gdpr_additional_info input.line_text,#gdpr_data_settings input.line_text{margin:2px 0 2px 10px}#gdpr_additional_info input.line_text.long,#gdpr_data_settings input.line_text.long{width:400px}#gdpr_additional_info textarea,#gdpr_data_settings textarea{padding:5px}fieldset#gdpr_export_individual a,fieldset#gdpr_export_activity a{line-height:22px}fieldset#gdpr_export_individual a .faicon,fieldset#gdpr_export_activity a .faicon{margin-right:5px}fieldset#gdpr_export_individual a .faicon.preview,fieldset#gdpr_export_activity a .faicon.preview{margin-right:2px}fieldset#gdpr_export_individual a .faicon:before,fieldset#gdpr_export_activity a .faicon:before{font-size:16px !important}#preview_gdpr_export{height:auto;max-height:530px}#preview_gdpr_export h2{color:#333 !important}#preview_gdpr_export .content{max-height:450px;padding:10px 20px 20px 20px;margin-top:40px;line-height:18px;overflow-x:hidden;overflow-y:auto;background-color:#efefef}#form_profile_user_settings div.setting{min-height:25px}#form_profile_user_settings div.data{margin-top:6px;font-size:13px}#form_profile_user_settings span.setting_title{float:left;width:150px}#form_profile_user_settings input[type=text]{padding:3px 8px}#form_profile_user_settings input[type=radio]{vertical-align:0}#form_profile_user_settings input[type=password]{padding:3px 8px}#form_profile_user_settings .settings-2fa-code{display:block;width:390px;padding-left:150px;padding-top:20px}#form_profile_user_settings .google-2fa-validate,#form_profile_user_settings .google-2fa-deactivate{display:block;width:225px;padding-left:150px}#form_profile_user_settings #google-2fa-bvestilo{display:none;clear:both;padding:10px;color:#ffa608}table.login_tracking{max-width:1200px;padding:0px;margin:20px 0 5px 10px;font-size:13px;color:#404040;border-collapse:collapse}table.login_tracking tr th{padding:5px 10px;min-width:80px;border:1px solid #d3d3d3;text-align:center;font-weight:600;background-color:#c8e3f8}table.login_tracking tr td{padding:5px 10px;min-width:80px;border:1px solid #d3d3d3;background-color:#f5fafe;text-align:center}table.login_tracking tr.hide{display:none}.login_tracking_more{cursor:pointer;padding-left:10px;color:#1e88e5}#survey_list_settings{border:1px solid #900;background:#fff;height:570px;overflow:auto;width:810px}#survey_ListQickInfo{position:fixed;width:auto;z-index:90;background-color:#f8f8f8;padding:10px;border:1px solid #c8e3f8;top:50px;right:100px;font-size:12px;border-radius:7px;-moz-border-radius:7px;-webkit-border-radius:7px;box-shadow:0 0 15px gray;-moz-box-shadow:0 0 15px gray;-webkit-box-shadow:0 0 15px gray}#sortable{list-style-type:none;margin:0;padding:0;width:350px}#sortable li.sortable_noGroup{margin:0 3px 3px 3px;padding:3px 5px;font-size:13px;height:16px;border:1px solid gray;background-color:#efefef;color:gray;font-weight:bold;width:300px}#sortable li.sortable_noGroup:hover{border:1px solid #6cb1ee}#sortable li.sortable_group{margin:0 3px 3px 3px;padding:3px 5px;font-size:13px;height:auto;border:1px dashed gray;background-color:#fff;color:gray;font-weight:bold;width:300px}#sortable li.sortable_group:hover{border:1px solid #c8e3f8}#sortable li.sortable_group div#group_holder #sortableGroup li.sortable_noGroup{float:left;width:260px}#sortableGroup{list-style-type:none;margin:0;padding:0;width:200px}#sortableGroup li.sortable_noGroup{padding:3px 5px;font-size:13px;height:17px;border:1px solid gray;background-color:#efefef;color:gray;font-weight:bold}li.sortable_noGroup{margin:0 3px 3px 3px;padding:4px 5px;font-size:13px;height:17px;border:1px solid gray;background-color:#efefef;color:gray;font-weight:bold}#success_save{color:#ffa608;width:auto;padding:5px;margin:5px 0px;display:none}.no-cookie{visibility:hidden;display:inline}#vrednost_edit.edit_user{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);width:700px}#vrednost_edit.edit_user .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#vrednost_edit.edit_user .popup_close:hover{color:#1e88e5}#vrednost_edit.edit_user .popup_close a{color:#d3d3d3}#vrednost_edit.edit_user .popup_close a:hover{color:#1e88e5}#vrednost_edit.edit_user h2,#vrednost_edit.edit_user .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#vrednost_edit.edit_user p{line-height:20px}#vrednost_edit.edit_user.popup_violet{border-left:6px #921ee5 solid !important}#vrednost_edit.edit_user.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#vrednost_edit.edit_user.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#vrednost_edit.edit_user.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#vrednost_edit.edit_user.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#vrednost_edit.edit_user.popup_orange{border-left:6px #ffa608 solid !important}#vrednost_edit.edit_user.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#vrednost_edit.edit_user.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#vrednost_edit.edit_user.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#vrednost_edit.edit_user.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#vrednost_edit.edit_user.popup_red{border-left:6px red solid !important}#vrednost_edit.edit_user.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#vrednost_edit.edit_user.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#vrednost_edit.edit_user.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#vrednost_edit.edit_user.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#vrednost_edit.edit_user .edit_user_content{display:flex}#vrednost_edit.edit_user .edit_user_content .user_settings{width:450px}#vrednost_edit.edit_user .edit_user_content .user_settings .segment{margin-bottom:20px;padding:10px;background-color:#f5fafe;border:1px solid #c8e3f8}#vrednost_edit.edit_user .edit_user_content .user_settings .segment p{margin:5px 0;line-height:16px}#vrednost_edit.edit_user .edit_user_content .user_settings .segment label{width:140px;font-weight:500}#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=text],#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=password]{width:200px;padding:2px 5px;color:#333;border:1px solid #c6c6c6}#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=radio]{margin-left:0}#vrednost_edit.edit_user .edit_user_content .survey_list{width:230px;max-height:400px;overflow-y:auto;margin-top:45px;margin-left:20px;padding:0 10px 10px 10px;background-color:#f5fafe;border:1px solid #c8e3f8}#vrednost_edit.edit_user .edit_user_content .survey_list ul{padding-left:15px;list-style-type:none;line-height:18px}#globalSetingsLinks{float:left;z-index:78;display:inline-block;width:220px;font-size:13px;padding:0px;margin:0 20px 0 0}#globalSetingsLinks h2{padding:0px;margin:0 20px 0 0;padding:2px;font-size:14px;font-weight:600}#globalSetingsLinks ul{padding:5px;margin:0px;list-style:none}#globalSetingsLinks ul li{padding:4px 0px 4px 20px;border-bottom:1px #efefef solid;color:#ffa608;font-weight:normal}#globalSetingsLinks ul li a{color:#1e88e5}#globalSetingsLinks ul li.highlightLineTab{color:#ffa608;font-weight:normal}#globalSetingsLinks ul li.highlightLineTab a{color:#ffa608;font-weight:normal}#globalSetingsLinks ul li.highlightLineTab a span{color:#ffa608;font-weight:500}#globalSetingsLinks ul li.nonhighlight a:hover{color:#ffa608;font-weight:normal}#globalSetingsLinks ul li.nonhighlight a:hover span{color:#ffa608;font-weight:normal}#globalSetingsLinks ul li.nonhighlight a span.extended{color:#ffa608;font-weight:500}#globalSetingsLinks ul li.highlightLineTab.navi_tracking{background-image:none !important}#globalSetingsLinks ul#sub_navi_alert li{padding-left:30px}#globalSetingsLinks ul#sub_navi_tracking li{padding-left:30px}#topSettingsHolder{position:relative;box-sizing:border-box;width:100%;height:42px;margin:0;padding:6px 15px 5px 40px;color:#1e88e5;border-bottom:1px #c8e3f8 solid}#topSettingsHolder .borderLeft{padding-left:20px;border-left:1px dotted #c8e3f8}#additional_navigation{position:relative;display:inline-block;float:left;width:auto;margin:9px 0px 0 0;background:0}#additional_navigation a span{padding:2px 50px 2px 0;font-size:12px;font-weight:500;color:#1e88e5}#additional_navigation a:hover span{color:#ffa608}#additional_navigation a span.active{color:#ffa608;background:0}#additional_navigation a span.faicon.arrow_back{padding:0;line-height:0px;margin-right:40px}#toggleDataCheckboxes{cursor:pointer;position:relative;display:inline-block;width:auto;padding:2px 40px !important;margin:0 0 0 0;font-weight:500}#toggleDataCheckboxes:hover{color:#ffa608 !important}#toggleDataCheckboxes span{margin-right:3px}#toggleDataCheckboxes2{cursor:pointer;margin:0 0 10px 10px;color:#1e88e5}#toggleDataCheckboxes2:hover{color:#ffa608 !important}#toggleDataCheckboxes2 .faicon{vertical-align:-2px;padding-right:5px}#dataSettingsCheckboxes{width:calc(100% + 50px);padding:10px 10px 18px 20px;margin:-30px 0 20px -40px;background-color:#f5fafe;border-bottom:1px solid #c8e3f8}#dataSettingsCheckboxes #toggleDataCheckboxes{clear:both;float:none;margin:0 0 10px 0}#dataSettingsCheckboxes #toggleDataCheckboxes span{margin-bottom:2px}#dataSettingsCheckboxes:not(.paraAnalysisGraph){height:80px}#notifications{min-height:500px}#notifications .sent_list{display:inline;float:left;width:470px;min-height:200px;margin-right:60px}#notifications .sent_list ul{padding-left:0}#notifications .sent_list ul li{list-style-type:none;margin:5px 0;padding:5px 8px;background-color:#f5fafe;border:1px #c8e3f8 solid}#notifications .sent_list ul li.unread{border:1px #ffa608 solid;background-color:#ffdda1}#notifications .recieved_list{display:inline;float:left;width:470px;min-height:200px;margin-right:60px}#notifications .recieved_list ul{padding-left:0}#notifications .recieved_list ul li{list-style-type:none;margin:5px 0;padding:5px 8px;background-color:#f5fafe;border:1px #c8e3f8 solid}#notifications .recieved_list ul li:hover{cursor:pointer;background-color:#c8e3f8;border:1px #1e88e5 solid}#notifications .recieved_list ul li.unread{border:1px #ffa608 solid;background-color:#ffdda1}#notifications .recieved_list ul li.active{cursor:pointer;border:1px #1e88e5 solid}#notifications #message{display:inline;float:left;margin-top:30px;padding:20px;width:415px;background-color:#f5fafe;border:1px #d3d3d3 solid}#notifications .send_form{display:inline;float:left;margin-top:30px;padding:20px;width:415px;background-color:#f5fafe;border:1px #d3d3d3 solid;color:#404040 !important}#notifications .send_form input[type=text]{width:400px;padding:3px 5px;border:1px solid #d3d3d3 !important;color:#333 !important}#notifications .send_form textarea{width:400px;padding:3px 5px;border:1px solid #d3d3d3 !important;color:#333 !important}#new_notification_alert{cursor:pointer;position:absolute;top:15px;left:0;right:0;margin:0 auto;padding:5px 8px;width:300px;height:20px;line-height:20px;text-align:center;vertical-align:middle;font-weight:600;font-size:13px;color:#fff;background-color:#ffa608}#unread_notifications{display:none;height:auto;width:500px;margin:0 auto}#unread_notifications ul{padding-left:0;margin-bottom:50px;line-height:18px}#unread_notifications ul li{list-style-type:none;margin:5px 0;padding:5px 8px;background-color:#f5fafe;border:1px #c8e3f8 solid}#unread_notifications a{color:#1e88e5}#unread_notifications .gdpr_popup_radio{padding-top:6px}#unread_notifications .gdpr_popup_radio input{vertical-align:top;margin-top:2px}#variable_holder input[type=checkbox].enka-admin-custom,#variable_holder input[type=radio].enka-admin-custom{display:none !important}#variable_holder input[type=checkbox].enka-admin-custom+span.enka-checkbox-radio:before,#variable_holder input[type=radio].enka-admin-custom+span.enka-checkbox-radio:before{font-family:"Font Awesome 5 Free";display:inline-block;font-size:14px;color:#aaa;font-weight:400}#variable_holder input[type=checkbox].enka-admin-custom.enka-inline+span.enka-checkbox-radio:before,#variable_holder input[type=radio].enka-admin-custom.enka-inline+span.enka-checkbox-radio:before{display:inline-block;float:left;padding-top:4px;padding-left:4px;font-weight:400}#variable_holder input[type=checkbox].enka-admin-custom+span.enka-checkbox-radio:before{content:"";letter-spacing:10px}#variable_holder input[type=radio].enka-admin-custom+span.enka-checkbox-radio:before{content:"";letter-spacing:8px}#variable_holder input[type=checkbox].enka-admin-custom:checked+span.enka-checkbox-radio:before{content:"";color:#333;letter-spacing:8px}#variable_holder input[type=radio].enka-admin-custom:checked+span.enka-checkbox-radio:before{content:"";color:#333}#toolbox_basic{position:fixed;z-index:50;top:255px;left:1px;height:335px;width:50px;background-color:#1e88e5;border:0}#toolbox_basic div.new_adv{cursor:default;cursor:pointer;margin:0px 1px;padding:8px 4px;text-align:center;background-color:#ee9800;background-repeat:repeat-y}#toolbox_basic p{margin:10px 3px 3px}#toolbox_basic p img{cursor:move}#toolbox_basic p span.sprites{margin-right:2px}#toolbox_basic .handle{color:#900;font-weight:bold}#toolbox_basic p.left{overflow:hidden;margin-left:0;margin-right:0;padding-left:9px;padding-right:2px}#toolbox_basic p.right{overflow:hidden;margin-left:0;margin-right:0;padding-left:9px;padding-right:2px}#toolbox_basic p.whole{overflow:hidden;margin-left:0;margin-right:0;padding-left:2%;padding-right:2%;margin-top:6px}#toolbox_basic p.new_spr{cursor:pointer;margin:0px 1px;padding:8px 4px;text-align:center}#toolbox_basic p.new_spr:hover{background-color:#1775c8}#toolbox_basic p.new_if{cursor:pointer;margin:0px 1px;padding:8px 4px;text-align:center}#toolbox_basic p.new_if:hover{background-color:#1775c8}#toolbox_basic p.new_pb{cursor:pointer;margin:0px 1px;padding:8px 4px;text-align:center}#toolbox_basic p.new_pb:hover{background-color:#1775c8}#toolbox_basic p.new_block{cursor:pointer;margin:0px 1px;padding:8px 4px;text-align:center}#toolbox_basic p.new_block:hover{background-color:#1775c8}#toolbox_add_advanced{display:none;cursor:auto;z-index:-1;position:fixed;top:218px;left:55px;width:495px;height:auto;min-height:100px;padding:0px 10px 10px 10px;background-color:#f5fafe;text-align:left;border:1px solid #c8e3f8}#toolbox_add_advanced p.toolbox_add_title{color:#1e88e5;font-weight:600;font-size:14px}#toolbox_add_advanced p.new_spr{float:left;cursor:pointer;width:150px;margin:1px 0px 1px 1px;padding:4px 7px;text-align:left}#toolbox_add_advanced p.new_spr:hover{background-color:#dfeffb}#toolbox_add_advanced p.new_loop{float:left;cursor:pointer;width:150px;margin:1px 0px 1px 1px;padding:4px 7px;text-align:left}#toolbox_add_advanced p.new_loop:hover{background-color:#dfeffb}#toolbox_add_advanced .holder{width:33%;float:left;border:0;background:0}#toolbox_add_advanced p.new_question{text-align:left}#toolbox_add_advanced .new_spr_spacer{float:left;cursor:pointer;width:150px;margin:1px 0px 1px 1px;padding:4px 7px;text-align:left;cursor:auto;height:18px}#toolbox_add_advanced p.naslov{float:left;width:150px;margin:10px 0 3px 0;padding:0 5px 0px 2px;font-size:13px;font-weight:600;text-align:left}#toolbox_add_advanced p span{display:none}#toolbox_advanced_settings{position:fixed;cursor:pointer;top:218px;left:1px;width:18px;height:19px;padding:5px 15px 6px;background-color:#f5fafe;border:1px #c8e3f8 solid}#toolbox_advanced_settings #toolbox_advanced_settings_holder{display:none;cursor:auto;z-index:99;position:fixed;top:218px;left:55px;width:auto;height:auto;min-height:100px;padding:10px 20px 0 10px;text-align:left;font-size:11px;border:1px solid #c8e3f8;background-color:#f5fafe}#toolbox_advanced_settings #toolbox_advanced_settings_holder span.advanced_settings_title{vertical-align:middle;padding:0 0 0 2px;color:#1e88e5;font-weight:600;font-size:12px}#toolbox_advanced_settings #toolbox_advanced_settings_holder span.advanced_setting{display:inline-block;text-align:center;width:20px;padding:3px 5px 0 0}#locked_toolbar{position:absolute;top:1px;left:1px;width:45px;height:194px;padding:140px 0 0 3px;background:rgba(22,109,186,.85)}#locked_toolbar span.lock_big{margin-left:13px}#toolbox_basic.forma{height:266px;top:235px}#toolbox_basic.forma #locked_toolbar{height:199px;padding-top:85px}.mobile_add_question{display:none}.mobile_add_question_popup{display:none}.nastavitveSpan4{display:table-cell;float:left;font-weight:500;width:55%;clear:both}.nastavitveSpan5{display:table-cell;float:left;font-weight:500;width:25%;clear:both}select#skin_anketa{max-width:120px;margin-bottom:2px}select#skin{max-width:120px;margin:4px 0 2px 0}#anketa_edit.glasovanje .anketa_edit_main{display:flex}#anketa_edit.glasovanje .anketa_edit_main #glas_settings{width:330px;margin:20px 0 0 0;padding:0;line-height:18px;background-color:#fff;border:1px solid #c8e3f8}#anketa_edit.glasovanje .anketa_edit_main #glas_settings .more{float:right;margin:5px 20px 10px 0;font-weight:500}#anketa_edit.glasovanje .anketa_edit_main #glas_settings .less{float:right;margin:5px 20px 10px 0;font-weight:500}#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_holder{height:35px;font-size:16px;font-weight:500;background-color:#c8e3f8;width:100%}#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_content{padding:8px 0px 7px 0px}#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_content .header_left{color:#1e88e5;font-size:16px;font-weight:500;width:auto;float:left;padding-left:10px}#anketa_edit.glasovanje .anketa_edit_main #glas_settings fieldset{margin:11px 10px;padding:3px 5px;border:0;border-top:1px solid #1e88e5}#anketa_edit.glasovanje .anketa_edit_main #glas_settings legend{margin:0;padding:0 10px 0 5px;background-color:rgba(0,0,0,0);color:#1e88e5;font-weight:500}#anketa_edit.glasovanje .anketa_edit_main #placeholder{margin:85px 0 0 20px;max-width:1100px}#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje{padding:3px;min-height:400px;width:calc(96% - 315px)}#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul.first{margin:1px 0 0 0 !important}#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul li{margin-left:0px !important}#anketa_edit.glasovanje .anketa_edit_main #placeholder #vprasanje_float_editing{margin-top:45px !important}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder{position:absolute;right:calc(3% + 5px);margin-left:-5px;top:222px;height:auto;width:310px;border:0;background-color:transparent}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings{padding:5px 15px;width:315px;box-sizing:border-box;float:right;background-color:#f5fafe;border:1px solid #c8e3f8}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings fieldset{border:1px #606060 solid}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings .form_bottom_settings{margin:0 8px 10px 8px;padding:0 0 5px 10px;background-color:inherit}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje{padding:1px 0 10px 10px}#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus{padding:2px;border:0;background-color:#ffdda1}#branching.expanded.branching_forma ul.first{margin-top:59px !important}#branching.expanded.branching_forma ul.first li.empty_vrivanje{margin-top:-45px !important}#branching.collapsed.branching_forma ul.first{margin-top:66px !important}#anketa_edit.forma #quick_settings_holder{position:absolute;right:5%;top:235px;height:auto;width:310px;border:0;background-color:transparent}#anketa_edit.forma #quick_settings_holder #quick_settings{padding:5px 15px;width:315px;box-sizing:border-box;float:right;background-color:#f5fafe;border:1px solid #c8e3f8}#anketa_edit.forma #quick_settings_holder #quick_settings fieldset{border:1px #606060 solid}#anketa_edit.forma #quick_settings_holder #quick_settings .form_bottom_settings{margin:0 8px 10px 8px;padding:0 0 5px 10px;background-color:inherit}#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje{padding:1px 0 10px 10px}#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus{padding:2px;border:0;background-color:#ffdda1}.empty_vrivanje{display:flex;flex-direction:column;align-items:flex-start;margin:20px 0px 20px 45px !important;padding:60px 0 !important;text-align:center;font-weight:600;border:1px solid #dfeffb}.empty_vrivanje .empty_vrivanje_title{margin:0 auto;padding:8px 20px;font-size:16px;font-weight:500;color:#1e88e5;background-color:#f0f7fd;border:1px solid #1e88e5}.empty_vrivanje .empty_vrivanje_subtitle{margin:15px auto 0 auto;font-size:14px;font-weight:400}.empty_vrivanje .empty_vrivanje_subtitle a{font-weight:500}.empty_vrivanje.branchinghover{color:#fff;background:0 !important;background-color:#ffa608}.empty_vrivanje.branchinghover a{display:inline !important;color:#fff}.empty_vrivanje.branchinghover .empty_vrivanje_title{color:#fff;background-color:#ffa608;border-color:#fff}.editmenu{float:right;margin:2px 0px 0px 0px;padding:2px;padding-right:10px;border:0;position:static}.extra_opt{margin-right:10px}.extra_opt a{color:#000;text-decoration:none;vertical-align:bottom}.intro_concl{float:left;font-size:12px;color:gray;padding:4px}.save_button{float:right;margin:10px 0px;padding-right:10px;z-index:50}li.spr div.edit_mode{display:none}li.spr div.preview_mode{display:block}li.spr thead.edit_mode{display:none}li.spr .editingOnly{visibility:hidden}li.spr span.inline_other{display:none}li.spr #variabla_new span.inline_other{display:inline;margin:0 10px}div[contenteditable][default="1"][vre_id=new]{color:#aaa}div.stolpci{float:left}div.stolpci span.inline_delete{display:none}div.stolpci span.inline_edit{display:none}div#variabla_new span.inline_move{visibility:hidden}div#variabla_new span.inline_edit{visibility:hidden}div#variabla_new span.inline_delete{visibility:hidden}div#variabla_new span.inline_if_follow{visibility:hidden}div#variabla_new span.inline_if_not{visibility:hidden}div#variabla_new span.inline_hidden{visibility:hidden}div#variabla_new span.correct{visibility:hidden}.show-hidden{visibility:visible !important}.show-disable{visibility:visible !important}.show-correct{visibility:visible !important;color:#1e88e5 !important}.show-correct:before{visibility:visible !important;color:#3c3 !important}#vprasanje{display:none;position:fixed;top:5%;bottom:5%;right:3%;width:80%;z-index:80;padding:10px}.branch{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px}#div_status_values{display:none;position:fixed;z-index:90;top:20px;right:30px;width:720px;padding:10px;border:1px solid #900;background-color:#f8f8f8}#div_status_values fieldset{border:0;border-top:1px solid #c8e3f8}#div_status_values legend{background-color:#f5fafe}._branch{padding:0px !important;margin:0px !important}.tawk-chat-activation.button{margin:8px 10px;padding:6px 8px;float:left;color:#fff;font-size:13px;font-weight:500;text-align:center;background-color:#1e88e5;border:1px solid #1e88e5;border-radius:4px}.tawk-chat-activation.button:hover{background-color:#ffa608;border:1px solid #ffa608}.forma_bottom{box-sizing:border-box;width:100%;height:30px;padding:40px 10px 20px 45px;font-size:12px}.forma_bottom_inner{display:inline-block}.forma_bottom_inner.changes{float:left;width:220px}.forma_bottom_inner.changes table tr td{padding:0 5px 0 0}.forma_bottom_inner.links{float:right;font-size:12px}.forma_bottom_inner.links a{padding-left:25px}.kviz-editing-correct::before{color:#3c3 !important}#placeholder{display:flex;width:98%;max-width:1450px;margin:5px 0 0 30px}#branching{min-height:400px;width:calc(96% - 315px);margin:0;background-color:#fff}#branching ul{padding:0;margin:0}#branching li{list-style:none}#branching li div.if_remove{display:none}#branching li.spr{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.spr div.spr_edit{display:none}#branching li.spr:hover div.spr_edit{display:block}#branching li.if{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.if:hover span.conditions_display{background-color:#dfeffb;cursor:pointer}#branching li.if:hover div.if_remove{display:block}#branching li.block{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.block:hover span.conditions_display{background-color:#f1f1ff;cursor:pointer}#branching li.block:hover div.if_remove{display:block}#branching li.loop{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.loop:hover span.conditions_display{background-color:#eef9ff;cursor:pointer}#branching li.loop:hover div.if_remove{display:block}#branching li.endif{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.endif:hover{background-color:#dfeffb;cursor:pointer}#branching li.endblock{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.endblock:hover{background-color:#f1f1ff;cursor:pointer}#branching li.endloop{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.endloop:hover{background-color:#eef9ff;cursor:pointer}#branching li.inout{margin-left:40px;position:relative;border-left:2.5px solid transparent}#branching li.inout:hover{background-color:#f1f1ff;cursor:pointer}#branching li.if.if_editing{border-color:#1e88e5;background-color:#dfeffb}#branching li.if.if_editing div.if_remove{display:block}#branching li.block.if_editing{border-color:#1e88e5;background-color:#f1f1ff}#branching li.block.if_editing div.if_remove{display:block}#branching li.loop.if_editing{border-color:#1e88e5;background-color:#eef9ff}#branching li.loop.if_editing div.if_remove{display:block}#branching ul.if_editing li.spr{border-color:#1e88e5}#branching ul.if_editing li.if{border-color:#1e88e5}#branching ul.if_editing li.block{border-color:#1e88e5}#branching ul.if_editing li.loop{border-color:#1e88e5}#branching ul.if_editing li.endif{border-color:#1e88e5}#branching ul.if_editing li.endblock{border-color:#1e88e5}#branching ul.if_editing li.endloop{border-color:#1e88e5}#branching ul.if_editing li.inout{border-color:#1e88e5}#branching ul.if_editing li.drop{border-color:#1e88e5}#branching ul.if_editing li.nodrop{border-color:#1e88e5}#branching li.if.if_hovering{border-color:#1e88e5;background-color:#dfeffb}#branching li.block.if_hovering{border-color:#1e88e5;background-color:#f1f1ff}#branching li.loop.if_hovering{border-color:#1e88e5;background-color:#eef9ff}#branching ul.if_hovering li.spr{border-color:#1e88e5}#branching ul.if_hovering li.if{border-color:#1e88e5}#branching ul.if_hovering li.block{border-color:#1e88e5}#branching ul.if_hovering li.loop{border-color:#1e88e5}#branching ul.if_hovering li.endif{border-color:#1e88e5}#branching ul.if_hovering li.endblock{border-color:#1e88e5}#branching ul.if_hovering li.endloop{border-color:#1e88e5}#branching ul.if_hovering li.inout{border-color:#1e88e5}#branching ul.if_hovering li.drop{border-color:#1e88e5}#branching ul.if_hovering li.nodrop{border-color:#1e88e5}#branching ul.if_hovering li.endloop{background-color:#eef9ff}#branching ul.if_hovering li.endblock{background-color:#f1f1ff}#branching ul.if_hovering li.endif{background-color:#dfeffb}#branching li.spr.ui-draggable-dragging{z-index:99999}#branching div.spr_edit{cursor:pointer;color:gray;cursor:pointer;display:inline-block;height:26px}#branching div.spr_edit a.arhiv{background-position:-16px -30px}#branching div.spr_edit a{cursor:pointer;display:inline-block;margin-left:9px;width:20px;height:20px}#branching div.spr_edit span.scale_ordnom{vertical-align:2px;margin-right:20px;color:#1e88e5}#branching div.spr_edit span.scale_ordnom a{cursor:pointer;display:inline-block;height:20px;width:auto;margin:0;background-image:none;color:#1e88e5}#branching div.spr_edit span.scale_ordnom a:hover{color:#ffa608}#branching div.spr_edit a.hide{cursor:pointer;display:inline-block;margin-right:5px;width:20px;height:20px}#branching li.spr.spr_editing div.spr_edit{display:block;padding-top:9px}#branching li.drop.branchinghover{background-color:#ffb83b !important}#branching li.drop.branchinghover a{display:none}#branching li.nodrop.branchinghover{background-color:#ffb83b !important}#branching li.nodrop.branchinghover a{display:none}#branching a.pm{position:absolute;left:auto;float:none;margin:9px 0 0 -15px;cursor:pointer}#branching a.pm.minus{margin-top:12px}#branching .spr_editing .spremenljivka_content{background-color:#fff;border:1px solid transparent}#branching .spr_editing .spremenljivka_content .spremenljivka_settings{background-color:#ffa608 !important;border:1px solid #ffa608}#branching .spr_editing .spremenljivka_content .spremenljivka_settings .spr_settings span.red{color:#fff !important}#branching .spr_editing .spremenljivka_content .spremenljivka_settings #spr_settings_intro_concl div.red{color:#fff !important}#branching .spr_editing .spremenljivka_content .content_div_normalmode{border:1px solid #ffa608}#branching .spr_editing .spremenljivka_content .comment_container_inline{border-top:none;border-left:1px solid #c8e3f8;border-right:1px solid #c8e3f8;border-bottom:1px solid #c8e3f8}#branching .spr_editing .spremenljivka_content .spremenljivka_tekst_form{border:1px solid #ffa608}#branching .spr_editing .variable_name{color:#fff}#branching .variable_name{cursor:move}#branching div.if_remove{padding-top:0px;margin-top:4px}#branching div.if_remove a{cursor:pointer;display:inline-block;margin-left:9px;width:20px;height:20px}#branching li.spr_editing div.spr_edit span.scale_ordnom{color:#fff}#branching li.spr_editing div.spr_edit span.scale_ordnom a{color:#fff}#branching li.spr_editing div.spr_edit a.faicon{color:#fff !important}#branching.expanded li.spr{padding-top:1px;padding-bottom:1px}#branching.expanded li.if{padding-top:1px;padding-bottom:1px}#branching.expanded li.block{padding-top:1px;padding-bottom:1px}#branching.expanded li.loop{padding-top:1px;padding-bottom:1px}#branching.expanded li.drop{min-height:16px;margin:2px 0 2px 50px;margin:0px 0 0px 40px;padding:2px 0px 2px 10px}#branching.expanded li.drop span.pb_on{display:inline-block;width:100%;height:16px;background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;color:gray;font-size:14px;font-weight:600;height:20px;line-height:20px;margin-top:0}#branching.expanded li.drop span.pb_off{display:inline-block;width:100%;height:16px}#branching.expanded li.drop span.pb_new{display:inline-block;width:100%;height:16px}#branching.expanded li.drop:hover span.pb_on{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px -52px;cursor:pointer}#branching.expanded li.drop:hover span.pb_new{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0px -23px;cursor:pointer}#branching.expanded li.nodrop{min-height:16px;margin:2px 0 2px 50px;margin:0px 0 0px 40px;padding:2px 0px 2px 0px;border-left:2.5px solid transparent}#branching.expanded li.nodrop span.pb_on{display:inline-block;width:100%;height:16px;background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;color:gray;font-size:14px;font-weight:600;height:20px;line-height:20px;margin-top:0}#branching.expanded li.nodrop span.pb_off{display:inline-block;width:100%;height:16px}#branching.expanded li.nodrop span.pb_new{display:inline-block;width:100%;height:16px}#branching.expanded li.nodrop:hover span.pb_on{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px -52px;cursor:pointer}#branching.expanded li.nodrop:hover span.pb_new{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0px -23px;cursor:pointer}#branching.expanded li.nodrop:hover span.permanent{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;cursor:default}#branching.expanded span.pb_on span{background-color:#fff;padding-right:20px;pointer-events:none}.branchinghover{background:url("../../../admin/survey/img_0/hover_background.png") repeat-x top left !important}.blockSwitch{position:relative;margin:10px auto 0;text-align:center}.blockSwitch p{display:inline;font-size:14px}#spremenljivka_content_-1{position:relative}#spremenljivka_content_-1 span.display_editor{top:40px}#spremenljivka_content_-2{position:relative}#spremenljivka_content_-2 span.display_editor{top:40px}#branching.collapsed{min-height:317px;margin-top:10px}#branching.collapsed li.spr{line-height:28px}#branching.collapsed li.spr:hover{background-color:#dfeffb;cursor:pointer}#branching.collapsed li.spr div.spr_edit{padding-top:0px;margin-top:0px;margin-right:10px}#branching.collapsed li.spr.spr_editing{line-height:inherit}#branching.collapsed li.spr.spr_editing:hover{background:none;cursor:auto}#branching.collapsed li.spr.spr_editing div.spr_edit{padding-top:2px;margin-top:5px;margin-right:30px}#branching.collapsed li.drop{height:6px;margin:2px 0px 2px 50px;margin:0px 0 0px 40px;padding:2px 0px 2px 10px;border-left:2.5px solid transparent}#branching.collapsed li.drop span.pb_on{display:inline-block;width:100%;height:10px;background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;text-align:right;font-size:10px;color:#aaa}#branching.collapsed li.drop span.pb_off{display:inline-block;width:100%;height:10px}#branching.collapsed li.drop span.pb_new{display:inline-block;width:100%;height:10px}#branching.collapsed li.drop:hover span.pb_on{background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;cursor:pointer}#branching.collapsed li.drop:hover span.pb_new{background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;cursor:pointer}#branching.collapsed li.nodrop{height:6px;margin:2px 0px 2px 50px;margin:0px 0 0px 40px;padding:2px 0px 2px 0px;border-left:2.5px solid transparent}#branching.collapsed li.nodrop span.pb_on{display:inline-block;width:100%;height:10px;background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;text-align:right;font-size:10px;color:#aaa}#branching.collapsed li.nodrop span.pb_off{display:inline-block;width:100%;height:10px}#branching.collapsed li.nodrop span.pb_new{display:inline-block;width:100%;height:10px}#branching.collapsed li.nodrop:hover span.pb_on{background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;cursor:pointer}#branching.collapsed li.nodrop:hover span.pb_new{background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;cursor:pointer}#branching.collapsed li.nodrop:hover span.permanent{background:url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;cursor:default}#branching.collapsed div.if_remove{padding-top:0px;margin-top:3px}.texteditor{width:98% !important;height:50px;margin-top:0;border:1px solid #ccc}.texteditor.info{height:14px;line-height:14px;width:100%}#vprasanje_edit{margin:0px 0px;position:relative;top:-54px;background-color:#fff}#vprasanje_edit h2{padding:10px;border:1px solid #c8e3f8;border-bottom:0;margin:15px -11px 42px -11px;background-color:#c8e3f8}#vprasanje_edit h2 span.content{position:absolute;font-weight:normal;right:10px;top:10px}#vprasanje_edit fieldset{margin:20px 0 20px 0;padding:0;border:0;border-top:1px solid #1e88e5}#vprasanje_edit legend{background-color:transparent;color:#1e88e5;font-weight:500;margin:0;padding:0 10px 0 5px}#vprasanje_edit .jquery-selectbox{background-color:#fff}#vprasanje_edit form[name=vprasanje_edit]{padding:0 10px}#vprasanje_edit p{padding:1px 3px;line-height:18px}#vprasanje_edit p input[type=radio]{vertical-align:middle;margin:0px 3px 0px 10px}#vprasanje_edit p label.title{cursor:pointer;max-width:270px}#vprasanje_edit p span.content{float:right;display:inline-block}#vprasanje_edit p span.content select{margin-top:-4px}#vprasanje_edit p span.content select.no-margin{margin-top:0}#vprasanje_edit p span.content input[type=checkbox]{vertical-align:middle;margin:0px 3px 0px 3px}#vprasanje_edit div{padding:-10px}#vprasanje_edit p.heading{border:0;background:none;padding:0;margin-bottom:-7px;margin-top:-2px}#vprasanje_edit textarea[name=naslov]{width:99%;height:60px}#vprasanje_edit textarea[name=introduction]{width:99%;height:60px}#vprasanje_edit textarea[name=conclusion]{width:99%;height:60px}#vprasanje_edit textarea[name=statistics]{width:99%;height:60px}#vprasanje_edit textarea[name=info]{width:98%;height:12px}#vprasanje_edit li textarea{height:12px}#vprasanje_edit span#vprasanje_edit_mv select{width:100%}#vprasanje_buttons{position:absolute;bottom:15px}#vprasanje_tabs{margin-top:-1px;position:absolute;background-color:#c8e3f8;width:100%;z-index:100}#vprasanje_tabs select{float:right;margin:5px 10px 0 0;width:100px}#vprasanje_tabs a.tab_link{float:left;display:block;height:19px;padding:7px 4px;margin:0 1px 0 0;font-size:12px;border-bottom:1px solid #c8e3f8;color:#606060;background-color:#f5fafe}#vprasanje_tabs a.tab_link.active{border-bottom:1px solid #fff;margin:0 1px 0 0;color:#606060;background-color:#fff}#vprasanje_tabs .tab_link_tracking{position:absolute;right:0;top:-59px;width:30px}#vprasanje_tabs .tab_link_tracking a.tab_link{background-color:#fff;color:#c8e3f8;padding:0}#vprasanje_tabs .tab_link_tracking a.tab_link.active{background-color:#fff;color:#fff}#vrednost_edit{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;z-index:89;min-height:130px;width:600px}#vrednost_edit .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#vrednost_edit .popup_close:hover{color:#1e88e5}#vrednost_edit .popup_close a{color:#d3d3d3}#vrednost_edit .popup_close a:hover{color:#1e88e5}#vrednost_edit h2,#vrednost_edit .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#vrednost_edit p{line-height:20px}#vrednost_edit.popup_violet{border-left:6px #921ee5 solid !important}#vrednost_edit.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#vrednost_edit.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#vrednost_edit.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#vrednost_edit.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#vrednost_edit.popup_orange{border-left:6px #ffa608 solid !important}#vrednost_edit.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#vrednost_edit.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#vrednost_edit.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#vrednost_edit.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#vrednost_edit.popup_red{border-left:6px red solid !important}#vrednost_edit.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#vrednost_edit.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#vrednost_edit.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#vrednost_edit.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#vrednost_edit p{padding:1px 3px}#vrednost_edit div{padding:-10px}#vrednost_edit textarea[name=naslov]{width:99%;height:60px}#vprasanje_float_editing{display:none;position:relative;z-index:70;align-self:flex-start;width:315px;margin-left:20px;border:1px solid #c8e3f8;background-color:#fff;box-shadow:0 0 31px 0 rgba(0,0,0,.07)}#vprasanje_edit_bottom_placeholder{display:block;height:1px;margin:0 10px;border-top:1px solid #c8e3f8}.editor_display{width:98%;background-color:#eee;border:1px solid #ccc;border-bottom:0}.editor_display_small{padding-left:5px}.spremenljivka{width:100%}.add-variable-mobile{display:none}.add-variable{display:none;position:absolute;left:59px;bottom:4px}.add-variable span{position:relative;top:1px;margin-right:5px !important}.add-variable a{color:#1e88e5}.add-variable a:hover{color:#ffa608}.add-variable .tip_6{left:52px}.add-variable .tip_16{left:52px}.add-variable .tip_19{left:52px}.add-variable .tip_20{left:52px}.locked .add-variable{display:none !important}.spremenljivka_content{margin:2px 0px 10px 0px;padding:0px;color:#333;background-color:#fff;border:1px solid #c8e3f8}.spremenljivka_content:hover{background-color:#fff}.spremenljivka_content:hover .add-variable{display:block}.spremenljivka_content h3{margin:0;padding:0;border:0}.spremenljivka_content h3 p{margin:0;padding:0;border:0}.spremenljivka_content form{margin:0;padding:0;border:0}.spremenljivka_content p{margin:0;padding:0;border:0;padding:3px}.spremenljivka_content input{vertical-align:text-top}.spremenljivka_content div[contenteditable]{cursor:text;min-height:16px}.spremenljivka_content div[contenteditable] p{margin:0 0;padding:3px 0}.spremenljivka_content div[contenteditable=true]{border:1px solid transparent}.spremenljivka_content div[contenteditable=true]:hover{background-color:#f5fafe;border:1px solid #dfeffb}.spremenljivka_content div[contenteditable=true]:focus{background-color:#f5fafe;border:1px dashed silver;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.spr_editing .spremenljivka_content .add-variable{display:none}.spr_editing .content_div_normalmode{padding-bottom:10px}.spr_editing .grid-plus-minus{visibility:visible}.spr_editing .sub-table{display:table-row}.spr_editing div[contenteditable][default="1"]{color:#aaa}.spremenljivka_tekst_form{padding:10px 5px 5px 10px}.spremenljivka_tip_content{padding:5px 5px 5px 10px}.content_div_normalmode{position:relative;padding:10px 5px 20px;overflow:hidden}.naslov{width:auto;min-width:100px;display:block;padding-top:3px}#variable_holder .variabla_limit{width:auto !important;color:#ee9800;margin-top:6px;display:inline-block}.variable_holder{padding:0px 0px 0px 30px;vertical-align:top;margin:0px;display:block;clear:both}.variable_holder select{margin-top:5px}.variable_holder.clr{height:auto}div.spremenljivka_content.orientation_ob .variable_holder{clear:none}div.spremenljivka_content.orientation_ob div.variabla{clear:none}div.spremenljivka_content h3 p{padding:3px 3px 3px 3px;margin:0;padding-top:3px;padding-bottom:3px;margin:0}div.spremenljivka_content span.inline{visibility:hidden;cursor:pointer;float:left}div.spremenljivka_content div.variabla{clear:both;padding:2px 5px;min-height:22px}div.spremenljivka_content div.variabla input{float:left;margin-top:5px}div.spremenljivka_content div.variabla .move_updown_orange{margin-top:5px}div.spremenljivka_content span.inline_edit{float:right;margin:0 3px}div.spremenljivka_content span.inline_delete{float:right;margin:0 3px}div.spremenljivka_content span.inline_if_not{float:right;margin:-2px 3px 0 3px}div.spremenljivka_content span.inline_if_follow{float:right;margin:-3px 3px 0 3px}div.spremenljivka_content span.inline_hidden{float:right;margin:0 3px}div.spremenljivka_content span.correct{float:right;margin:0 3px}li.spr.spr_editing div.spremenljivka_content.orientation_ob .variable_holder{clear:both}li.spr.spr_editing div.spremenljivka_content.orientation_ob div.variabla{clear:both}li.spr.spr_editing div.preview_mode{display:none}li.spr.spr_editing div.edit_mode{display:block}li.spr.spr_editing td.preview_mode{display:none}li.spr.spr_editing thead.edit_mode{display:table-header-group}li.spr.spr_editing .editingOnly{visibility:visible}li.spr.spr_editing div.spremenljivka_content.orientation_pod div.variabla{clear:both}li.spr.spr_editing div.stolpci{float:none;width:auto !important}li.spr.spr_editing div.stolpci span.inline_delete{display:block}li.spr.spr_editing div.stolpci span.inline_edit{display:block}.spremenljivka_info{font-size:9px;color:#666;padding:2px;clear:both;padding:2px 15px}div.naslov_inline{min-width:50px;padding:2px 15px;margin-bottom:2px}div.variable_inline{display:none;float:left;width:30px;padding:2px 15px;font-weight:bold}span.display_editor{position:absolute;right:10px;top:11px;cursor:pointer;visibility:hidden}.spr.spr_editing span.display_editor{visibility:visible}.spr span.display_editor.show{visibility:visible}div.spremenljivka_content.orientation_pod div.variabla{clear:none}li.spr_editing div.spremenljivka_content div.variabla span.inline{visibility:visible}li.spr_editing table.grid_header_table span.inline{visibility:visible}li div.spremenljivka_content div.variabla span.inline.show{visibility:visible}li div.spremenljivka_content span.inline_move{margin:2px 8px 0 3px}li div.spremenljivka_content span.image_upload{margin-top:4px;margin-left:8px;margin-right:4px;float:left}#spr_settings{float:left;width:auto;padding-top:4px;vertical-align:bottom}#spr_settings .lock_holder{position:absolute;right:15px;top:6px}#spr_settings span{vertical-align:bottom}#spr_settings span img{padding-left:5px;vertical-align:bottom}#spr_settings_intro_concl{float:left;width:auto;vertical-align:bottom;padding-left:10px}#spr_settings_intro_concl img{padding-left:10px;padding-top:3px}table.text_vrednost{text-align:center;font-size:10px}div.vrednost_inline{float:left;max-width:80%;min-width:160px;padding:2px 15px}.spremenljivka_settings{padding:3px 5px 3px 5px;background-color:#f5fafe;min-height:24px}.spremenljivka_settings.movable{cursor:pointer}.spremenljivka_settings_active{background-color:#f5fafe}.variable_name{float:left;font-size:14px;padding:2px 10px 2px 5px;color:gray;font-weight:500}.variable{color:gray;font-weight:500}.spr_edit{z-index:5;position:absolute;top:0;right:0;margin-right:10px;padding-top:7px}.comment_container_inline{margin:0px;padding:4px 15px;background-color:#f5fafe;border-top:1px solid #c8e3f8}.comment_container_inline a.surveycomment{font-size:10px}.slider{display:inline-block;width:84.5%;background-color:#efefef !important}.slider .ui-state-default{border:1px solid #aaa !important}.slider .ui-state-hover{border:1px solid gray !important}.sliderText{visibility:hidden;position:relative;text-align:center;color:#333;width:30px;height:15px;padding:3px;margin-top:7px;background:#efefef;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:#aaa solid 1px}.sliderText:after{content:"";position:absolute;border-style:solid;border-width:9px 7px 0;border-color:#efefef transparent;display:block;width:0;z-index:1;bottom:-9px;left:11px}.sliderText:before{content:"";position:absolute;border-style:solid;border-width:9px 7px 0;border-color:#aaa transparent;display:block;width:0;z-index:0;bottom:-10px;left:11px}.classic_slider .ui-slider-handle{width:9px !important;height:14px !important;padding:5px 0;margin-left:-5px !important;top:-7px !important;border-bottom-right-radius:10px 30px !important;border-bottom-left-radius:10px 30px !important}.special_slider .ui-slider-handle{width:15px !important;height:15px !important;margin-left:-8px !important;top:-3px !important;border-radius:10px 10px !important;background-color:red !important}.circle_slider .ui-slider-pip .ui-slider-line{width:15px !important;height:15px !important;border-radius:10px 10px !important;margin-left:-8px !important;background:#efefef !important;top:-23px !important;border:1px solid #aaa !important}.elipse_slider .ui-slider-pip .ui-slider-line{width:13px !important;height:30px !important;border-radius:10px 10px !important;margin-left:-7px !important;background:#efefef !important;top:-31px !important;border:1px solid #aaa !important}.elipse_slider .ui-slider-handle{width:9px !important;height:14px !important;padding:5px 0;margin-left:-5px !important;top:-7px !important;border-bottom-right-radius:10px 30px !important;border-bottom-left-radius:10px 30px !important}.label_podrocje_prikaz{border-bottom:1px solid #000 !important;border-left:1px solid #000 !important;border-right:1px solid #000 !important}.naslov.calculation{padding-left:15px}#arrows_more_calculation{position:absolute;bottom:40px;padding:5px 0;margin-left:43%;width:10%;cursor:pointer;background-color:#f5fafe;border:1px solid #f8f8f8;display:none;text-align:center}#bottom_space{padding:0}#calculation_editing_calculations{padding:0 0 10px 0}#calculation_editing_calculations span.calculations_display{font-size:20px}.naslov.quota{padding-left:15px}#quota{display:none;position:relative;z-index:91;height:auto;width:600px}#quota #quota_editing_inner{top:0;bottom:0;left:0;right:0;margin-bottom:50px;overflow:auto}#quota #condition_editing_close{float:right;margin-right:20px;margin-bottom:20px}#quota #bottom_space{bottom:0;left:0;position:absolute;right:0;padding:0}#quota_editing_quotas{min-height:40px;padding:10px}#quota_editing_quotas span.quota_display{font-size:20px}.spremenljivka_content[tip="24"] .variable_holder{overflow-x:auto}.grid_header_table{width:100%;text-align:center;border-collapse:collapse}.grid_header_table td.grid_header{height:18px}.grid_header_table tbody tr td{padding-top:3px;padding-bottom:3px}.grid_header_table tbody tr:nth-child(odd){background-color:#f5fafe}.grid_header_table tbody tr:nth-child(odd) td{background-color:#f5fafe}.grid_header_table tbody tr:nth-child(odd) td div[contenteditable=true]{border:1px solid transparent}.grid_header{font-weight:500}.grid_question{width:20%;text-align:left;padding-right:1%}.col_border{border-left:1px solid #606060}.grid-plus-minus{text-align:right;visibility:hidden}.sub-table{display:none}div.grid_inline{min-width:20px;padding:2px 0}div.grid_inline_droppable_title{height:15px !important;width:230px;padding:2px 0 5 0;margin:0px auto 0px auto;border-top:1px #000 dashed !important;border-left:1px #000 dashed !important;border-right:1px #000 dashed !important;text-align:center}div.grid_inline_droppable_title_box{height:15px !important;width:230px;padding:2px 0 5 0;margin:0px auto 0px auto;text-align:center}li table.grid_header_table span.inline.show{visibility:visible}div.spremenljivka_content[tip="6"] span.inline_move{position:absolute;left:30px}div.spremenljivka_content[tip="16"] span.inline_move{position:absolute;left:30px}div.spremenljivka_content[tip="19"] span.inline_move{position:absolute;left:30px}div.spremenljivka_content[tip="20"] span.inline_move{position:absolute;left:30px}div.spremenljivka_content[tip="24"] span.inline_move{position:absolute;left:30px}table.grid_header_table span.inline_delete{position:absolute;visibility:hidden;right:5px;margin-right:57px;margin-right:0px}table.grid_header_table span.inline_edit{position:absolute;visibility:hidden;right:7px;margin-right:57px}table.grid_header_table span.inline_if_not{position:absolute;visibility:hidden;right:7px;margin-right:57px;margin-right:32px}table.grid_header_table span.inline_if_follow{position:absolute;visibility:hidden;right:7px;margin-right:57px}table.grid_header_table span.inline_hidden{position:absolute;visibility:hidden;right:7px;margin-right:57px;margin-right:14px}table.grid_header_table span.correct{position:absolute;visibility:hidden;right:7px;margin-right:57px}.trak_class{border:1px solid #d3d3d3;cursor:pointer;background:#fff !important}.trak_class_input{visibility:hidden !important;display:block;z-index:-1}.radio-button-label{cursor:pointer !important;z-index:-2}.trak_container_bg{background-color:#d3d3d3 !important}table.trak_inline_nadnaslov td{text-align:center !important}.variabla_vsota{padding:0px 5px;width:25%;text-align:right}.variabla_vsota input{margin-left:10px;margin-top:2px !important}.vrednost_inline_vsota{float:left;box-sizing:border-box;width:200px;max-width:80%;min-width:160px;padding:2px 15px 2px 18px !important;margin-left:12px;word-break:break-all}.variabla_vsota_inline{float:left;max-width:80%;min-width:160px;padding:2px 15px;word-break:break-all}table.variabla_vsota{clear:both;border-spacing:0;border-collapse:collapse;display:block;width:auto}table.variabla_vsota tr td.text{border-top:1px #000 solid}table.variabla_vsota tr td.text .variabla_vsota_sum{margin-left:18px}table.variabla_vsota tr td.text .variabla_vsota_sum div{width:100%;max-width:100%;box-sizing:border-box}table.variabla_vsota tr td.input{border-top:1px #000 solid}table.variabla_vsota tr td.input input{margin-left:8px}span.display_editor_image_hotspot{position:absolute;right:100px;top:11px;cursor:pointer;visibility:visible}.hotspot span.inline_delete_hotspot{position:absolute !important;right:3px;margin-right:0px;cursor:pointer !important;margin-right:485px !important}.hotspot span.inline_edit_hotspot{position:absolute !important;right:3px;margin-right:0px;cursor:pointer !important}.hotspot span.inline_if_not_hotspot{position:absolute !important;right:3px;margin-right:0px;cursor:pointer !important;margin-right:535px !important}.hotspot span.inline_if_follow_hotspot{position:absolute !important;right:3px;margin-right:0px;cursor:pointer !important}.hotspot span.inline_hidden_hotspot{position:absolute !important;right:3px;margin-right:0px;cursor:pointer !important;margin-right:510px !important}.inline_edit_hotspot{display:inline-block;width:32px;height:32px;background-image:url(../../../admin/survey/img_new/icons_hidpi.png);background-position:0px -1874px}canvas.hotspot_canvas{position:absolute;top:15px !important;left:10px;z-index:2}.hotspot_image_editor{position:relative;top:15px !important;z-index:1}div.hotspot_vrednost_inline{float:left;max-width:80%;min-width:160px;padding:2px 2px;border:1px solid gray;margin:2px;background:#fff}.inline_hotspot_edit_region{margin-top:4px !important;margin-bottom:4px !important}.inline_hotspot_delete_region{margin-top:3px !important;margin-bottom:3px !important}div.vrednost_inline_hotspot{float:left}div.vrednost_inline_hotspot img{float:left}#hotspot_edit{display:none;position:absolute;top:40%;left:50%;z-index:89;min-height:130px;margin-top:-100px;margin-left:-300px;padding:0 10px 10px 10px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}.razvrscanje_preview{border:1px solid gray;background-color:silver;padding:4px;margin:5px 0px;width:350px;display:block}.razvrscanje_preview_frame{border:1px dashed gray;background-color:#d3d3d3;padding:4px;margin:5px 0px;width:350px;height:13px;display:block;text-indent:-20px}.dragdrop_preview_frame{border:1px dashed gray;background-color:#d3d3d3;padding:4px;margin:5px 0px;width:350px;height:90px;display:block;text-indent:-20px}.dragdrop_preview_frame_grid{font-size:14px;width:150px !important;height:25px;padding:0 0 2px 0;margin:0px auto 10px auto;border:1px #000 dashed;background-color:#d3d3d3;text-indent:-20px;text-align:left}.dragdrop_preview_frame_grid_title{height:15px !important;width:150px !important;padding:2px 0 5 0;margin:0px auto 0px auto;border-top:1px #000 dashed !important;border-left:1px #000 dashed !important;border-right:1px #000 dashed !important;text-align:center}.ranking{font-size:14px;width:220px;height:25px;padding:5px 0 0 0;margin:15px auto 0 auto;border:1px solid #000;background-color:#d3d3d3;text-align:center;overflow:hidden}.ranking img{display:block;margin-left:auto;margin-right:auto}.ranking_long{font-size:14px;width:220px;height:25px;padding:5px 0 0 0;margin:15px auto 0 auto;border:1px solid #000;background-color:#d3d3d3;text-align:center;overflow:hidden;font-size:11px}.ranking_frame{font-size:14px;width:230px;height:29px;padding:5px 0 0 0;margin:10px auto 0 auto;border:1px #000 dashed;background-color:#efefef;text-indent:-20px;text-align:left}.dragdrop_frame{font-size:14px;width:230px;height:100px;padding:5px 0 0 0;margin:10px auto 0 auto;border:1px #000 dashed;background-color:#efefef;text-indent:-20px;text-align:left}.dragdrop_frame_grid{font-size:14px;width:230px;height:25px;padding:0 0 2px 0;margin:0px auto 10px auto;border:1px #000 dashed;background-color:#efefef;text-indent:-20px;text-align:left}.dragdrop_frame_grid_box{font-size:14px;width:230px;height:30px;padding:0 0 2px 0;margin:10px auto 0px auto;border-left:1px #000 dashed !important;border-right:1px #000 dashed !important;border-bottom:1px #000 dashed !important;text-indent:-20px;text-align:left}.drag_and_drop_box{cursor:pointer;width:230px;padding:5px;margin:0px auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;background-color:#fff;cursor:pointer;width:230px;padding:5px;margin:0px auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;background-color:#fff}.drag_and_drop_box img{display:block;margin-left:auto;margin-right:auto}.drag_and_drop{top:-6px;left:-6px}.drag_and_drop_right{top:-6px !important;left:-6px !important}.drag_and_drop_box_right{top:15px !important;left:-6px !important}.drag_and_drop_box_right_after_refresh{left:-6px !important}.drag_and_drop_box_right_over{left:-6px !important}.inline_labele_podrocij{text-align:center !important}table.inline_labele_podrocij td{text-align:center !important}.custom_radio .custom_radio_answer{padding:0 1px}.custom_radio.visual-radio-scale .custom_radio_answer{padding:0 3px}.custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before{color:#166dba}.enka-vizualna-skala{display:inline-block;height:20px;width:20px;float:left}.pac-input{background-color:#fff;font-family:Roboto;font-size:1.2em;font-weight:300;margin-left:0 px;padding:0 11px 0 13px;text-overflow:ellipsis;width:17em;border:1px solid transparent;border-radius:2px 0 0 2px;box-shadow:0 2px 6px rgba(0,0,0,.3);box-sizing:border-box;height:30px;margin-top:10px;outline:medium none}.boxsizingBorder{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.maps-delete-menu{position:absolute;background:#fff;padding:3px;color:#606060;font-weight:bold;border:1px solid #aaa;font-family:sans-serif;font-size:12px;box-shadow:1px 3px 3px rgba(0,0,0,.3);margin-top:-10px;margin-left:10px;cursor:pointer}.maps-delete-menu:hover{background:#f8f8f8}.fotoresults_div{float:right}.my_camera_div{float:left}.my_camera{border:1px solid}.record_foto{display:block;float:right;margin-top:-30px;margin-right:-12px;position:relative}.upload_foto_result{display:none;height:240px;border:1px solid;padding-right:0px !important;margin-top:10px !important;margin-left:20px}.endif_editing{background-color:#dfeffb}li.if_editing div.if_content:before{background-color:#dfeffb;content:"";display:block;height:15px;left:0;position:absolute;top:0;width:100%;z-index:-1}span.conditions_display{display:block;line-height:28px}select.spremenljivka_select option{max-width:500px}.condition{position:relative;left:-21px}span.endif{position:relative;left:-29px;font-weight:bold}.block>div>#div_condition_editing_container{background-color:#f1f1ff;line-height:28px}.loop>div>#div_condition_editing_container{padding-top:6px}#div_condition_editing_inner>.condition_editing_preview{background-color:#dfeffb;padding-left:6px}#div_condition_editing_operators{padding:5px 0}#div_condition_editing{display:none;height:auto;width:800px}#div_condition_editing div#div_condition_editing_container{margin-bottom:44px}#div_condition_editing .error_display{background-color:transparent}#div_condition_editing .condition_editing_vrednost_title{margin:-5px 0 15px 5px;font-size:14px;font-weight:600}#div_condition_editing_float{position:absolute;top:0;right:-335px;width:290px;padding:0 10px 15px 10px;background-color:#fff;border:1px solid #c8e3f8}#div_condition_editing_float h2{margin-top:0;padding:10px;border-bottom:0;margin:0 -10px 0 -10px;background-color:#c8e3f8}#div_condition_editing_float p{padding:3px;margin:10px 0}#div_condition_editing_float p.heading{border:0;background:none;padding:0}#div_condition_editing_float span.content{float:right}#div_condition_editing_float fieldset{margin:11px 0;padding:0;border:0;border-top:1px solid #c8e3f8}#div_condition_editing_float legend{background-color:transparent;color:#1e88e5;font-weight:500;margin:0;padding:0 10px 0 5px}.error_display{display:block;line-height:24px}.tbl_ce_bck_blue{background-color:#f0f7fd}.tbl_ce_lol{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;border-left:1px solid #d3d3d3}.tbl_ce_tb{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3}.tbl_ce_lor{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;border-right:1px solid #d3d3d3}.if_remove{z-index:5;position:absolute;top:0;right:0;margin-right:20px;padding-top:9px}.endif a.surveycomment{padding-right:15px;font-size:10px}.endblock a.surveycomment{padding-right:15px;font-size:10px}#condition_editing_bottom_placeholder{display:block;height:1px;margin-bottom:15px;border-top:1px solid #c8e3f8}.tbl_condition_editing{width:98%;border-spacing:0px;margin:0px 1% 0px 1%;border-collapse:collapse}.tbl_condition_editing th{color:gray;font-weight:normal}#toolbox_library{z-index:0;position:fixed;top:225px;left:35px;width:315px;height:auto;left:auto;right:30px;color:#1e88e5;background-color:#fff;border:0;box-shadow:0 0 31px 0 rgba(0,0,0,.07)}#toolbox_library #library_holder{background-color:#c8e3f8;border:1px #c8e3f8 solid}#toolbox_library #library_holder #library_title{padding:10px;font-size:18px;font-weight:bold}#toolbox_library #library_holder #library_title span.library{margin:0 5px 2px 0}#toolbox_library #library_holder p.display_tabs{font-size:14px;font-weight:500;margin:0;padding:0}#toolbox_library #library_holder p.display_tabs>span{width:50%;box-sizing:border-box;display:inline-block;padding:7px 10px;text-align:center;transition:.2s}#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft{background-color:#fff}#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft a{color:#1e88e5}#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight{background-color:#fff}#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight a{color:#1e88e5}#toolbox_library #library_holder p.display_tabs span.nohighlight:hover{background-color:#d6eafa}#toolbox_library #library_holder p.display_tabs a{display:block;color:#1e88e5}#toolbox_library #library_holder #library{background-color:#fff;height:400px;overflow-y:auto}#toolbox_library #library_holder #library #libraryInner{padding:5px 10px;bottom:0;overflow:auto}#toolbox_library #library_holder #library .lib_tab{width:auto;cursor:pointer}#toolbox_library #library_holder #library ul{list-style:none;margin:0;margin-top:4px;padding-left:18px}#toolbox_library #library_holder #library li .anketa.tip0{margin:0;padding-left:14px}#toolbox_library #library_holder #library li .anketa.tip1{margin:0;margin-left:-3px}#toolbox_library #library_holder #library .new_folder{visibility:hidden}#toolbox_library #library_holder #library .delete_folder{visibility:hidden}#toolbox_library #library_holder #library span.folderdrop{margin-bottom:2px}#toolbox_library #library_holder #library span.folderdrop:hover .new_folder{visibility:visible}#toolbox_library #library_holder #library span.folderdrop:hover .delete_folder{visibility:visible}#toolbox_library #library_holder #library span.faicon.folder{vertical-align:3px;margin-right:3px}#toolbox_library #library_holder #library span.faicon.folder::before{font-size:20px}#toolbox_library #library_holder #library .tip0 .folder_container{display:block;height:20px;overflow:hidden;padding:1px 3px}#toolbox_library #library_holder #library .tip1{padding-left:10px}#toolbox_library #library_holder #library .tip1 .folder_container{display:block;overflow:show;height:auto;min-height:20px;padding:0px 3px}#toolbox_library #library_holder #library .tip1 .mapca{display:none !important}#toolbox_library #library_holder #library .tip1 .new_spr{padding:0 3px}#toolbox_library #library_holder #library .tip1 .new_spr:hover{background-color:#badcf6}#toolbox_library #library_holder #library .tip1 .new_spr .faicon{line-height:22px}#toolbox_library #library_holder #library .tip1 .faicon.plus,#toolbox_library #library_holder #library .tip1 .faicon.minus{opacity:1 !important;margin-right:3px}#toolbox_library #library_holder #library div .folder_right{width:15px;float:right;text-align:left}#toolbox_library #library_holder #library div .tip1 .folder_right{width:18px}#toolbox_library #library_holder #library div .folder_container:hover{background-color:#f5fafe;cursor:pointer}#toolbox_library #library_holder #library div.folder_left{width:80%;float:none}#toolbox_library #library_holder #library div.folder_left.indent{display:block;height:22px;line-height:22px;overflow:hidden;position:relative}#toolbox_library #library_holder #library .folder strong:hover{background-color:transparent;cursor:pointer}#all_users_list td:nth-child(n+6),#deleted_users_list td:nth-child(n+4),#unconfirmed_mail_user_list td:nth-child(n+4),#unsigned_users_list td:nth-child(n+4){text-align:center}table.dataTable.no-footer{border-bottom:none !important}table.dataTable thead th{color:gray;background-color:#f5fafe !important;border-bottom:none !important}table.dataTable thead th.sorting,table.dataTable thead th.sorting_asc,table.dataTable thead th.sorting_desc{background-position:right 8px}table.dataTable tbody td{border-top:1px solid #ddd}.dataTables_wrapper .dataTables_paginate .paginate_button.current,.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{color:#3d5f95 !important;border:1px solid #3d5f95 !important;background:#fff !important}.dataTables_wrapper .dataTables_paginate .paginate_button:hover{color:#fff !important;background:#3d5f95 !important}.dataTables_wrapper .dataTables_paginate .paginate_button.disabled{border:1px solid transparent !important;background:transparent !important}form.manager_add_user p{padding:0 !important}form.manager_add_user label{width:100px;display:inline-block}.dt-buttons{margin-bottom:10px}.dataTables_length{padding:5px 0 15px 0}button.dt-button{cursor:pointer;padding:5px 12px 6px;background-color:#1e88e5;border-radius:20px;color:#fff;border-image:none;border:0;font-size:11px}button.dt-button:hover,button.dt-button .active{background:#ffa608}.dt-button-collection{padding-top:22px}.dt-button-collection>.buttons-columnVisibility{color:#1e88e5;background:#fff}.dt-button-collection>.buttons-columnVisibility:hover{color:#fff;background:#ffa608}button.buttons-columnVisibility{background-color:#fff;color:#1e88e5;border:1px solid #1e88e5}button.buttons-columnVisibility.active{background-color:#1e88e5;color:#fff}body.test_user{margin-top:20px;position:relative}.grupa h3{border:0;margin:0;padding:0}.grupa h3 a{color:gray;text-decoration:none}.grupa h3 a:HOVER{color:gray;text-decoration:none}.grupa h3 a:VISITED{color:gray;text-decoration:none}.page_edit{padding:0px 10px;width:auto}.page_edit img{vertical-align:top}.google_yellow{box-sizing:border-box;padding:10px !important;color:#fff;background-color:#ffa608 !important}.counter{float:left;width:auto;padding-top:5px;display:block}.anketa_img_icons{margin-left:6px;width:auto !important}.conjunction{color:#606060}#s1{position:relative;left:32px}#s2{position:relative;left:-9px}fieldset.grupa{margin:5px;padding:5px;width:auto;border:1px solid silver}fieldset.grupa legend{color:#1e88e5}fieldset.grupa:hover{background:#fff}li.highlightLineTab a{background-color:#fff;border-bottom:medium none;padding-bottom:2px}li.highlightLineTab a span{font-weight:bold;color:#900}input.respondent{width:99%;height:20px;border:none;vertical-align:middle}input.respondent:hover{background-color:#f8f8f8}input.respondent:focus{background-color:#f5fafe}.top-left{display:none;background-image:url("../../../admin/survey/img_0/corners1280x18.gif");height:9px;font-size:2px;margin-right:9px}.top-right{display:none;background-image:url("../../../admin/survey/img_0/corners1280x18.gif");height:9px;font-size:2px;margin-left:9px;margin-top:-9px;background-position:100% 0}.bottom-left{display:none;background-image:url("../../../admin/survey/img_0/corners1280x18.gif");height:9px;font-size:2px;margin-right:9px;background-position:0 -9px}.bottom-right{display:none;background-image:url("../../../admin/survey/img_0/corners1280x18.gif");height:9px;font-size:2px;margin-left:9px;margin-top:-9px;background-position:100% -9px}.vprasanje{border:1px solid #999;width:90%;margin:10px auto 10px auto;padding:10px 0 10px 10px;text-align:left}.vprasanje h3{border:0;margin:0;padding:0;font-size:11px}.vprasanje img{float:left;margin:0 10px 0 0px}.vprasanje:hover{background-color:#d3d3d3;cursor:pointer}.ime{font-size:14px;width:220px;height:25px;padding:5px 0 0 0;margin:15px auto 0 auto;border:1px solid #000;background-color:#d3d3d3;text-align:center;overflow:hidden}.izbran{font-size:14px;width:220px;height:25px;padding:5px 0 0 0;margin:15px auto 0 auto;border:1px solid #000;background-color:#d3d3d3;text-align:center;overflow:hidden}#change_survey_type{padding:15px;border:1px solid #900;background:#fff}#change_survey_type_note{margin-bottom:10px;float:left;width:100%}#preview_page{padding:15px;border:1px solid #900;background:#f8f8f8}#page_preview{margin:10px 10px 10px 10px;padding:0px 2px 10px 12px;background-color:#efefef;width:auto;display:block}.hidden_plus{display:none}#test_user_alert{background-color:#fff0d4;color:#ffa608;border-bottom:1px solid #d48800;padding:5px 10px;font-weight:bold;position:fixed;top:0px;text-align:center;width:100%;z-index:51}span.square{display:inline-block;width:14px;height:14px;vertical-align:text-bottom;background-color:green;opacity:.8}.floatingHeader{position:fixed;visibility:hidden;top:0px}.frame_dropping_box{width:230px;padding:5px;margin:10px auto 0px auto;height:15px;text-indent:-25px;border-left:4px solid #b9c5d9;border-right:4px solid #b9c5d9;border-bottom:4px solid #b9c5d9}.frame_dropping_titles_box{width:230px;padding:5px;margin:0px auto 0px auto;height:15px;text-align:center;background-color:#fff}.moving{cursor:pointer;margin-left:auto;margin-right:auto;width:230px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.handle{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;background-color:#fff}.grupahover{background-color:#fff0d4 !important;border:1px solid #ffa608;border-radius:3px 3px 3px 3px;padding:5px}span.library_on a{color:#900}div .folder_container:hover{background-color:#f5fafe}div .folder_left{float:left}div .folder_left img.mapca{cursor:move}div .folder_left span.mapca{cursor:move}.folder strong:hover{background-color:#d3d3d3}#anketa_knjiznica{min-height:500px;background-color:#fff}#anketa_knjiznica ul{list-style:none;margin:0;padding-left:18px}#anketa_knjiznica li{margin-bottom:5px}#anketa_knjiznica li .anketa{margin:0;padding-left:0}#anketa_knjiznica .new_folder{visibility:hidden}#anketa_knjiznica .delete_folder{visibility:hidden}#anketa_knjiznica .sprites.mapa{margin-bottom:3px}#anketa_knjiznica span.folderdrop:hover .new_folder{visibility:visible}#anketa_knjiznica span.folderdrop:hover .delete_folder{visibility:visible}#anketa_knjiznica span.folderdrop span{vertical-align:middle}#anketa_knjiznica .folder_container{display:block;height:20px;overflow:hidden;padding:2px 3px;display:block;min-height:16px;overflow:hidden;padding:2px 3px}#anketa_knjiznica div .folder_right{width:auto;float:right;text-align:left}#anketa_knjiznica div .folder_right a{padding-left:15px}#anketa_knjiznica div .folder_right .faicon{vertical-align:-2px}#anketa_knjiznica div .folder_right .faicon.library::before{font-size:18px}#anketa_knjiznica div.folder_left{width:80%;float:none;max-width:400px;width:auto}#anketa_knjiznica #library div.folder_left{width:400px}#anketa_knjiznica div.folder_left.indent{display:block;height:22px;overflow:hidden;position:relative}#anketa_knjiznica .folder strong:hover{background-color:#f5fafe;cursor:pointer}#anketa_knjiznica #libraryInner{bottom:0;overflow:auto}#anketa_knjiznica #libraryInner #searchLibrarySurveys{clear:both;display:block;float:left;margin:0px 0 10px 0;padding:0 10px 10px 0px}#anketa_knjiznica #libraryInner #searchLibrarySurveys input[type=text]{width:200px;padding:4px 0 4px 7px;font-size:12px;border:1px solid #c8e3f8}#anketa_knjiznica #libraryInner #searchLibrarySurveys .buttonwrapper{margin:-2px 0 0 2px;padding:1px 3px}#copy_library_alert{padding:5px;border:1px solid #900;background:#fff}div.anketa_vprasanja{display:none;padding-left:33px}div.anketa_vprasanja span.new_spr{display:block;overflow:hidden;height:22px}div.anketa_vprasanja span:hover{background-color:#fff}.lbl_email_setting{vertical-align:top;line-height:16px;display:inline-block}.lbl_email_setting #usercode_skip_0{margin:5px 0 0 2px}#srv_invitation_note{display:inline-block;padding:3px 5px;width:auto;margin-left:10px;margin-bottom:5px}.ank_edit_inv H2{margin:8px 0px 10px 0px;padding:0px;font-size:14px;font-weight:500}.ank_edit_inv H2 strong{color:#000}#inv_send_mail{width:100%;display:block}#inv_send_mail label{vertical-align:text-bottom}#inv_send_mail label input{vertical-align:top}#inv_send_mail table{vertical-align:top}#inv_send_mail table td{vertical-align:top}#inv_recipient_edit{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);height:auto}#inv_recipient_edit .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#inv_recipient_edit .popup_close:hover{color:#1e88e5}#inv_recipient_edit .popup_close a{color:#d3d3d3}#inv_recipient_edit .popup_close a:hover{color:#1e88e5}#inv_recipient_edit h2,#inv_recipient_edit .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#inv_recipient_edit p{line-height:20px}#inv_recipient_edit.popup_violet{border-left:6px #921ee5 solid !important}#inv_recipient_edit.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#inv_recipient_edit.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#inv_recipient_edit.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#inv_recipient_edit.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#inv_recipient_edit.popup_orange{border-left:6px #ffa608 solid !important}#inv_recipient_edit.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#inv_recipient_edit.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#inv_recipient_edit.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#inv_recipient_edit.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#inv_recipient_edit.popup_red{border-left:6px red solid !important}#inv_recipient_edit.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#inv_recipient_edit.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#inv_recipient_edit.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#inv_recipient_edit.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#inv_recipient_edit div#inv_error_note{color:#ee9800;max-width:330px;overflow:visible}#inv_msg_preview_hld{padding:10px 10px 15px;margin-left:10px;min-height:365px;width:650px;background:#f5fafe;border:1px solid #c8e3f8}#inv_msg_preview_hld span.h2{font-size:14px;font-weight:500}#inv_msg_preview_hld table tr th{width:100px;padding:4px 2px}#inv_msg_preview_hld table tr td{padding:4px 2px}#tbl_recipients_list{padding:0px;margin:0px;border-spacing:0px;border-collapse:collapse;table-layout:auto;clear:both}#tbl_recipients_list th{color:#333;padding:2px 5px;padding-left:7px;font-size:12px;font-weight:normal;height:27px;vertical-align:middle;background-color:#efefef;border-top:1px solid #efefef;border-bottom:1px solid #efefef;width:auto;min-width:100px;max-width:128px;overflow:hidden;text-align:left}#tbl_recipients_list td{padding:5px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #efefef}#tbl_recipients_list tr:nth-child(odd){background-color:#f5fafe}#tbl_recipients_list tr:nth-child(even){background-color:#fff}#tbl_archive_list{padding:0px;margin:0px;border-spacing:0px;border-collapse:collapse;table-layout:auto}#tbl_archive_list th{color:#333;padding:2px 5px;padding-left:7px;font-size:12px;font-weight:normal;height:27px;vertical-align:middle;background-color:#efefef;border-top:1px solid #efefef;border-bottom:1px solid #efefef;width:auto;min-width:100px;max-width:128px;overflow:hidden;text-align:left}#tbl_archive_list td{padding:5px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #efefef}#tbl_archive_list tr:nth-child(odd){background-color:#f5fafe}#tbl_archive_list tr:nth-child(even){background-color:#fff}#tbl_recipients_send_list{padding:0px;margin:0px;border-spacing:0px;border-collapse:collapse;table-layout:auto;clear:both;border:1px solid #c8e3f8}#tbl_recipients_send_list th{color:#333;padding:2px 5px;padding-left:7px;font-size:12px;font-weight:normal;height:27px;vertical-align:middle;background-color:#efefef;border-top:1px solid #efefef;border-bottom:1px solid #efefef;width:auto;min-width:100px;max-width:128px;overflow:hidden;text-align:left}#tbl_recipients_send_list td{padding:5px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #efefef}#tbl_recipients_send_list tr:nth-child(odd){background-color:#f5fafe}#tbl_recipients_send_list tr:nth-child(even){background-color:#fff}#tbl_recipients_send_list th{background-color:#dfeffb;padding-left:1px;padding-right:15px;border-top:1px solid #c8e3f8;border-bottom:1px solid #c8e3f8}#tbl_recipients_send_list td{padding:2px 1px;padding-left:1px;padding-right:15px;border-bottom:1px solid #c8e3f8}#tbl_recipients_source_list{padding:0px;margin:0px;border-spacing:0px;border-collapse:collapse;table-layout:auto;clear:both}#tbl_recipients_source_list th{color:#333;padding:2px 5px;padding-left:7px;font-size:12px;font-weight:normal;height:27px;vertical-align:middle;background-color:#efefef;border-top:1px solid #efefef;border-bottom:1px solid #efefef;width:auto;min-width:100px;max-width:128px;overflow:hidden;text-align:left}#tbl_recipients_source_list td{padding:5px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #efefef}#tbl_recipients_source_list tr:nth-child(odd){background-color:#f5fafe}#tbl_recipients_source_list tr:nth-child(even){background-color:#fff}#tbl_recipients_source_list td{padding:2px 1px;padding-left:2px}.tbl_icon{min-width:20px !important;max-width:25px !important;width:20px !important}.tbl_icon_sent{min-width:22px !important;text-align:center !important}.tbl_icon_responded{min-width:22px !important;text-align:center !important}.tbl_icon_unsubscribed{min-width:22px !important;text-align:center !important}.tbl_inv_left{text-align:left !important}.tbl_inv_center{text-align:center !important}.inv_note{display:inline-block;text-align:justify;color:#333;font-size:11px;max-width:630px;padding:2px 10px;margin-bottom:10px}#inv_field_container{display:block !important;margin:0px !important;padding:0px !important;clear:both;font-size:11px;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none}#inv_field_container ul{display:flex !important;flex-wrap:wrap;margin:0px !important;padding:0px !important;clear:both;list-style-type:none;font-size:11px;border:gray;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none}#inv_field_container ul li{display:flex;align-items:center;cursor:pointer;min-height:24px;width:30%;box-sizing:border-box;padding-left:5px;margin:5px;color:#1e88e5;text-align:left;vertical-align:middle;background-color:#f0f7fd;border:1px solid #1e88e5;border-radius:5px 5px 5px 5px;-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px;box-shadow:1px 1px 5px rgba(0,0,0,.6);-moz-box-shadow:1px 1px 5px rgba(0,0,0,.6);-webkit-box-shadow:1px 1px 5px rgba(0,0,0,.6)}#inv_field_container ul li label{width:100%;box-sizing:border-box;padding:8px 0}#inv_field_container label{padding:5px}#inv_field_container ul.noedit li.inv_field_enabled{color:#1e88e5 !important;border:1px solid #efefef !important;background-color:#efefef !important;cursor:text !important}#inv_sys_container{display:block !important;margin:0px !important;padding:0px !important;clear:both;font-size:11px;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none}#inv_sys_container ul{display:flex !important;flex-wrap:wrap;margin:0px !important;padding:0px !important;clear:both;list-style-type:none;font-size:11px;border:gray;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none}#inv_sys_container ul li{display:flex;align-items:center;cursor:pointer;min-height:24px;width:30%;box-sizing:border-box;padding-left:5px;margin:5px;color:#1e88e5;text-align:left;vertical-align:middle;background-color:#f0f7fd;border:1px solid #1e88e5;border-radius:5px 5px 5px 5px;-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px;box-shadow:1px 1px 5px rgba(0,0,0,.6);-moz-box-shadow:1px 1px 5px rgba(0,0,0,.6);-webkit-box-shadow:1px 1px 5px rgba(0,0,0,.6)}#inv_sys_container ul li label{width:100%;box-sizing:border-box;padding:8px 0}#inv_sys_container label{padding:5px}#inv_sys_container ul.noedit li.inv_field_enabled{color:#1e88e5 !important;border:1px solid #efefef !important;background-color:#efefef !important;cursor:text !important}#inv_sys_container ul li{overflow:hidden;white-space:nowrap;width:85px}ul#merge{font-size:11px;display:block !important;margin:0px !important;padding:0px !important;clear:both;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none;min-height:25px;list-style-type:none;margin:0px;width:auto;border:gray}ul#merge input{margin-bottom:3px}ul#merge li{cursor:pointer;height:18px;width:80px;width:auto;display:inline-block;padding:1px 0px 2px 0px;margin:5px;color:#1e88e5;background-color:#f0f7fd;border:1px solid #1e88e5;text-align:center;vertical-align:middle;border-radius:5px 5px 5px 5px;-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px;box-shadow:1px 1px 5px rgba(0,0,0,.6);-moz-box-shadow:1px 1px 5px rgba(0,0,0,.6);-webkit-box-shadow:1px 1px 5px rgba(0,0,0,.6)}ul#merger label{margin-top:2px}#inv_field_container.from_system ul li{width:85px}.inv_field_enabled{color:#fff !important;border:1px solid #1e88e5 !important;background-color:#1e88e5 !important}textarea#inv_recipients_list{margin-top:4px;width:635px;border:none;min-height:100px;padding:0px;outline:1px solid gray;font-size:11px;max-height:200px;overflow:auto}#merge label{padding:5px}#inv_field_list{color:#606060;font-style:italic}#inv_recipiens_added{font-size:12px;color:#409ee7;width:620px;padding:10px;margin-top:10px;margin-bottom:10px;background-color:#f5fafe;border:1px solid #c8e3f8;line-height:1.2em}#inv_recipiens_rejected{font-size:12px;color:#000;width:620px;padding:10px;margin-top:10px;margin-bottom:10px;line-height:1.5em;border:1px solid #d3d3d3}.inv_count{padding-left:5px;font-weight:bold}.inv_sample{float:left;display:inline-block;color:#606060;font-style:italic}#inv_messages_holder_noEmailing{padding:10px;margin:0 0 15px 10px;width:883px;background:#f5fafe}#inv_msg_preview{max-width:680px;margin-top:10px;background-color:#f5fafe !important}#inv_send_mail_preview{width:auto}#inv_send_mail_preview th{font-weight:normal;margin:3px;padding:3px}#inv_send_mail_preview td{margin:3px;padding:3px;display:inline-block;font-weight:normal;text-align:left;width:100%}.inv_bt{border-bottom:1px solid #efefef}input#inv_message_subject{font-size:12px;width:380px;border:1px solid #d3d3d3;padding:5px;font-family:Tahoma,sans-serif}input#inv_message_subject:focus{background-color:#fff0d4}textarea#inv_message_body{font-size:12px;width:380px;border:1px solid #d3d3d3;padding:5px;font-family:Tahoma,sans-serif;height:120px;min-height:200px}textarea#inv_message_body:focus{background-color:#fff0d4}input#inv_message_replyto{font-size:12px;width:380px;border:1px solid #d3d3d3;padding:5px;font-family:Tahoma,sans-serif}input#inv_message_replyto:focus{background-color:#fff0d4}input#inv_message_comment{font-size:12px;width:380px;border:1px solid #d3d3d3;padding:5px;font-family:Tahoma,sans-serif}input#inv_message_comment:focus{background-color:#fff0d4}.inv_message_errors{float:left;width:600px;height:auto;margin:0px;padding:10px;line-height:15px;font-size:11px;background-color:#efefef;color:#900;font-weight:bold;border:1px solid #900}.inv_error_note{color:#900;margin-left:10px;line-height:18px;line-height:1.5em;font-size:11px;font-weight:bold;padding:5px 0px;width:auto}#inv_error_note{color:#900;margin-left:10px;line-height:18px;line-height:1.5em;font-size:11px;font-weight:bold;padding:5px 0px;width:auto}.inv_msg_note{color:#900;margin-left:10px;line-height:18px;line-height:1.5em;font-size:11px;font-weight:bold;padding:5px 0px;width:auto;color:#409ee7}#inv_import_list_container{margin-right:5px;padding:8px;min-height:355px;width:670px;background:#f5fafe;border:1px solid #c8e3f8;float:left;display:inline-block;width:auto}#inv_import_list_container span label{vertical-align:bottom}#inv_recipients_profiles_holder{margin-right:5px;padding:8px;min-height:355px;width:670px;background:#f5fafe;border:1px solid #c8e3f8;float:left;margin-left:10px;display:inline-block;width:auto;overflow:hidden}#inv_recipients_profiles_holder span{line-height:24px;font-size:13px}#inv_messages_profiles_holder{margin-right:5px;padding:8px;min-height:355px;width:670px;background:#f5fafe;border:1px solid #c8e3f8;float:left;margin-left:10px;display:inline-block;width:auto;overflow:hidden}#inv_messages_profiles_holder span{line-height:24px;font-size:13px}#inv_import_list{float:left;display:inline-block;width:auto}.append-merge #inv_import_list{float:none;display:block}#inv_step_nav{clear:both;display:inline-block;width:auto;padding:0px 3px;margin:0 20px 10px 0;font-size:14px;font-weight:600;color:#1e88e5}.inv_space{clear:both;display:inline-block;padding:0px;margin:0px;width:40px}div.inv_step{height:15px;cursor:pointer;float:left;width:auto;margin:3px 5px;padding:0px}div.inv_step span.circle{display:inline-block;margin:0px 0px;width:24px;height:24px;font-size:13px;line-height:24px;text-align:center;color:#6cb1ee;border:1px solid #6cb1ee;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}div.inv_step span.label{display:inline-block;padding:0px 5px;line-height:24px;text-align:center;color:#6cb1ee;line-height:18px}div.inv_step a:hover span{color:#1e88e5}div.inv_step a:hover span.circle{color:#fff;background-color:#ffa608;border:1px solid #ffa608;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}div.inv_step .yellow{height:10px}div.inv_step.active{background-color:#fff}div.inv_step.active a span{color:#1e88e5}div.inv_step.active a span.circle{color:#fff;background-color:#ffa608;border:1px solid #ffa608;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}.inv_step_space{display:block;float:left;margin:0px;padding:0px;height:24px;width:13px}#invitation_profile_notes{display:inline-block;float:left;width:255px;height:auto;min-height:365px;margin:0px 0px 0px 15px !important;padding:10px;line-height:14px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f5fafe}#invitation_profile_notes ul{list-style:square inside;margin:0px;padding:0px}#invitation_profile_notes li{padding-bottom:5px}#inv_select_mail_to{display:block;float:left;margin-right:20px;padding:7px;min-height:250px;min-width:450px;font-size:12px;border:1px solid #c8e3f8;background-color:#f5fafe}#inv_select_mail_to_respondents{font-size:12px;margin:auto;margin-top:10px;padding:7px;min-height:250px;max-height:auto;float:left}#inv_select_mail_to_respondents ol{margin:0px;padding:0px;list-style:none}#inv_select_mail_to_respondents ol li{margin:0px;padding:0px;list-style:none}#inv_select_mail_preview{float:left;padding:7px;margin-left:7px;width:428px;font-size:12px;border:1px solid #c8e3f8;background-color:#f5fafe}.inv_send_span{display:inline-block;margin-top:7px}.inv_send_span label{vertical-align:middle !important}.inv_send_span input{vertical-align:middle !important;margin-bottom:3px}.inv_send_span.shift{padding-left:100px}#inv_view_arch_recipients{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);height:auto;width:auto}#inv_view_arch_recipients .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#inv_view_arch_recipients .popup_close:hover{color:#1e88e5}#inv_view_arch_recipients .popup_close a{color:#d3d3d3}#inv_view_arch_recipients .popup_close a:hover{color:#1e88e5}#inv_view_arch_recipients h2,#inv_view_arch_recipients .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#inv_view_arch_recipients p{line-height:20px}#inv_view_arch_recipients.popup_violet{border-left:6px #921ee5 solid !important}#inv_view_arch_recipients.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#inv_view_arch_recipients.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#inv_view_arch_recipients.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#inv_view_arch_recipients.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#inv_view_arch_recipients.popup_orange{border-left:6px #ffa608 solid !important}#inv_view_arch_recipients.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#inv_view_arch_recipients.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#inv_view_arch_recipients.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#inv_view_arch_recipients.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#inv_view_arch_recipients.popup_red{border-left:6px red solid !important}#inv_view_arch_recipients.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#inv_view_arch_recipients.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#inv_view_arch_recipients.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#inv_view_arch_recipients.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.inv_arch_subject{max-width:200px}#inv_import_list_profiles{margin:0px;padding:0px;min-width:100px;max-width:400px;min-height:100px;max-height:600px;overflow:auto !important;display:inline-block;border:1px solid #d3d3d3;background-color:#fff;width:200px !important;height:237px !important}#inv_import_list_profiles ol{margin:0px;padding:0px;display:block;border-bottom:1px solid #d3d3d3}#inv_import_list_profiles ol li{display:block;list-style-image:none;list-style-position:outside;list-style-type:none;line-height:20px;border-top:1px solid #d3d3d3;padding:0px 5px;cursor:pointer}#inv_import_list_profiles ol li.active{background-color:#1e88e5;color:#fff}#invitation_messages{margin:0px;padding:0px;min-width:100px;max-width:400px;min-height:100px;max-height:600px;overflow:auto !important;display:inline-block;border:1px solid #d3d3d3;background-color:#fff;width:200px !important;height:237px !important}#invitation_messages ol{margin:0px;padding:0px;display:block;border-bottom:1px solid #d3d3d3}#invitation_messages ol li{display:block;list-style-image:none;list-style-position:outside;list-style-type:none;line-height:20px;border-top:1px solid #d3d3d3;padding:0px 5px;cursor:pointer}#invitation_messages ol li.active{background-color:#1e88e5;color:#fff}#inv_recipients_profile_name{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);height:auto;width:300px}#inv_recipients_profile_name .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#inv_recipients_profile_name .popup_close:hover{color:#1e88e5}#inv_recipients_profile_name .popup_close a{color:#d3d3d3}#inv_recipients_profile_name .popup_close a:hover{color:#1e88e5}#inv_recipients_profile_name h2,#inv_recipients_profile_name .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#inv_recipients_profile_name p{line-height:20px}#inv_recipients_profile_name.popup_violet{border-left:6px #921ee5 solid !important}#inv_recipients_profile_name.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#inv_recipients_profile_name.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#inv_recipients_profile_name.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#inv_recipients_profile_name.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#inv_recipients_profile_name.popup_orange{border-left:6px #ffa608 solid !important}#inv_recipients_profile_name.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#inv_recipients_profile_name.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#inv_recipients_profile_name.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#inv_recipients_profile_name.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#inv_recipients_profile_name.popup_red{border-left:6px red solid !important}#inv_recipients_profile_name.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#inv_recipients_profile_name.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#inv_recipients_profile_name.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#inv_recipients_profile_name.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#inv_recipients_profile_name.access{min-width:350px}#rec_profile_name{width:150px}#rec_profile_comment{width:250px}#inv_edit_recipient{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto}#inv_edit_recipient th{text-align:right;font-weight:normal;padding:3px}#inv_edit_recipient td{padding:3px}#inv_edit_recipient input{width:300px}.inv_input_error{border:1px solid #900}#inv_rec_filter{float:left;width:auto;margin-right:5px;margin-bottom:10px;padding:8px;border:1px solid #efefef}#inv_rec_cehckboxes{float:left;width:auto !important}#inv_rec_cehckboxes span{display:inline-block;padding:3px !important}.inv_high{display:inline-block;line-height:13px;background:#fff0d4;color:#d48800;font-weight:bold}.inv_high_i{display:inline-block;line-height:13px;background:#fff0d4;color:#d48800;font-weight:bold}#inv_delete_rec_confirm{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);height:auto}#inv_delete_rec_confirm .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#inv_delete_rec_confirm .popup_close:hover{color:#1e88e5}#inv_delete_rec_confirm .popup_close a{color:#d3d3d3}#inv_delete_rec_confirm .popup_close a:hover{color:#1e88e5}#inv_delete_rec_confirm h2,#inv_delete_rec_confirm .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#inv_delete_rec_confirm p{line-height:20px}#inv_delete_rec_confirm.popup_violet{border-left:6px #921ee5 solid !important}#inv_delete_rec_confirm.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#inv_delete_rec_confirm.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#inv_delete_rec_confirm.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#inv_delete_rec_confirm.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#inv_delete_rec_confirm.popup_orange{border-left:6px #ffa608 solid !important}#inv_delete_rec_confirm.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#inv_delete_rec_confirm.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#inv_delete_rec_confirm.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#inv_delete_rec_confirm.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#inv_delete_rec_confirm.popup_red{border-left:6px red solid !important}#inv_delete_rec_confirm.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#inv_delete_rec_confirm.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#inv_delete_rec_confirm.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#inv_delete_rec_confirm.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.inv_send_message{padding:15px;height:auto;background-color:#f5fafe;max-width:600px}.inv_new_list_note{font-style:italic;color:gray;font-size:95%}#inv_bottom_edit{width:auto;margin:7px 0 0 11px}#inv_bottom_edit a{padding-right:10px}#inv_arch_mail_preview{font-size:12px;margin:5px auto;overflow:auto;max-height:500px}#inv_arch_mail_preview table#inv_arch_mail_preview td{padding-top:5px;padding-bottom:10px}fieldset.inv_fieldset{display:block;width:98%;margin:-5px 0 0 5px}fieldset.inv_fieldset>div{margin:0px 0px}fieldset.inv_fieldset span.legend{color:gray;font-weight:500}table.inv_dashboard_table{width:530px !important;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;font-size:12px}table.inv_dashboard_table th{padding:3px;border-bottom:1px solid #efefef;font-weight:normal;text-align:left}table.inv_dashboard_table td{padding:3px}table.inv_dashboard_table th+th{width:70px !important;text-align:center}table.inv_dashboard_table th+th+th{width:70px !important;text-align:center}table.inv_dashboard_table td+td{width:70px !important;text-align:center}table.inv_dashboard_table td+td+td{width:70px !important;text-align:center}table.inv_dashboard_table.sub{margin-left:20px;width:510px !important;margin-bottom:25px}span.inv_dashboard_sub_title{display:inline-block;margin-left:5px;color:#1e88e5;font-size:13px;font-weight:500;margin-bottom:5px}span.inv_dashboard_sub_title span{margin-left:5px;color:gray;font-size:13px;font-weight:600;margin-bottom:5px}span.inv_dashboard_sub_detail{display:inline-block;margin:0px 5px 5px 5px;font-size:13px}#inv_send_note{position:absolute;z-index:9999;display:none;width:200px;height:auto;margin:auto auto;margin-top:-100px;padding:20px 50px;text-align:center;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000}div#inv_edit_rec_list{margin:0px;padding:0px;overflow:auto !important;background-color:#fff;-moz-user-select:none;-webkit-user-select:none;user-select:none;-ms-user-select:none}table.inv_edit_rec_list{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;border:1px solid #d3d3d3;border-top:none;max-width:800px}table.inv_edit_rec_list tr{border-top:1px solid #d3d3d3;cursor:pointer}table.inv_edit_rec_list tr.active{background-color:#061d31;color:#fff}table.inv_edit_rec_list td{padding:3px 5px}table.inv_edit_rec_list th{padding:3px 5px}#invListAccess{max-width:600px}div.listAccess_uid{min-width:147px;height:19px}#inv_upload_list{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);height:auto;padding-bottom:45px}#inv_upload_list .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#inv_upload_list .popup_close:hover{color:#1e88e5}#inv_upload_list .popup_close a{color:#d3d3d3}#inv_upload_list .popup_close a:hover{color:#1e88e5}#inv_upload_list h2,#inv_upload_list .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#inv_upload_list p{line-height:20px}#inv_upload_list.popup_violet{border-left:6px #921ee5 solid !important}#inv_upload_list.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#inv_upload_list.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#inv_upload_list.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#inv_upload_list.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#inv_upload_list.popup_orange{border-left:6px #ffa608 solid !important}#inv_upload_list.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#inv_upload_list.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#inv_upload_list.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#inv_upload_list.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#inv_upload_list.popup_red{border-left:6px red solid !important}#inv_upload_list.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#inv_upload_list.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#inv_upload_list.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#inv_upload_list.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#tbl_respondentArchive{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;clear:both}#tbl_respondentArchive th{color:#333;padding:3px;padding-left:7px;font-size:12px;font-weight:normal;height:24px;vertical-align:middle;background-color:#efefef;border-top:1px solid #efefef;border-bottom:1px solid #efefef;text-align:left;width:150px}#tbl_respondentArchive td{padding:5px 3px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #efefef}#tbl_respondentArchive tr:nth-child(odd){background-color:#f5fafe}#tbl_respondentArchive tr:nth-child(even){background-color:#fff}span.span_list_archive{display:inline-block;padding-top:10px}span.inv_sort_ascending{display:inline-block;height:5px;width:9px;margin:auto 50%;float:right;bottom:0px;background-position:-225px -98px}span.inv_sort_descending{display:inline-block;height:5px;width:9px;margin:auto 50%;float:right;bottom:0px;background-position:-225px -108px}#email_server_warning{box-sizing:border-box;margin:0 0 20px 10px;padding:10px;line-height:15px;color:#d48800;background-color:#fff0d4;border:1px solid #d48800}.append_step{padding:0 0 10px 30px}.append_step input[type=file]{font-weight:600;color:#ffa608;font-size:11px}#invRecipiensList1{padding:2px 0 0 10px}#invRecipiensList2{padding:2px 0 0 10px}#invRecipiensList3{padding:2px 0 0 10px}#invRecipiensList4{padding:2px 0 0 10px}#invRecipiensList5{padding:2px 0 0 10px}.inv_send_mail_send_type{margin-bottom:20px;padding:7px;border:1px solid #c8e3f8;background-color:#f5fafe}#inv_send_mail_btn{height:30px}.publish_url_holder{padding:5px 0 13px 0;line-height:20px}.url_box_active{padding:5px;border:1px solid #1e88e5;background:none repeat scroll 0 0 #f0f7fd}.url_box_active b{font-weight:500}#vabila{min-height:250px;background-color:#fff}#vabila span#anketa_aktivacija_note{display:inline-block;box-sizing:border-box;width:100%;padding:10px;margin-bottom:15px;font-size:15px;background-color:#f5fafe;border:1px solid #c8e3f8}#vabila span#anketa_aktivacija_note #vabila_anketa_aktivacija a{color:#ffa608;padding-left:10px}#vabila span#anketa_aktivacija_note .sprites.star_off{vertical-align:-5%}#vabila span#anketa_aktivacija_note .sprites.star_on{vertical-align:-5%}#vabila span#anketa_aktivacija_note.google_yellow{color:#333;background-color:#fff0d4 !important;border:1px solid #ffa608}#vabila span#anketa_aktivacija_note.google_yellow #vabila_anketa_aktivacija a{font-weight:500;color:#d48800}#vabila span#anketa_diagnostika_note{display:inline-block;width:auto;margin-bottom:10px;margin-left:2px;margin-bottom:5px;padding:5px;font-size:15px;background-color:#f5fafe;border:1px solid #c8e3f8}#vabila #anketa_diagnostika_note2{padding:10px;margin:10px 0 15px 0;font-size:15px;color:#d48800;border:1px solid #ffa608;background-color:#fff0d4}.shift{margin:0px 0px 0px 20px}.labelSpan{width:60px;display:table-cell;float:left;text-align:left}.labelSpanWide{width:60px;display:table-cell;float:left;text-align:left;width:100px}.qs_data{margin-left:5px;display:inline-block;font-weight:normal !important}#tbl_inv_setting td{vertical-align:top;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse}#tbl_inv_setting td fieldset{padding:5px 15px;margin:3px}#tbl_inv_setting p{margin:7px 0px}#tbl_inv_setting textarea:focus{border:none;background-color:#fff0d4;border:1px dashed #a9a9a9;padding:2px}#surveyInvitationSettingServer{min-width:440px;max-width:700px;margin:15px 10px 10px 5px;display:inline-block;padding:0 10px 10px 10px;border:1px solid #c8e3f8;background-color:#f5fafe}#surveyInvitationSetting{min-width:440px;margin:15px 10px 10px 5px;display:inline-block;padding:0 10px 10px 10px;border:1px solid #c8e3f8;background-color:#f5fafe}#simpleMailInvitation_div{min-width:500px}#simpleMailInvitation_div div.profile_holder{float:left;width:210px;border:1px solid gray;height:250px}#simpleMailInvitation_div div.profile_holder div.option{cursor:pointer;display:block;border-bottom:1px solid gray;padding:1px}#simpleMailInvitation_div div.profile_holder div.active{background-color:#061d31;color:#fff}#simpleMailInvitation_div.wide{min-width:995px;margin-left:-200px}#simpleMailInvitationCoverDiv{position:absolute;left:0px;width:100%;top:0px;right:0px;bottom:0px;height:100%;background:#f5fafe;border:1px solid #c8e3f8;opacity:.4;z-index:10;display:none}#simpleMailInvitationPreviewDiv{display:none;position:absolute;width:550px;top:25px;left:200px;z-index:20;border:1px solid #900;background-color:#f8f8f8;padding:10px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;box-shadow:0 0 8px gray;-moz-box-shadow:0 0 8px gray;-webkit-box-shadow:0 0 8px gray}#simpleMailSubject{width:500px}#simpleMailBody{width:500px;height:200px;resize:none}#simpleMailRecipients{width:250px;height:235px;resize:none}.simpleMailError{border:1px solid #ffa608;background-color:#fff0d4;padding:5px;width:auto;margin-bottom:5px;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}#insert_email_respondents{padding:5px;border:1px solid #900;background:#fff}#insert_email_respondents fieldset{border:1px solid gray;padding:8px}#survey_invitation{width:auto;height:350px;padding:10px}#invitation_profiles{height:290px;overflow:auto;cursor:pointer}#invitation_profiles .option{padding:1px}#invitation_profiles .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#invitation_profile_values{float:left;width:550px;margin:0px;display:block;height:330px;margin-left:10px}#invitation_profile_content{width:473px;height:220px;border:1px solid #c8e3f8;overflow:auto}#invitation_profile_title{width:420px}#invitation_new_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}#invitation_rename_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}#invitation_delete_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}.email_invitations_holder{float:right;width:135px;border:1px solid #c8e3f8;height:260px;margin:0px}#email_invitations{height:260px;overflow:auto;cursor:pointer}#email_invitations .option{padding:1px}#email_invitations .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#email_invitations_values{float:left;width:425px;margin:0px;display:block}#email_invitation_value_text{width:360px;height:193px;border:1px solid #c8e3f8;overflow:auto}#conditionProfileNote.simple{margin-left:10px}#placeholder.komentarji{margin:0px}.comment{font-style:italic;color:#d48800;width:auto;padding-right:10px;padding-top:3px;display:block;float:left}.if_comment{font-style:italic;color:#aaa;width:auto;margin:0px 3px}.spr_comment{font-style:italic;color:#aaa;width:auto;margin:0px 3px}#quick_comments_link{margin-bottom:1px !important;margin-left:3px !important;padding-bottom:3px !important}#quick_comments_link a span.link{display:inline-block;padding:3px !important;padding-bottom:5px !important;font-size:11px;vertical-align:top}#quick_comments_link.newCss{height:20px !important;line-height:20px !important;text-align:center;margin-top:8px !important}#quick_comments_link.newCss img{vertical-align:middle}.comments_on_alert{margin-bottom:10px}.comments_on_alert a{font-weight:500}.comments_on_alert a:hover{color:#166dba}.comment_qtip_title_secondLine{color:gray;font-weight:normal !important;padding-top:5px}#comment_question_note{display:block;width:auto;margin-bottom:15px;margin-left:5px;padding:5px 10px;font-size:15px;background-color:#f5fafe;border:1px solid #c8e3f8}#topSettingsHolder.komentarji #additional_navigation a span,#topSettingsHolder.komentarji_anketa #additional_navigation a span{padding:2px 0px 2px 0}#analiza_data{margin-bottom:10px;background-color:#fff}#analiza_data #tableContainer{margin-bottom:20px;clear:both}.data_spr_editing{background-color:#eafada}#vnosi_paginacija{float:right}#vnosi_paginacija div{padding:1px 3px;font-size:100%;line-height:10px}#vnosi_paginacija div a{vertical-align:middle}#vnosi_paginacija div label{text-align:right;display:inline-block;cursor:auto;margin:0 5px 0 20px;padding-bottom:2px}#vnosi_paginacija div select{display:inline-block;width:50px;margin:0 5px;text-align:center}.top_paginacija{float:right;margin:30px 0 10px 0}#div_paginacija_vnosov{display:inline;float:right;padding:5px;margin-left:0px}#div_paginacija_vprasanj{display:inline;float:left;padding:5px}#bottom_edit{width:auto;margin:-12px 10px 0 28px}#bottom_edit.shifted{margin-left:5px}.headerCell{max-width:250px;max-height:1.1em;overflow:hidden}#dataTable{table-layout:fixed;width:0px;padding:0px;margin:0px;border-collapse:collapse;border-spacing:0px;outline:1px solid #c8e3f8;border-top:1px solid #c8e3f8;border-left:1px solid #c8e3f8;border-bottom:1px solid #c8e3f8}#dataTable .dataCell{position:relative;white-space:nowrap;overflow:hidden;width:100%;min-width:20px;max-height:1.1em;padding:3px 0;text-indent:3px}#dataTable .headerCell{white-space:nowrap;padding:3px}#dataTable th{border-right:1px solid #c8e3f8;border-bottom:1px solid #c8e3f8;font-weight:normal;text-align:left;background-color:#f5fafe;cursor:pointer}#dataTable col{width:100px}#dataTable col.data_edit{width:23px}#dataTable td{border-right:1px solid #c8e3f8;border-bottom:1px solid #d3d3d3;padding:3px;font-weight:normal;text-align:left;max-width:200px;overflow:hidden;line-height:18px}#dataTable td .highlighted{font-weight:bold;color:red;background-color:#ff0}#dataTable td.data_edit .pdf{cursor:pointer}#dataTable td.data_edit .rtf{cursor:pointer}#dataTable td.data_edit .evoli{cursor:pointer}#dataTable td.data_edit .evoli2{cursor:pointer}#dataTable td.data_edit .evoli3{cursor:pointer}#dataTable td.data_edit .mfdps{cursor:pointer}#dataTable select{font-size:11px !important;width:100%}#dataTable th.hover{background-color:#f5fafe}#dataTable tbody .active{background-color:#d3d3d3 !important}#dataTable tbody tr:nth-child(odd){background-color:#feffff}#dataTable tbody tr:nth-child(even){background-color:#f8f8f8}#dataTable .delete_data_row{margin:0}#dataTable .scrollContent.coding td:hover{background-color:#d3d3d3;cursor:pointer}#dataTable .scrollContent.coding td.enkaIcon:hover{background-color:#fff}#dataTable .scrollContent.coding td.cellGreen:hover{background-color:#e6ffcc;cursor:auto}.dataCell:hover .tableResize{background-color:#1e88e5}.no_data_alert{font-weight:500;font-size:13px}#collect_data_popup{display:none;z-index:9999;position:fixed;top:45%;left:50%;transform:translateX(-50%);padding:20px;font-weight:500;font-size:13px;background-color:#fff}#vprasanje_recode_new{position:absolute;top:40% !important;height:auto;min-height:100px;width:350px;padding:10px;font-size:13px;background-color:#fff;border:4px solid #c8e3f8;border-radius:7px;-moz-border-radius:7px 7px 7px 7px;-webkit-border-radius:7px;box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-webkit-box-shadow:0 0 15px rgba(0,0,0,.8)}.coding-refresh{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;z-index:1000;left:calc(50% - 150px);top:20px;text-align:center;width:300px}.coding-refresh .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}.coding-refresh .popup_close:hover{color:#1e88e5}.coding-refresh .popup_close a{color:#d3d3d3}.coding-refresh .popup_close a:hover{color:#1e88e5}.coding-refresh h2,.coding-refresh .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}.coding-refresh p{line-height:20px}.coding-refresh.popup_violet,.coding-refresh#popup_user_access{border-left:6px #921ee5 solid !important}.coding-refresh.popup_violet div.buttonwrapper a,.coding-refresh#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.coding-refresh.popup_violet div.buttonwrapper a:hover,.coding-refresh#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}.coding-refresh.popup_violet div.buttonwrapper a.ovalbutton_gray,.coding-refresh#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}.coding-refresh.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,.coding-refresh#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}.coding-refresh.popup_orange,.coding-refresh#surveyTrajanje,.coding-refresh#check_pogoji,.coding-refresh#dropped_alert{border-left:6px #ffa608 solid !important}.coding-refresh.popup_orange div.buttonwrapper a,.coding-refresh#surveyTrajanje div.buttonwrapper a,.coding-refresh#check_pogoji div.buttonwrapper a,.coding-refresh#dropped_alert div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}.coding-refresh.popup_orange div.buttonwrapper a:hover,.coding-refresh#surveyTrajanje div.buttonwrapper a:hover,.coding-refresh#check_pogoji div.buttonwrapper a:hover,.coding-refresh#dropped_alert div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}.coding-refresh.popup_orange div.buttonwrapper a.ovalbutton_gray,.coding-refresh#surveyTrajanje div.buttonwrapper a.ovalbutton_gray,.coding-refresh#check_pogoji div.buttonwrapper a.ovalbutton_gray,.coding-refresh#dropped_alert div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}.coding-refresh.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,.coding-refresh#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover,.coding-refresh#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover,.coding-refresh#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}.coding-refresh.popup_red{border-left:6px red solid !important}.coding-refresh.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}.coding-refresh.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}.coding-refresh.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}.coding-refresh.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#coding{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);position:absolute;min-width:500px;min-height:100px;display:none}#coding .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#coding .popup_close:hover{color:#1e88e5}#coding .popup_close a{color:#d3d3d3}#coding .popup_close a:hover{color:#1e88e5}#coding h2,#coding .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#coding p{line-height:20px}#coding.popup_violet{border-left:6px #921ee5 solid !important}#coding.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#coding.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#coding.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#coding.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#coding.popup_orange{border-left:6px #ffa608 solid !important}#coding.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#coding.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#coding.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#coding.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#coding.popup_red{border-left:6px red solid !important}#coding.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#coding.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#coding.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#coding.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#coding .new-spr{position:absolute;top:3px;right:3px;background-color:#fff;padding:5px;text-align:right}ul.recode_number_sort{padding:0px;margin:0px}ul.recode_number_sort li{list-style:none;border:1px solid #c8e3f8;margin:7px 10px 7px 0px;padding:3px 0px;width:100%}.recoding_variable_div{padding:8px 3px}.ui-recode-placeholder{background:#fff0d4;border:1px dashed #ffa608}.floatRecodeSpremenljivka{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);position:fixed;min-height:50px;height:auto;top:40vh;left:calc(50% + 360px);min-width:200px;width:auto;z-index:1000}.floatRecodeSpremenljivka .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}.floatRecodeSpremenljivka .popup_close:hover{color:#1e88e5}.floatRecodeSpremenljivka .popup_close a{color:#d3d3d3}.floatRecodeSpremenljivka .popup_close a:hover{color:#1e88e5}.floatRecodeSpremenljivka h2,.floatRecodeSpremenljivka .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}.floatRecodeSpremenljivka p{line-height:20px}.floatRecodeSpremenljivka.popup_violet,.floatRecodeSpremenljivka#popup_user_access{border-left:6px #921ee5 solid !important}.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a,.floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a:hover,.floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray,.floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,.floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}.floatRecodeSpremenljivka.popup_orange,.floatRecodeSpremenljivka#surveyTrajanje,.floatRecodeSpremenljivka#check_pogoji,.floatRecodeSpremenljivka#dropped_alert{border-left:6px #ffa608 solid !important}.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a,.floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a,.floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a,.floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a:hover,.floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a:hover,.floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a:hover,.floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray,.floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a.ovalbutton_gray,.floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a.ovalbutton_gray,.floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,.floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover,.floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover,.floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}.floatRecodeSpremenljivka.popup_red{border-left:6px red solid !important}.floatRecodeSpremenljivka.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}.floatRecodeSpremenljivka.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}.floatRecodeSpremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}.floatRecodeSpremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}table#recode_table{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;border:1px solid #c8e3f8}table#recode_table th{padding:3px;font-weight:600;border:1px solid #c8e3f8;background-color:#f5fafe}table#recode_table th:nth-child(1){border-right:1px solid #efefef}table#recode_table td{padding:5px 3px}table#recode_table td:nth-child(4){border-right:1px solid #efefef}table#recode_table tr.even{background:#f8f8f8}table#recode_table tr.odd{background:#fff}table#recode_table tr.border_top{border-top:1px solid #c8e3f8}table#recode_table tr.border_top_lite{border-top:1px solid #efefef}#recode_number_sort select{max-width:200px}#question_recode{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;max-height:450px;overflow-y:scroll;min-height:200px;height:auto;width:650px}#question_recode .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#question_recode .popup_close:hover{color:#1e88e5}#question_recode .popup_close a{color:#d3d3d3}#question_recode .popup_close a:hover{color:#1e88e5}#question_recode h2,#question_recode .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#question_recode p{line-height:20px}#question_recode.popup_violet{border-left:6px #921ee5 solid !important}#question_recode.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#question_recode.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#question_recode.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#question_recode.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#question_recode.popup_orange{border-left:6px #ffa608 solid !important}#question_recode.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#question_recode.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#question_recode.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#question_recode.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#question_recode.popup_red{border-left:6px red solid !important}#question_recode.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#question_recode.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#question_recode.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#question_recode.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#question_recode label{display:inline-block;vertical-align:middle}#question_recode label input{display:inline-block;vertical-align:middle;vertical-align:top}#question_recode input{display:inline-block;vertical-align:middle;vertical-align:top}#question_recode .recodeButtonHolder .buttonwrapper a.ovalbutton_gray{padding:5px 12px 6px}#question_recode .recodeButtonHolder .buttonwrapper a.ovalbutton_gray:hover span{color:#fff !important}#question_recode table.question_recode_table tr td select{max-width:250px}#question_recode_run_note{display:none}#recodeToNewSpr{padding:5px 15px 15px 15px;margin-bottom:40px}#conditionProfileNote{display:inline-block;width:auto;padding:3px 10px;margin-bottom:4px;margin-top:4px;line-height:2em;vertical-align:middle;border:1px solid #c8e3f8;background-color:#f5fafe}#conditionProfileNote span.conditions_display{line-height:inherit}#conditionProfileNote div.if_content{display:inline-block}#div_condition_editing_conditions{min-height:28px;line-height:28px}#div_condition_editing_conditions .error_display{margin-top:5px}dl.dl_spss{margin-bottom:30px;font-size:12px}dl.dl_spss dt{font-weight:600;min-width:80px;float:left}dl.dl_spss dd{margin:0px 0 2px 85px;padding:0px}.tableResize{position:absolute;right:0;top:0;height:100%;width:5px;cursor:e-resize}.pbLabel{height:20px;width:160px;vertical-align:middle;padding:auto 0}#pbAllPercent{width:500px;height:20px;margin:0 0 5px 0;padding:3px;display:block;background-color:#fff;background:-webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));background:-moz-linear-gradient(top, #f6fbff, #fff);border:1px solid #c8e3f8}#pbAllPercent div{background-color:#84d700;height:100%;width:0;border:none;-moz-box-shadow:2px 0 5px #aaa;-webkit-box-shadow:2px 0 5px #aaa;box-shadow:2px 0 5px #aaa}#pbCurrPercent{width:500px;height:20px;margin:0 0 5px 0;padding:3px;display:block;background-color:#fff;background:-webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));background:-moz-linear-gradient(top, #f6fbff, #fff);border:1px solid #c8e3f8}#pbCurrPercent div{background-color:#c8e3f8;height:100%;width:0;border:none;-moz-box-shadow:2px 0 5px #aaa;-webkit-box-shadow:2px 0 5px #aaa;box-shadow:2px 0 5px #aaa}#pbRowPercent{width:500px;height:20px;margin:0 0 5px 0;padding:3px;display:block;background-color:#fff;background:-webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));background:-moz-linear-gradient(top, #f6fbff, #fff);border:1px solid #c8e3f8}#pbRowPercent div{background-color:#c7ed8b;height:100%;width:0;border:none;-moz-box-shadow:2px 0 5px #aaa;-webkit-box-shadow:2px 0 5px #aaa;box-shadow:2px 0 5px #aaa}#actionLabel{position:absolute;z-index:1px;padding:3px}#pbCurrPercentLabel{position:absolute;z-index:1px;padding:3px}#pbRowPercentLabel{position:absolute;z-index:1px;padding:3px}#hpbRowPercent{visibility:hidden}#dataTable.editData td{cursor:pointer}#dataTable.editData td.hover{background-color:#f5fafe}td.enkaIcon{cursor:pointer}.data_uid{visibility:hidden;display:none}tr:nth-child(1) .data_edit{width:18px}#data_search_filter{float:left;width:auto;margin:0 0 10px 0;padding:8px;border:1px solid #c8e3f8}.dataSettingsBasic{float:left;width:auto;margin:0 0 10px 20px;padding:8px}.dataSettingsBasic #toggleDataCheckboxes{padding:0px 20px !important;color:#1e88e5}.dataSettingsBasic #toggleDataCheckboxes .faicon{vertical-align:-1px}table.scrollTable img.pdf{cursor:pointer}table.scrollTable img.rtf{cursor:pointer}table.scrollTable img.edit{cursor:pointer}table.scrollTable img.delete{cursor:pointer}table.no_wrap_td td{white-space:nowrap}#vnosi_file_status{width:auto;display:inline-block;clear:both}#bottom_data_legend{width:auto;margin:0px 10px 0 10px;padding:8px 15px 8px 12px;background-color:#efefef;border:1px solid #d3d3d3}#bottom_data_legend ul{margin-top:6px;padding-left:30px !important}#bottom_data_legend ul li{height:20px}#bottom_data_legend.bg_blue{background-color:#d7f4fa;border-color:#d3d3d3}#bottom_data_legend.test{background-color:#e6ffcc;border-color:#d3d3d3}#incremental_progress{margin-top:60px;position:absolute}#incremental_details{width:auto;margin-top:10px;display:inline-block;background-color:#f5fafe;border:1px solid #c8e3f8;padding:5px}#incremental_details span{margin-left:10px;display:inline-block;float:right}#data_sn_buttons{float:left;padding:1px 10px 5px 5px}#data_sn_buttons span{padding-right:30px;font-weight:600}table.variableView{width:auto;border-spacing:0px;padding:0px;margin:30px 0 0 0;border-collapse:collapse;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:1px solid #c8e3f8}table.variableView thead tr{background-color:#f5fafe}table.variableView tbody tr:nth-child(even){background-color:#f8f8f8}table.variableView tbody tr:nth-child(odd){background-color:#fff}table.variableView th{padding:3px 5px;border-bottom:1px #c8e3f8 dotted}table.variableView td{padding:3px 5px;border-bottom:1px #c8e3f8 dotted}#srv_incremental_lock{margin-top:60px;position:absolute;font-size:14px;color:red;display:inline-block;padding:8px;width:auto;background-color:#f5fafe;border:1px solid #c8e3f8}.data_preview_content{background-color:#f8f8f8;border:1px solid #c8e3f8;box-shadow:0 0 5px gray;padding:5px;position:absolute;white-space:normal;width:350px}.display_data_test_data_note{padding:10px 15px 12px 15px;margin:10px 0 10px 0;font-weight:500;font-size:13px;background-color:#fff0d4;border:1px solid #ffa608}#dataOnlyValid{position:relative;display:inline-block;width:auto;margin:4px 0 0;padding:3px 0 4px 0}#dataOnlyValid .middle{margin-left:20px}#dataOnlyValid .middle input{margin:0px 4px 1px 2px}#dataSetingsLinks{float:left;display:inline-block;min-width:100px;padding:0px;margin:0 0 8px 0}#dataSetingsLinks ul{margin:0px;padding:0px;font-size:100%;line-height:90%;vertical-align:middle}#dataSetingsLinks ul li{list-style:none;display:inline;list-style-type:none;padding-left:15px}#dataSetingsLinks.data ul li{vertical-align:middle}#dataSetingsLinks.data ul li label{vertical-align:middle}#dataSetingsLinks.data ul li input{vertical-align:middle}#dataSetingsLinks.data ul li a.help{vertical-align:middle}#dataIconSetingsLinks{float:left;display:inline-block;width:auto;padding:0px 0px;margin:3px 0 5px 15px}#dataIconSetingsLinks input{margin-left:15px}#div_data_file{position:absolute;right:100px;top:120px}#dataTableScroller{z-index:50;opacity:0;position:fixed;left:50%;width:auto;margin:10px 0}.hash_comment{min-width:200px;height:100%;min-height:1em;outline:1px dashed #aaa;display:inline-block}#div_survey_links{width:auto}.tbl_survey_links{margin-top:15px;border-spacing:0;border-collapse:collapse}.tbl_survey_links td{padding:2px 5px;margin:3px 0px;border:1px #c8e3f8 solid}.tbl_survey_links th{padding:2px 5px;margin:3px 0px;border:1px #c8e3f8 solid;background-color:#f5fafe}.tbl_survey_links td.editable.hash_comment{cursor:pointer;display:table-cell !important;outline:0 !important;border:1px #c8e3f8 solid}.tbl_survey_links td.editable.hash_comment:hover{border:1px #c8e3f8 solid}#edit_survey_data{width:70%;float:left}#edit_survey_data div.inner{padding:20px 20px 0px 20px}#edit_survey_data .quick_edit_title{line-height:12px;font-size:16px;font-weight:bold;text-align:center}#edit_survey_data .quick_edit_title span{margin:0 20px 5px 20px}#edit_survey_data .comment{clear:both;margin-top:10px}#edit_survey_data table.ranking_table{width:100%;table-layout:fixed;border-spacing:0}#edit_survey_data table.ranking_table td{width:45%;padding:5px;vertical-align:top}#edit_survey_data table.ranking_table td.middle{width:10%;vertical-align:top;text-align:center}#edit_survey_data table.ranking_table ul{list-style:none;margin:0;padding:0}#edit_survey_data td.middle img{display:block;margin:50% 0 0 20px}#edit_survey_data .ranking{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#edit_survey_data .ranking_long{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#edit_survey_data .handle{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#edit_survey_data .handle_long{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#edit_survey_data .ime{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#edit_survey_data .izbran{width:230px;padding:5px;margin:0 auto 10px auto;border:1px solid #000;height:15px;text-align:center;overflow:hidden}#edit_survey_data .frame_ranking{width:230px;padding:5px;margin:0px auto 10px auto;border:1px dashed #000;height:15px;text-indent:-25px;font-weight:bold}#edit_survey_data .dropholder{position:relative;padding-top:11px}#edit_survey_data .dropholder .dropzone{position:absolute;left:0;right:0;top:0;bottom:0}#edit_survey_data .dropzone{border-top:1px solid #000;min-height:100px;padding-top:10px}#edit_survey_data .moving{cursor:pointer;margin-left:auto;margin-right:auto;width:230px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#edit_survey_data .frame_moving{width:230px;padding:5px;margin:0px auto 10px auto;border:1px dashed #000;height:15px;text-indent:-25px;font-weight:bold}#edit_survey_data ul.sorting{list-style:none;margin:0;padding:0}#edit_survey_data .sortholder{margin:0 auto;width:250px;padding:5px}#edit_survey_data .sortzone{position:absolute;margin:0 auto 0 auto;width:250px}#edit_survey_data .spremenljivka.tip_17 input{width:50px}#edit_survey_data .simple{overflow:visible}#edit_survey_data .simple .naslov{width:45%;float:left}#edit_survey_data .naslov p{margin-top:2px}#edit_survey_data .variable_holder{height:auto !important}#edit_survey_data .spremenljivka{width:98%;margin:20px 0;padding:10px 20px 20px 20px;color:#000;border:1px solid #c8e3f8}#edit_survey_data table.text_vrednost{table-layout:fixed;text-align:left;width:100%;border-spacing:0}#edit_survey_data .width_5{width:5%}#edit_survey_data .width_10{width:10%}#edit_survey_data .width_15{width:15%}#edit_survey_data .width_20{width:20%}#edit_survey_data .width_25{width:25%}#edit_survey_data .width_30{width:30%}#edit_survey_data .width_33{width:33.3%}#edit_survey_data .width_35{width:35%}#edit_survey_data .width_40{width:40%}#edit_survey_data .width_45{width:45%}#edit_survey_data .width_50{width:50%}#edit_survey_data .width_55{width:55%}#edit_survey_data .width_60{width:60%}#edit_survey_data .width_65{width:65%}#edit_survey_data .width_70{width:70%}#edit_survey_data .width_75{width:75%}#edit_survey_data .width_80{width:80%}#edit_survey_data .width_85{width:85%}#edit_survey_data .width_90{width:90%}#edit_survey_data .width_95{width:95%}#edit_survey_data .width_100{width:100%}#edit_survey_data .frame_dropping_titles{width:230px;padding:5px;margin:0px auto 0px auto;height:15px;text-align:center;background-color:#fff;border-top:1px solid #c8e3f8;border-left:1px solid #c8e3f8;border-right:1px solid #c8e3f8}#edit_survey_data .frame_dropping{width:230px;padding:5px;margin:0px auto 10px auto;height:15px;text-indent:-25px;background-color:#f5fafe;border:1px solid #c8e3f8}#quick_edit_title #left_options{position:absolute;float:left;margin:7px 0 0 20px}#quick_edit_title #left_options span{vertical-align:middle !important}#quick_edit_title span{cursor:pointer;margin:0 5px}.quick_edit_container #quick_edit_filter{margin:20px 0 10px 0;width:70%;padding-left:20px}.quick_edit_container .loop_warning{width:99%;border:1px solid red;padding:5px;margin-bottom:-10px}.quick_edit_container .spremenljivka .variabla{padding:3px 0}#container .quick_edit_loop{opacity:.5}#quick_edit_meta{max-width:290px;width:23%;float:left;overflow-x:auto;margin:60px 0 0 20px;background-color:#f5fafe;border:1px solid #c8e3f8}#quick_edit_meta .title{padding:8px 15px;text-align:left;font-weight:600;font-size:16px;color:#1e88e5}#quick_edit_meta table{width:100%;padding:15px;background-color:inherit}#quick_edit_meta table tr td.left{width:40%;padding:10px 0px 0px 0;text-align:left;font-weight:600}#quick_edit_meta table tr td.right{width:55%;padding:10px 0px 0px 0px;text-align:left;word-wrap:break-word;overflow:hidden}#branching.komentarji{left:30px}#branching.komentarji li.spr{margin-left:0}#branching .komentarji_anketa{width:44%;padding:2%;margin:30px 0;border:1px solid #c8e3f8;background-color:#f5fafe}#branching .komentarji_anketa span.komentarji_title{padding:10px;font-weight:600;font-size:13px}#branching .komentarji_resp{float:right}#branching .komentarji_ured{float:left}#globalSetingsList{float:left;display:inline-block;width:100% !important;padding-top:0px !important;padding-left:0px !important;margin-top:0px !important;margin-left:0 !important}#globalSetingsList h4{width:95% !important;max-width:1050px;padding:5px 2% !important;margin:0px !important}#globalSetingsList fieldset{width:95% !important;max-width:1050px;padding:5px 2% 10px 2% !important;margin:0px !important}#globalSetingsList.full_width{max-width:99% !important;width:97% !important}#globalSetingsList.full_width h4{max-width:99% !important;width:97% !important}#globalSetingsList.full_width fieldset{max-width:99% !important;width:97% !important}#globalSetingsList.full_width fieldset.prevajanje{float:left;min-height:200px !important;width:44% !important;margin-right:1% !important}#globalSetingsList.full_width fieldset.prevajanje .prevajanje_settings a{margin:0 5px}#globalSetingsList.full_width fieldset.prevajanje .prevajanje_settings .prevajanje_settings_sub{display:block;margin:10px 0 20px 153px}#anketa_activate_note{height:auto;min-height:100px;width:550px;font-size:13px}#anketa_activate_note #div_lock_survey{padding-bottom:30px}#anketa_advanced_options{border:1px solid gray;margin-bottom:20px;margin-left:1%;margin-right:1%;padding:10px 10px 10px 10px;min-height:250px;background-color:#fff}#surveyTrajanje{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;width:500px}#surveyTrajanje .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#surveyTrajanje .popup_close:hover{color:#1e88e5}#surveyTrajanje .popup_close a{color:#d3d3d3}#surveyTrajanje .popup_close a:hover{color:#1e88e5}#surveyTrajanje h2,#surveyTrajanje .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#surveyTrajanje p{line-height:20px}#surveyTrajanje.popup_violet{border-left:6px #921ee5 solid !important}#surveyTrajanje.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#surveyTrajanje.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#surveyTrajanje.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#surveyTrajanje.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#surveyTrajanje.popup_orange,#surveyTrajanje{border-left:6px #ffa608 solid !important}#surveyTrajanje.popup_orange div.buttonwrapper a,#surveyTrajanje div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#surveyTrajanje.popup_orange div.buttonwrapper a:hover,#surveyTrajanje div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#surveyTrajanje.popup_orange div.buttonwrapper a.ovalbutton_gray,#surveyTrajanje div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#surveyTrajanje.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#surveyTrajanje.popup_red{border-left:6px red solid !important}#surveyTrajanje.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#surveyTrajanje.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#surveyTrajanje.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#surveyTrajanje.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#surveyTrajanje_img{float:left;width:20px}#surveyTrajanje_msg{float:left}#surveyTrajanje_close{position:absolute;right:10px;top:10px;width:20px}.trajanjeLinkOff{float:right;color:gray;padding-top:15px;text-indent:20px;cursor:pointer}.trajanjeLinkOff .sprites.trajanje_star{background-position:-157px -98px}.trajanjeLinkOn{float:right;color:#900;padding-top:15px;text-indent:20px;cursor:pointer}.trajanjeLinkOn .sprites.trajanje_star{background-position:-140px -98px}#divAvtoClose{position:absolute;bottom:20px;left:20px;line-height:20px;color:gray}#divAvtoClose span{font-weight:bold}.nastavitveSpan{width:90px;display:table-cell;float:left;text-align:right;font-weight:500 !important}.nastavitveSpan1{width:230px;padding-right:10px;display:table-cell;float:left;text-align:right;font-weight:500 !important}.wide .nastavitveSpan1{width:280px;max-width:330px}.nastavitveSpan2{width:210px;padding-right:10px;display:table-cell;float:left;text-align:right;font-weight:500 !important}.sett_left_160{width:160px;display:table-cell;float:left;text-align:left;font-weight:600}.nastavitveSpan3{width:270px;display:table-cell;float:left;text-align:right;font-weight:500 !important}.nastavitveSpan6{width:330px;display:table-cell;float:left;text-align:right;padding-right:5px;font-weight:500 !important}fieldset.izvozi{margin:5px;padding:5px 5px 5px 5px;width:auto;border:1px solid silver}fieldset.izvozi legend{color:gray;font-weight:bold}#surveyStatistic{background-color:#fff}#surveyStatistic #timeProfileDafaultNote{margin-top:0px;margin-bottom:10px}#quicksettings_column{display:inline-block;float:left;width:33%}div.dostop_for_uid{width:300px;height:20px;margin-top:5px}div.dostop_for_uid label{margin:0 !important}div.dostop_for_uid label input{margin:-2px 5px 0 0;vertical-align:middle}#survey_list_users{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;padding:0px;margin:0px;height:100%;width:100%}#survey_list_users th{padding:3px;background-color:#efefef}#survey_list_users td{padding:3px}#survey_list_users tbody tr:nth-child(odd){background-color:#f8f8f8}#survey_list_users tr:nth-child(even){background-color:#feffff}.duration_span{display:inline-block;margin-left:10px;margin-right:5px}.standardna-beseda{clear:both;float:left;padding:15px 10px 15px 5px;border:1px #fff solid}.standardna-beseda.sb-editing{background-color:#f5fafe}.standardna-beseda .standardna-beseda-urejanje{display:block;float:left;width:300px;height:auto;padding:2px 15px 2px 3px;margin-right:5px;border:1px solid gray;background-color:#fff}.standardna-beseda .standardna-beseda-urejanje img{max-width:100%}.standardna-beseda .faicon.edit2{color:#1e88e5;cursor:pointer}.standardna-beseda .faicon.edit2::before{font-size:14px;content:""}.standardna-beseda .faicon.edit2:hover{color:#ffa608}.fixed-position{position:fixed;z-index:101;top:50%;left:50%}.fixed-position #vrednost_edit{display:block;margin-top:-200px;margin-left:-300px}.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray{color:#1e88e5}.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray:hover span{color:#fff}.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_orange span{color:#fff}#unconfirmed_mail_user_list>tbody>tr>td>span.confirm-user-mail-actions{display:none}#unconfirmed_mail_user_list>tbody>tr:hover>td>span.confirm-user-mail-actions{display:block !important}.jezik_right{float:left;width:47%;margin-bottom:10px;margin-left:1%;padding-left:5px;border:0}.jezik_right span.display_editor{visibility:visible}.jezik_right div.spremenljivka_content span.inline_edit{visibility:visible}.jezik_right .spremenljivka{padding-top:0px;padding-bottom:8px}.textleft{text-align:left !important}.textleft.gray{font-weight:normal !important}h2.jezik_page{color:#aaa;font-size:12px;font-weight:normal;margin:0 10px}.jezik_left{float:left;clear:both;opacity:.6;width:47%;margin-bottom:10px;padding-left:5px;border:0}.jezik_left .spremenljivka{padding-top:0px;padding-bottom:8px}.jezik_left.noborder{border:0}.jezik_right.noborder{border:0}.survey_archive_popup{border:1px solid gray;margin:auto;margin-bottom:20px;padding:10px 1% 10px 1%;min-height:150px;width:auto;background-color:#fff}#survey_archive_note{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);margin:auto;height:auto;width:auto}#survey_archive_note .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#survey_archive_note .popup_close:hover{color:#1e88e5}#survey_archive_note .popup_close a{color:#d3d3d3}#survey_archive_note .popup_close a:hover{color:#1e88e5}#survey_archive_note h2,#survey_archive_note .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#survey_archive_note p{line-height:20px}#survey_archive_note.popup_violet{border-left:6px #921ee5 solid !important}#survey_archive_note.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#survey_archive_note.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#survey_archive_note.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#survey_archive_note.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#survey_archive_note.popup_orange{border-left:6px #ffa608 solid !important}#survey_archive_note.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#survey_archive_note.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#survey_archive_note.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#survey_archive_note.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#survey_archive_note.popup_red{border-left:6px red solid !important}#survey_archive_note.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#survey_archive_note.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#survey_archive_note.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#survey_archive_note.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#div_archive_navigation{float:left;width:auto}#div_archive_content fieldset{width:600px !important}#div_archive_content.tracking fieldset{width:95% !important;max-width:970px !important}#div_archive_content.tracking table{width:95%;margin:20px;outline:1px solid #c8e3f8;border-spacing:0px;border-collapse:collapse}#div_archive_content.tracking table tr th{padding:2px 5px;background-color:#f5fafe;border:1px solid #c8e3f8}#div_archive_content.tracking table tr td{padding:2px 5px;border:1px solid #c8e3f8}#div_archive_content.tracking table tr td.center{text-align:center}#div_archive_content.tracking table tr th.center{text-align:center}#spn_nice_url{margin-top:3px;padding-top:2px}#div_analiza_data{display:block}#single_export{position:relative;width:80px;height:70px;float:right;margin:20px 0}.img_analysis_f_p a{color:gray;cursor:pointer;font-weight:normal}.img_analysis_f_p a:HOVER{color:gray}.img_analysis_f a{color:gray;cursor:pointer;font-weight:normal}.img_analysis_f a:HOVER{color:gray}.img_analysis_p a{color:gray;cursor:pointer;font-weight:normal}.img_analysis_p a:HOVER{color:gray}.span_navedbe{float:right}.span_navedbe a{color:gray;cursor:pointer;font-weight:normal}.span_navedbe a:HOVER{color:gray}.div_other_text{margin-top:5px;margin-left:.5cm}.div_navedbe{margin-top:5px;margin-left:.5cm;margin-left:0px}#div_analiza_single_var_close{width:100%;height:20px;color:#fff;background-color:#1e88e5;border-bottom:1px solid #900;font-weight:bold}#div_analiza_single_var_close_button{float:right;width:20px;text-align:center;border-left:1px solid #900;height:17px;padding-top:3px;background-color:#1e88e5}#div_analiza_single_var_close_button:hover{background-color:#166dba;cursor:pointer}#div_analiza_single_var_close_button a{text-decoration:none;width:100%;height:100%}#div_analiza_single_var{width:100%;height:auto}#globalSetingsHolder{width:100%;display:inline-block;margin-bottom:10px}#analizaSubNav{position:relative;display:inline-block;float:left;width:270px;margin:3px 20px 0 0}.srv_statistic_menu{float:left;margin:4px 0 0 0}#globalSetingsLinks.analiza{float:right;position:absolute;z-index:78;width:190px;background-color:#f5fafe;border:1px solid #c8e3f8}#globalSetingsLinks.analiza:hover{border:1px solid #409ee7}#globalSetingsLinks.analiza:hover ul li.highlightLineTab{background:none}#globalSetingsLinks.analiza:hover>ul li{display:block;transition:.2s}#globalSetingsLinks.analiza ul{z-index:78;padding:0 5px}#globalSetingsLinks.analiza ul li{padding:2px 1px;background-color:#f5fafe;border:0}#globalSetingsLinks.analiza ul li a{display:block;margin-right:12px;color:#1e88e5 !important;background-color:#f5fafe}#globalSetingsLinks.analiza ul li:hover>a{color:#1e88e5 !important}#globalSetingsLinks.analiza ul li.highlightLineTab{background-image:url(../../../admin/survey/icons/icons/bullet_arrow_down.png);background-repeat:no-repeat;background-position:right 1px}#globalSetingsLinks.analiza ul li.highlightLineTab a span{font-weight:500;color:#1e88e5 !important;background-color:#f5fafe}#globalSetingsLinks.analiza ul li.previewCheck{margin-top:4px;padding:5px 0 7px 0;color:#1e88e5;border-top:1px #c8e3f8 solid}#globalSetingsLinks.analiza ul li.previewCheck label:hover{color:#ffa608}.analysis_bottom_settings{width:auto;height:50px;margin:10px auto;text-align:center;position:relative;margin-top:40px}.analysis_bottom_settings a{display:inline-block;margin-right:20px;font-size:13px;color:#606060}.analysis_bottom_settings a:hover{color:#ffa608}.chart_bottom_settings{width:auto;height:50px;margin:10px auto;text-align:center;position:relative}.chart_bottom_settings a{display:inline-block;margin-right:20px;font-size:13px;color:#606060}.chart_bottom_settings a:hover{color:#ffa608}.anl_pr10{padding-right:10px}table#grids td{padding:0 5px;text-align:center}table#grids input{width:100%}ul.vrednost_sort{padding:0}ul.vrednost_sort li{list-style:none;border:1px solid gray;margin:5px 0px 5px 0px;padding:2px 3px 2px 3px;width:100%}ul.vrednost_sort input[type=text]{width:50%}#chart_hq_setting{width:auto;display:inline-block;margin-left:20px;padding:2px 5px 0px 5px;background-color:#f8f8f8;border:1px solid silver;border-radius:3px;-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px}#chart_hq_setting ul{margin:0px !important;padding:0px}#chart_hq_setting ul li{display:block;margin:0px !important;padding:3px;list-style:none}#chart_hq_setting ul li span.as_link{font-weight:500;color:#1e88e5 !important}#chart_hq_setting ul li span.as_link.gray{font-weight:normal;color:#1e88e5 !important}#chart_hq_setting ul li span.advanced{display:block;font-weight:normal}#chart_hq_setting ul li.space{display:none;display:none}.tableChart{margin:30px auto 30px auto;width:1000px;overflow:auto;text-align:center}.tableChart .chart_title{width:800px;margin:5px 0px;padding-left:5px;min-height:15px;font-weight:600;font-size:14px}.tableChart .chart_img{float:left}.tableChart .chart_img img{width:800px}.tableChart .chart_settings{float:right;position:relative;margin-top:5px;opacity:0;filter:alpha(opacity=0);float:right;position:relative;opacity:0;filter:alpha(opacity=0);margin-top:-25px;background-color:#f5fafe}.tableChart .chart_settings .switch_left{z-index:99999;position:relative;width:90px;height:17px;padding:5px 0 8px 0 !important;color:#1e88e5;font-size:13px;font-weight:500;background-color:#f5fafe;float:left}.tableChart .chart_settings .switch_right{z-index:99999;position:relative;width:90px;height:17px;padding:5px 0 8px 0 !important;color:#1e88e5;font-size:13px;font-weight:500;background-color:#f5fafe;float:right}.tableChart .chart_settings .non-active{cursor:pointer;background-color:#f5fafe}.tableChart .chart_settings .chart_settings_inner{position:relative;clear:both;margin-top:-3px;padding:10px;width:160px;height:auto;font-size:10px;line-height:15px;font-weight:normal;text-align:left;background-color:#f5fafe}.tableChart .chart_settings span.title{color:#1e88e5;font-size:14px;font-weight:bold}.tableChart .chart_settings span.edit{cursor:pointer;display:block;margin:10px;font-weight:bold;text-align:left;color:#1e88e5}.tableChart .chart_settings span.edit:hover{color:#ffa608}.tableChart .chart_settings .chart_setting_exportLinks{text-align:right;padding:7px}.tableChart .chart_settings .chart_setting_exportLinks span{margin:0 4px}.tableChart .chart_setting{margin:10px}.chart_holder{margin:20px auto 50px auto;width:1000px;overflow:hidden;text-align:center}.chart_holder .chart_title{width:800px;margin:5px 0px 15px 0;padding-left:5px;padding-right:5px;font-weight:600;font-size:14px;text-align:left}.chart_holder .chart_title .subtitle{font-weight:normal;font-size:12px;color:#333}.chart_holder .chart_title span.numerus{font-weight:normal;color:#333;padding-left:10px}.chart_holder .chart_img{float:left;min-height:260px}.chart_holder .chart_img img{width:800px}.chart_holder .chart_bottom_info{clear:both;width:auto;height:20px;padding:5px;text-align:left}.chart_holder .chart_bottom_info ul{list-style:none}.chart_holder .chart_bottom_info ul li{display:inline;margin-right:2px}.chart_holder .chart_other_text{margin-top:10px;float:left;width:770px;min-height:150px;padding-left:30px}.chart_holder .chart_settings{float:right;position:relative;opacity:0;filter:alpha(opacity=0);margin-top:-25px;background-color:#f5fafe;border:1px solid #c8e3f8}.chart_holder .chart_settings .switch_left{z-index:99999;position:relative;width:90px;height:17px;padding:5px 0 8px 0 !important;color:#1e88e5;font-size:13px;font-weight:500;background-color:#fff;float:left}.chart_holder .chart_settings .switch_right{z-index:99999;position:relative;width:90px;height:17px;padding:5px 0 8px 0 !important;color:#1e88e5;font-size:13px;font-weight:500;background-color:#fff;float:right}.chart_holder .chart_settings .non-active{cursor:pointer;background-color:#f5fafe !important}.chart_holder .chart_settings .chart_settings_inner{position:relative;clear:both;margin-top:-3px;padding:10px;width:160px;height:auto;font-size:10px;line-height:15px;font-weight:normal;text-align:left;background-color:#fff}.chart_holder .chart_settings span.title{color:#1e88e5;font-size:14px;font-weight:bold}.chart_holder .chart_settings span.edit{cursor:pointer;display:block;margin:10px;font-weight:bold;text-align:left;color:#1e88e5}.chart_holder .chart_settings span.edit:hover{color:#ffa608}.chart_holder .chart_settings input[type=text]{width:50px;float:right}.chart_holder .chart_settings .chart_setting_exportLinks{text-align:right;padding:7px}.chart_holder .chart_settings .chart_setting_exportLinks span{margin:0 4px}.chart_holder .chart_settings_inner fieldset.chart_num_limits{padding:0;margin:0 !important}.chart_holder .chart_settings_inner .chart_num_limits legend{color:#000}.chart_holder .other_settings{margin-top:50px;margin-bottom:20px}.chart_holder .other_settings .chart_settings_inner{margin-top:0px}.chart_holder .chart_setting{margin:10px}.chart_holder .anl_bl{border-left:1px solid #d3d3d3 !important}.chart_holder .anl_br{border-right:1px solid #d3d3d3 !important}.chart_holder .anl_bt{border-top:1px solid #d3d3d3 !important}.chart_holder .anl_bb{border-bottom:1px solid #d3d3d3 !important}.chart_other_text .chart_title{margin-top:20px;padding-left:0;padding-right:0}.freq_chart_table{width:800px;float:left;color:#000}.freq_chart_table .chart_title{padding-left:0;padding-right:0}.anl_user_text_more_charts{float:left;padding:0px 5px;text-indent:0px}.chart_profiles_holder{width:190px;border:1px solid gray;height:130px;display:inline-block}#chart_profiles{overflow:auto;cursor:pointer;width:190px;display:inline-block;height:144px}#chart_profiles .option{padding:1px}#chart_profiles .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#chart_profiles_custom{overflow:auto;cursor:pointer;width:190px;display:inline-block;height:130px}#chart_profiles_custom .option{padding:1px}#chart_profiles_custom .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#chart_settings_profiles_right #div_chart_skin_previews{position:fixed;top:50px;left:90px;width:200px;height:140px;padding:10px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#chart_settings_profiles_right .div_chart_skin_preview{display:none;width:200px;height:120px}#chart_settings_profiles_right .div_chart_skin_preview table tr td{width:50px;height:18px}#chart_settings_profiles_right .form-item{padding:3px;width:200px}#chart_settings_profiles_right .colorwell{width:70px;height:20px;font-size:11px}#newChartSkin{display:none;position:absolute;left:50px;top:100px;z-index:20;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#renameChartSkin{display:none;position:absolute;left:50px;top:100px;z-index:20;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#deleteChartSkin{display:none;position:absolute;left:50px;top:100px;z-index:20;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}.anl_bck_2{background-color:#fff}.anl_bck{background-color:#f5fafe}.anl_tbl_inner{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;width:100%}.tbl_clps{padding:0px !important;margin:0px !important;border-collapse:collapse !important}.anl_tbl{width:100%;border-spacing:0px;padding:0px;margin:0px;margin-bottom:20px;border-collapse:collapse}.anl_tbl th{padding:6px}.anl_tbl td{padding:6px}.cll_clps{padding:0px !important;margin:0px !important;border-collapse:collapse !important}.anl_bck_0_0{background-color:#f8f8f8}.anl_bck_0_1{background-color:#fff}.anl_bck_1_0{background-color:#fff}.anl_bck_1_1{background-color:#fff}.anl_bck_2_1{background-color:#fff}.anl_bck_2_0{background-color:#f9f9f7}.anl_bck_text_0{background-color:#ffffe3}.anl_bck_text_1{background-color:ivory}.anl_bck_desc_1{background-color:#f5fafe}.anl_bck_desc_2{background-color:#fff}.anl_bck_desc_3{background-color:#ffffe3}.anl_bck_freq_1{background-color:#f5fafe}.anl_bck_freq_2{background-color:#fff}.anl_tin{text-indent:8px}.anl_tin1{text-indent:16px}.anl_tin2{text-indent:24px}.anl_variabla{font-weight:bold;color:#1e88e5}.anl_variabla a{font-weight:bold;color:#1e88e5;cursor:pointer}.anl_variabla_sub{color:#1e88e5}.anl_variabla_label{color:#1e88e5;color:#000}.anl_variabla_info{color:gray;font-size:10px}.anl_variabla_line{color:gray}.anl_ita{font-style:italic}.anl_detail_percent{color:#d48800;width:70px;text-align:right;font-weight:normal}.anl_detail_percent a{color:#d48800;width:70px;text-align:right;font-weight:normal}.anl_detail_cnt{color:silver}.anl_ac{text-align:center}.anl_al{text-align:left}.anl_ar{border:1px solid #c8e3f8;text-align:right}.anl_ba{border:1px solid #c8e3f8}.anl_bl{border-left:1px solid #c8e3f8}.anl_br{border-right:1px solid #c8e3f8}.anl_bt{border-top:1px solid #c8e3f8}.anl_bb{border-bottom:1px solid #c8e3f8}.anl_red_ba{border:1px solid #900}.anl_dash_bl{border-left:1px dashed silver}.anl_dash_br{border-right:1px dashed silver}.anl_dash_bt{border-top:1px dashed silver}.anl_dash_bb{border-bottom:1px dashed silver}.anl_dash_red_bb{border-bottom:1px dashed #d59090}.anl_double_bt{border-top:3px double gray}.anl_legenda_freq{font-weight:normal}.anl_variable_type{float:right}.anl_variable_type span{color:gray}.anl_str{font-weight:bold}.anl_w15{width:15px !important}.anl_w30{width:30px !important}.anl_w50{width:50px !important}.anl_w70{width:70px !important}.anl_w90{width:90px !important}.anl_w110{width:110px !important}.anl_w140{width:140px !important}.anl_p5{padding:5px !important}.anl_p10{padding:10px !important}.anl_indent{text-indent:20px}.anl_ba_dot{border:1px dotted gray}.anl_bl_dot{border-left:1px dotted gray}.anl_br_dot{border-right:1px dotted gray}.anl_bt_dot{border-top:1px dotted gray}.anl_bb_dot{border-bottom:1px dotted gray}.anl_user_text{color:#b30080}.anl_user_text_more{float:left;padding:0px 5px;text-indent:0px;color:#b30080}.anl_ti_20{text-indent:20px}.anl_click_missing{color:#000;font-weight:normal;cursor:pointer}.anl_click_missing:hover{color:#1e88e5}.anl_click_missing_hide{color:#000;font-weight:normal;cursor:pointer}.anl_click_missing_hide:hover{color:#1e88e5}.div_analiza_holder{margin-top:20px}.div_analiza_icons{float:left;z-index:75;position:relative;margin-top:-20px;padding-bottom:3px;opacity:0;filter:alpha(opacity=0)}.div_analiza_scale{float:right;position:relative;margin-top:-20px;padding-bottom:3px;opacity:0;filter:alpha(opacity=0)}.ct_in_cell{padding:0px;margin:0px;height:100%;table-layout:auto;text-align:center;border-top:1px solid #c8e3f8;border-left:1px solid #c8e3f8}.ct_in_tbl{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;padding:0px;margin:0px;height:100%;width:100%}.anl_tbl_crosstab{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;margin-bottom:10px}.anl_tbl_crosstab th{padding:0px;margin:0px;table-layout:auto}.anl_tbl_crosstab td{padding:0px;margin:0px;table-layout:auto}.anl_dash_ba{border:1px dashed silver}#crosstab_drobdowns{float:left}#crossLeftHolder{float:left;padding-right:10px}#crossLeftHolder select{width:220px}#crossRightHolder{float:left;padding-right:10px}#crossRightHolder select{width:220px}#crossImgHolder{float:left;padding:0px 5px;display:inline-block;margin-right:8px}.crossCheckHolder{float:left;padding-right:5px;vertical-align:middle}#crossCheck1span{vertical-align:middle;display:inlineblock}#crossLegenda{display:inline-block;margin-left:20px;margin-top:5px}.rsdl_bck_title{background-color:#f5fafe;color:#000}.rsdl_bck_variable1{background-color:#f5fafe}.ctbChck_sp0{background-color:#fcfcfc}.ctbChck_sp1{background-color:#feffe3}.ctbChck_sp2{background-color:#fcffc2}.ctbChck_sp3{background-color:#fbffa8}.crossCheck_EC{background-color:#fffae8}.crossCheck_RE{background-color:#fff6d1}.crossCheck_SR{background-color:#ffeca2}.crossCheck_AR{background-color:#ffda46}.rsdl_bck0{background-color:#fff}.rsdl_bck1{background-color:#fae2e2}.rsdl_bck2{background-color:#ff9d9d}.rsdl_bck3{background-color:#f84242}.rsdl_bck4{background-color:#e8f1ff}.rsdl_bck5{background-color:#b9d5ff}.rsdl_bck6{background-color:#74acff}.ctbCll{padding:5px !important}.crostabSuma{font-style:italic;color:#ffa608 !important;font-weight:bold}.ctb_w50p{width:50% !important}.ctb_w33p{width:33.333% !important}.ctb_w25p{width:25% !important}.residual{border-collapse:separate}.residual th{width:20px}.residual_link{font-style:italic;font-size:10px}#div_crossCheck{padding-right:3px;vertical-align:top}#tbl_color_residual_legend{border-collapse:collapse;margin:0px;padding:0px}#tbl_color_residual_legend th{font-weight:normal;padding:0px 30px 0px 0px}#tbl_color_residual_legend td{width:25px;height:17px}#span_color_residual_legend{padding:10px;margin-bottom:8px;border:1px solid #c8e3f8;background-color:#f5fafe}#span_color_residual_legend3 #tbl_color_residual_legend td{width:39px}.space_crosstab_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#crosstab_add_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#crosstab_remove{text-align:center;vertical-align:middle;display:inline-block;width:20px}.ct_inspect:hover{border:1px solid blue;cursor:pointer;background-color:#1e88e5 !important}.ct_inspect:hover table td{opacity:.95 !important;filter:alpha(opacity=95) !important;color:#1e88e5 !important}div#div_analiza_data.crosstabs{margin-top:0px}#div_color_residual_legend{float:right;margin-top:5px}.space_means_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#means_add_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#means_remove{text-align:center;vertical-align:middle;display:inline-block;width:20px}#div_means_data{margin-top:10px}#meansLeftDropdowns{float:left;padding-right:10px}#meansLeftDropdowns select{width:240px;font-size:12px}#meansLeftDropdowns select option{overflow:hidden;font-size:12px}#meansRightDropdowns{float:left;padding-right:10px}#meansRightDropdowns select{width:240px;font-size:12px}#meansRightDropdowns select option{overflow:hidden;font-size:12px}.space_means_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#means_add_new{text-align:center;vertical-align:middle;display:inline-block;width:20px}#means_remove{text-align:center;vertical-align:middle;display:inline-block;width:20px}#meansImgHolder{float:left;padding:0px 3px;display:inline-block}.fr_inspect:hover{background-color:#abd2d0;outline:1px solid #1e88e5;cursor:pointer;color:#1e88e5 !important}.mc_inspect:hover{background-color:#abd2d0;outline:1px solid #1e88e5;cursor:pointer;color:#1e88e5 !important}.mg_inspect:hover{background-color:#abd2d0;outline:1px solid #1e88e5;cursor:pointer;color:#1e88e5 !important}.dmg_inspect:hover{background-color:#abd2d0;outline:1px solid #1e88e5;cursor:pointer;color:#1e88e5 !important}.mt_inspect:hover{background-color:#abd2d0;outline:1px solid #1e88e5;cursor:pointer;color:#1e88e5 !important}#dsp_inspect_cover{position:absolute;z-index:100 !important;height:auto;height:auto;max-height:500px;width:350px;padding-bottom:45px;font-size:13px;background-color:#fff;border:4px solid #c8e3f8;border-radius:7px;-moz-border-radius:7px 7px 7px 7px;-webkit-border-radius:7px;box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-webkit-box-shadow:0 0 15px rgba(0,0,0,.8)}#dsp_inspect_spr_select{padding:10px;display:block;max-height:450px;overflow:auto}.dsp_inspect_var{list-style-type:none;display:block;outline:1px dashed #d3d3d3;background:#ffc;width:300px;padding:5px 0px;margin:5px 10px 0 10px;height:20px}.dsp_inspect_var label{display:inline-block;width:275px !important;white-space:nowrap;overflow:hidden}#spanSessionInspect{display:inline-block;margin-right:10px}#inspect_cover_div{position:absolute;left:0px;top:0px;right:0px;bottom:0px;width:100%;height:100%;background:#d5e9fa;opacity:.4;z-index:10;display:none}div.zoom_short_text{max-width:200px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#inspect_div{display:none;position:relative;z-index:90;padding:0 10px 10px 10px;width:580px;color:#333}#inspect_div fieldset{margin:0px 0px 5px 0px;border:0;border-top:1px solid #c8e3f8}#zoom_div{display:none;position:relative;z-index:90;width:730px}#zoom_profiles_left{width:192px;float:left}#zoom_profiles_right{float:right;width:490px;padding:10px 10px 30px 10px;margin-bottom:40px;color:#333;border:1px solid #c8e3f8;background-color:#f5fafe}#zoom_profiles_holder{width:190px;height:150px;display:inline-block}#zoom_profiles{height:150px;overflow:auto;cursor:pointer;width:190px;display:inline-block}#zoom_profiles .option{padding:2px 5px;margin-bottom:5px}#zoom_profiles .active{padding:2px 5px;background-color:#f5fafe;border:1px solid #c8e3f8;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}#zoom_note{width:450px;padding:3px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f5fafe}#zoom_content{width:auto;min-height:80px;max-height:70vh;overflow-y:scroll;padding:0px 0px 5px 0px;margin-bottom:5px}#zoom_button_holder{position:absolute;bottom:20px;right:20px}.zoom_var{list-style-type:none;display:inline-block;width:400px;padding:5px 0px;margin:5px 10px 0 10px;min-height:20px;height:auto;background-color:#dfeffb}.zoom_var label{display:inline-block;width:360px !important;white-space:nowrap;overflow:hidden}#div_zoom_condition{vertical-align:top;display:inline-block;width:auto;min-width:200px;padding:7px 10px;background-color:#f5fafe;border:1px solid #c8e3f8}#div_zoom_condition label{white-space:nowrap}#div_zoom_condition ul{display:block !important;clear:both;float:left;margin:5px 0 !important;padding:0px !important;margin:0px;width:auto;list-style-type:none;font-size:11px;border:gray}#div_zoom_condition ul li{display:inline-block;min-height:18px;min-width:100px;width:auto;height:auto;margin:0px 5px;background-color:#dfeffb;text-align:left;vertical-align:top}#div_zoom_condition ul li div{padding:3px}.ttest_chart_holder{margin-left:0px}table.ttestTable{border-top:1px solid gray;border-left:1px solid gray;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;font-size:120%}table.ttestTable td{min-width:80px;padding:3px;margin:0px;text-align:center;border-bottom:1px solid gray;border-right:1px solid gray}table.ttestTable th{min-width:80px;padding:3px;margin:0px;text-align:center;border-bottom:1px solid gray;border-right:1px solid gray;background-color:#f5fafe}table.ttestTable th.lightGreen{background-color:#dfeffb}table.ttestTable td.lightGreen{background-color:#dfeffb}#ttestNumerusSpan select{width:220px}#ttestSpremenljivkaSpan select{width:220px}#ttestVariablesSpan{background-color:#f8f8f8;border:1px solid #d3d3d3;margin-bottom:10px;padding:5px;max-width:400px;border-radius:4px;-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px}#ttestVariablesSpan.active{background-color:#fff0d4;border:1px solid #d48800}.break_chart_holder{margin:30px 0 30px 0}.avg{text-decoration:overline}#breakSpremenljivkaSpan select{width:220px}div.breakTableDiv{margin-top:10px}div.breakTableDiv table{border-top:1px solid gray;border-left:1px solid gray;border-collapse:collapse;border-spacing:0;text-align:center}div.breakTableDiv table th{border-right:1px solid gray;border-bottom:1px solid gray;padding:5px;min-width:70px;font-weight:normal;background-color:#dfeffb}div.breakTableDiv table td{border-right:1px solid gray;border-bottom:1px solid gray;padding:5px;min-width:70px;font-weight:normal}div.breakTableDiv table th.sub{background-color:#f5fafe}div.breakTableDiv table th.strong{font-weight:bold}div.breakTableDiv table td.strong{font-weight:bold}#anketa_custom_report{padding:0px 20px 20px 0px}#anketa_custom_report #custom_report_elements{margin:20px 0 20px 0;padding-bottom:20px;border:1px #c8e3f8 solid}#anketa_custom_report ul{margin:20px 0 0 0}#anketa_custom_report .custom_report_title .creport_title_inline:hover{cursor:text;background-color:#f5fafe}#anketa_custom_report .custom_report_title.writing .creport_title_inline{background-color:#fff0d4;outline:1px dashed gray}#anketa_custom_report .report_element{width:95%;border:1px #c8e3f8 solid}#anketa_custom_report .report_element:hover{background-color:#fff;border:1px #1e88e5 solid}#anketa_custom_report .report_element.active{background-color:#fff;border:1px #1e88e5 solid}#anketa_custom_report .report_element_text .creport_text_inline:hover{cursor:text;background-color:#f5fafe}#anketa_custom_report .report_element_text .edit2{opacity:0;filter:alpha(opacity=0)}#anketa_custom_report .report_element_text.writing .creport_text_inline{background-color:#f5fafe;border:1px dashed #1e88e5;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}#anketa_custom_report .report_element_text.writing .edit2{opacity:100;filter:alpha(opacity=100)}#custom_report_elements .custom_report_title{font-size:16px;font-weight:bold;display:block;margin:15px 0 0 20px}#custom_report_elements .custom_report_title .creport_title_inline{width:95%;min-height:15px;padding:5px 15px}#custom_report_elements #custom_report_view{margin:10px 0 0 15px}#custom_report_elements .report_element{text-align:left}#custom_report_elements .report_element .report_element_head{overflow:auto;min-height:22px;padding:5px 5px 3px;background-color:#f5fafe;font-size:12px;font-weight:600}#custom_report_elements .report_element .report_element_head .report_element_icons{float:right;margin:0 10px;display:none}#custom_report_elements .report_element .report_element_head .report_element_title{cursor:pointer;float:left;position:relative;margin:0 10px;color:#1e88e5;width:85%}#custom_report_elements .report_element .report_element_head span.sprites.printer{margin-bottom:2px}#custom_report_elements .report_element .report_element_head.hover{background-color:#f5fafe}#custom_report_elements .report_element .report_element_head.hover .report_element_icons{display:block;background-color:#f5fafe}#custom_report_elements .report_element .report_element_head.active{overflow:auto;min-height:22px;padding:5px 5px 3px;font-size:12px;font-weight:600;background-color:#f5fafe}#custom_report_elements .report_element .report_element_head.active .report_element_icons{display:block;background-color:#f5fafe}#custom_report_elements .report_element .report_element_settings{clear:both;margin:15px 10px 20px 30px}#custom_report_elements .report_element .report_element_data{padding:10px 20px}#custom_report_elements .report_element .chart_img{background-color:#fff}#custom_report_elements .report_element .report_element_text{clear:both;overflow:auto;margin:0 10px 20px 30px;width:80%}#custom_report_elements .report_element_text .creport_text_inline{width:95%;min-height:15px;padding:5px 15px}#custom_report_elements .report_element_pb{cursor:pointer;background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat scroll 0 10px transparent;color:#c8e3f8;font-size:15px;font-weight:bold;height:18px;line-height:18px;display:inline-block;width:95%}#custom_report_elements .report_element_pb:hover{background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0 -52px transparent}#custom_report_elements .report_element_separator{height:25px;width:95%;font-size:10px}#custom_report_elements .report_element_separator .add_element{opacity:0;padding:5px 0 0 0;margin-left:-40px;filter:alpha(opacity=0)}#custom_report_elements .report_element_separator.expanded{height:38px;width:95%;font-size:11px}#custom_report_elements .report_element_separator.expanded .add_element{opacity:0;padding:10px 0 0 0;margin-left:-40px;filter:alpha(opacity=0)}#custom_report_elements .add_element span:hover{color:#ffa608}#custom_report_elements ul#custom_report_sortable{list-style-type:none !important}.custom_report_include{clear:both;margin:5px 10px;text-align:left}.custom_report_include a{color:#000;background-color:#fff}.creport_bottom_settings{width:auto;margin:40px auto 20px auto;text-align:center;position:relative}.creport_bottom_settings a{display:inline-block;margin-right:20px}#custom_report_alert{display:none;margin-left:-200px;width:280px;height:100px}#custom_report_alert .buttons{position:absolute;right:10px;bottom:15px}table.analysis_reports{width:100%}table.analysis_reports tr td{vertical-align:top;width:30%}table.analysis_reports tr td fieldset{padding:0px 10px 10px 10px}table.analysis_reports tr td span.subtitle{font-weight:600;display:block;padding:10px 0 5px 0}table.analysis_reports tr td a{line-height:24px}#newCReportProfile{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;left:calc(50% - 210px);top:45vh;z-index:999;margin:10px;width:420px}#newCReportProfile .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#newCReportProfile .popup_close:hover{color:#1e88e5}#newCReportProfile .popup_close a{color:#d3d3d3}#newCReportProfile .popup_close a:hover{color:#1e88e5}#newCReportProfile h2,#newCReportProfile .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#newCReportProfile p{line-height:20px}#newCReportProfile.popup_violet{border-left:6px #921ee5 solid !important}#newCReportProfile.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#newCReportProfile.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#newCReportProfile.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#newCReportProfile.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#newCReportProfile.popup_orange{border-left:6px #ffa608 solid !important}#newCReportProfile.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#newCReportProfile.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#newCReportProfile.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#newCReportProfile.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#newCReportProfile.popup_red{border-left:6px red solid !important}#newCReportProfile.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#newCReportProfile.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#newCReportProfile.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#newCReportProfile.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#renameCReportProfile{display:none;position:fixed;left:250px;top:200px;z-index:999;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#shareCReportProfile{display:none;position:fixed;left:250px;top:200px;z-index:999;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000;width:550px;height:auto}#deleteCReportProfile{display:none;position:fixed;left:250px;top:200px;z-index:999;padding:10px;margin:10px;width:550px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#div_creport_settings_profiles{display:none;width:350px;height:350px}#div_creport_settings_profiles #creport_settings_profiles_left{margin-bottom:10px}#div_creport_settings_profiles #creport_settings_profiles_comment{clear:both;margin-top:40px}#div_creport_settings_profiles #creport_settings_profiles_comment textarea{width:98%;height:30px}#creport_profiles{cursor:pointer;width:99%;height:140px;display:inline-block;border:1px solid gray}#creport_profiles .option{padding:1px}#creport_profiles .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#srv_preview_analiza{margin:1px;background-color:#fff;padding:10px;overflow:hidden;width:auto}#srv_preview_analiza span.large{font-size:13px}#srv_preview_analiza table{font-size:smaller;width:100%;border-spacing:0px;padding:0px;margin:0px;margin-bottom:5px;border-collapse:collapse;filter:alpha(opacity=60);opacity:.6}#srv_preview_analiza table th{padding:3px 5px}#srv_preview_analiza table td{padding:3px 5px}.sampleView{color:#f7dacf;border:2px dashed #f2c1ae;border-radius:12px;-moz-border-radius:12px;-webkit-border-radius:12px;text-align:center;position:relative;display:inline-block;padding:7px 9px;width:80%;height:60%;margin-top:-180px;top:230px;z-index:9999;vertical-align:middle;font-size:8em;font-variant:small-caps;font-weight:600;font-family:Courier New,Courier,monospace;letter-spacing:.1em;line-height:125%;-moz-transform:translate(0) rotate(10deg);-moz-transform-origin:60% 100%;-webkit-transform:translate(50%) rotate(20deg);-webkit-transform-origin:60% 100%;-o-transform:translate(50%) rotate(20deg);-o-transform-origin:60% 100%;-ms-transform:translate(50%) rotate(20deg);-ms-transform-origin:60% 100%;transform:translate(50%) rotate(20deg);transform-origin:60% 100%}#srv_analiza_preview_div{display:none;position:fixed;z-index:9999;left:270px;top:148px;color:#000;width:auto;height:auto;pointer-events:none}.srv_analiza_preview_sub{display:inline-block;margin:5px 0 10px 0}.srv_analiza_preview_sub>span{padding:3px 5px 3px 8px;display:inline-block}#analiza_right_options_holder{position:relative;float:right;margin:4px 15px 0 0}#analiza_right_options_holder #analiza_right_options{display:inline}#analiza_right_options_holder #analiza_right_options2{display:inline}#analiza_right_options_holder #analiza_right_options3{float:left;display:inline}#div_analiza_filtri_right{display:none;white-space:nowrap;position:absolute;z-index:78;top:32px;right:0;width:auto;min-height:20px;height:auto;padding:10px;text-align:left;font-size:13px;background-color:#f5fafe;border:1px solid #1e88e5}#div_analiza_filtri_right ul{margin:0px !important;padding:0px}#div_analiza_filtri_right ul li{display:block;margin:0px !important;padding:3px;list-style:none}#div_analiza_filtri_right ul li span.as_link{font-weight:500;color:#1e88e5 !important}#div_analiza_filtri_right ul li span.as_link:hover{color:#ffa608 !important;text-decoration:none}#div_analiza_filtri_right ul li span.as_link.gray{font-weight:normal;color:#1e88e5 !important}#div_analiza_filtri_right ul li span.as_link.gray:hover{color:#ffa608 !important;text-decoration:none}#div_analiza_filtri_right ul li span.advanced{display:block;font-weight:normal}#div_analiza_filtri_right ul li.space{display:none}#div_analiza_filtri_right a{color:#1e88e5 !important;text-decoration:none}#div_analiza_filtri_right a:visited{color:#1e88e5 !important;text-decoration:none}#div_analiza_filtri_right a:hover{color:#ffa608 !important;text-decoration:none}#div_analiza_filtri_right2{display:none;white-space:nowrap;position:absolute;z-index:78;top:32px;right:0;width:auto;min-height:20px;height:auto;padding:10px;text-align:left;font-size:13px;background-color:#f5fafe;border:1px solid #1e88e5;right:35px}#div_analiza_filtri_right2 ul{margin:0px !important;padding:0px}#div_analiza_filtri_right2 ul li{display:block;margin:0px !important;padding:3px;list-style:none}#div_analiza_filtri_right2 ul li span.as_link{font-weight:500;color:#1e88e5 !important}#div_analiza_filtri_right2 ul li span.as_link:hover{color:#ffa608 !important;text-decoration:none}#div_analiza_filtri_right2 ul li span.as_link.gray{font-weight:normal;color:#1e88e5 !important}#div_analiza_filtri_right2 ul li span.as_link.gray:hover{color:#ffa608 !important;text-decoration:none}#div_analiza_filtri_right2 ul li span.advanced{display:block;font-weight:normal}#div_analiza_filtri_right2 ul li.space{display:none}#div_analiza_filtri_right2 a{color:#1e88e5 !important;text-decoration:none}#div_analiza_filtri_right2 a:visited{color:#1e88e5 !important;text-decoration:none}#div_analiza_filtri_right2 a:hover{color:#ffa608 !important;text-decoration:none}#analiza_right_options span#filters_span{color:#1e88e5;margin-left:4px}#analiza_right_options:hover span#filters_span{color:#ffa608 !important}#analiza_right_options2:hover span#filters_span{color:#ffa608 !important}#div_analiza_filtri_right.analiza ul li.space{display:none}#div_analiza_filtri_right2.analiza ul li.space{display:none}#mc_holder{overflow:hidden;margin-top:20px;min-height:500px}#mc_holder .mc_table_bottom_settings{clear:none;float:right;border-collapse:collapse;margin:0 2% 15px 0;width:72%}#mc_holder .custom_report_include{clear:none;float:left;border-collapse:collapse;margin:0 2% 15px 0}#spr_list{float:left;overflow:auto;position:fixed;width:20%;max-height:450px;margin:15px 0 15px 1%;background-color:#fff;border:1px solid silver;border-radius:7px;-moz-border-radius:7px 7px 7px 7px;-webkit-border-radius:7px}#spr_list ul{padding:0;padding:5px 0;z-index:1}.mc_draggable{width:180px;margin:10px 15px;padding:8px;list-style:none;border:1px gray dashed}.mc_draggable:hover{background-color:#efefef;cursor:pointer}.mc_table_title{float:right;table-layout:fixed;width:70%;min-height:15px;margin:15px 2% 15px 0;padding:5px 1%;font-size:16px;font-weight:bold;border-collapse:collapse}.mc_table_title:hover{cursor:text;background-color:#efefef}.mc_table_title .multicrosstab_title_inline:focus{outline:none}.mc_table_title.writing{background-color:#fff0d4;outline:1px dashed gray}.mc_table{float:right;table-layout:fixed;width:72%;margin:15px 2% 15px 0;border-collapse:collapse}.mc_table tr{height:40px}.mc_table tr td{border:1px gray solid;text-align:center}.mc_table tr td table.mc_inner_cell{width:100%;height:100%;border-collapse:collapse}.mc_table tr td table.mc_inner_cell tr{width:100%;height:auto}.mc_table tr td table.mc_inner_cell tr td{border:0;border-top:1px dashed #aaa;width:100%}.mc_table tr td table.mc_inner_cell tr:first-child td{border:0}.mc_table tr td .delete_var{display:none;position:absolute;width:16px;height:16px;margin:-25px 0 0 0;background-image:url("../../../admin/survey/img_0/cross.png")}.mc_table tr td.borderless{border:0}.mc_table tr td.spr{cursor:pointer;font-weight:bold;background-color:#dfeffb}.mc_table tr td.var{background-color:#f5fafe}.mc_table tr td.sums{color:#d48800}.mc_table tr td.data{background-color:#f9f9f7}.mc_table tr td.crossCheck_EC{background-color:#fffae8}.mc_table tr td.crossCheck_RE{background-color:#fffae8}.mc_table tr td.crossCheck_SR{background-color:#ffeca2}.mc_table tr td.crossCheck_AR{background-color:#ffda46}.mc_table tr td.rsdl_bck0{background-color:#fff}.mc_table tr td.rsdl_bck1{background-color:#ffe8e8}.mc_table tr td.rsdl_bck2{background-color:#ffd1d1}.mc_table tr td.rsdl_bck3{background-color:#ff8b8b}.mc_table tr td.rsdl_bck4{background-color:#e8f1ff}.mc_table tr td.rsdl_bck5{background-color:#b9d5ff}.mc_table tr td.rsdl_bck6{background-color:#74acff}.mc_table tr td.white{background-color:#fff}.mc_table tr td.red{background-color:#ffd1d1}.mc_table tr td.blue{background-color:#e8f1ff}.mc_table tr td.drophover{background-color:#ffdda1 !important}.mc_table tr td.empty{border:1px dashed gray;font-weight:normal}.mc_table tr td.empty.droppable{color:#d48800;border:1px dashed #d48800;background-color:#fff0d4}.mc_settings_links{float:none;display:inline-block;position:relative;width:auto;left:200px;padding:3px 5px;margin:0 40px 0 0;background-color:#f8f8f8;border:1px solid silver;border-radius:3px;-moz-border-radius:4px 4px 4px 4px;-webkit-border-radius:4px}.mc_settings_links ul{margin:0 !important;padding:0}.mc_settings_links ul li{display:inline-block;list-style:none outside none;margin:0 !important;padding:2px 1px;vertical-align:middle}.mc_settings_links ul li>span{vertical-align:middle;cursor:pointer}.mc_settings_links ul li.space{background:url("../../../admin/survey/img_0/navigation/nav-control-bg.png") no-repeat scroll center top transparent;line-height:17px;padding:0 5px;width:7px}.mc_table_settings{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;top:200px;left:calc(50% - 200px);z-index:999;width:400px}.mc_table_settings .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}.mc_table_settings .popup_close:hover{color:#1e88e5}.mc_table_settings .popup_close a{color:#d3d3d3}.mc_table_settings .popup_close a:hover{color:#1e88e5}.mc_table_settings h2,.mc_table_settings .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}.mc_table_settings p{line-height:20px}.mc_table_settings.popup_violet,.mc_table_settings#popup_user_access{border-left:6px #921ee5 solid !important}.mc_table_settings.popup_violet div.buttonwrapper a,.mc_table_settings#popup_user_access div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.mc_table_settings.popup_violet div.buttonwrapper a:hover,.mc_table_settings#popup_user_access div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}.mc_table_settings.popup_violet div.buttonwrapper a.ovalbutton_gray,.mc_table_settings#popup_user_access div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}.mc_table_settings.popup_violet div.buttonwrapper a.ovalbutton_gray:hover,.mc_table_settings#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}.mc_table_settings.popup_orange,.mc_table_settings#check_pogoji,.mc_table_settings#dropped_alert,.mc_table_settings#surveyTrajanje{border-left:6px #ffa608 solid !important}.mc_table_settings.popup_orange div.buttonwrapper a,.mc_table_settings#check_pogoji div.buttonwrapper a,.mc_table_settings#dropped_alert div.buttonwrapper a,.mc_table_settings#surveyTrajanje div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}.mc_table_settings.popup_orange div.buttonwrapper a:hover,.mc_table_settings#check_pogoji div.buttonwrapper a:hover,.mc_table_settings#dropped_alert div.buttonwrapper a:hover,.mc_table_settings#surveyTrajanje div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}.mc_table_settings.popup_orange div.buttonwrapper a.ovalbutton_gray,.mc_table_settings#check_pogoji div.buttonwrapper a.ovalbutton_gray,.mc_table_settings#dropped_alert div.buttonwrapper a.ovalbutton_gray,.mc_table_settings#surveyTrajanje div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}.mc_table_settings.popup_orange div.buttonwrapper a.ovalbutton_gray:hover,.mc_table_settings#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover,.mc_table_settings#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover,.mc_table_settings#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}.mc_table_settings.popup_red{border-left:6px red solid !important}.mc_table_settings.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}.mc_table_settings.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}.mc_table_settings.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}.mc_table_settings.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.mc_table_settings #mcSettingsButtons{position:absolute;bottom:15px;right:10px}.mc_table_settings #delez{width:300px;margin:5px 10px 0px 60px}.mc_table_settings form{padding:10px}.mc_table_settings fieldset{margin:0px 0px 10px 0px;border:0;border-top:1px solid #166dba}.mc_table_settings legend{color:#1e88e5;font-size:13px;font-weight:500;margin:0;padding:0 10px}#div_mc_tables{display:none;width:350px;height:280px}#div_mc_tables #mc_tables_left{margin-bottom:10px}#mc_tables{cursor:pointer;width:99%;height:160px;display:inline-block;border:1px solid gray}#mc_tables .option{padding:1px}#mc_tables .active{background-color:#1e88e5;color:#fff;border-bottom:1px solid gray}#newMCTable{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;left:calc(50% - 275px);top:40vh;z-index:999;margin:10px;width:550px}#newMCTable .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#newMCTable .popup_close:hover{color:#1e88e5}#newMCTable .popup_close a{color:#d3d3d3}#newMCTable .popup_close a:hover{color:#1e88e5}#newMCTable h2,#newMCTable .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#newMCTable p{line-height:20px}#newMCTable.popup_violet{border-left:6px #921ee5 solid !important}#newMCTable.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#newMCTable.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#newMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#newMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#newMCTable.popup_orange{border-left:6px #ffa608 solid !important}#newMCTable.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#newMCTable.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#newMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#newMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#newMCTable.popup_red{border-left:6px red solid !important}#newMCTable.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#newMCTable.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#newMCTable.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#newMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#renameMCTable{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;left:calc(50% - 275px);top:40vh;z-index:999;margin:10px;width:550px}#renameMCTable .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#renameMCTable .popup_close:hover{color:#1e88e5}#renameMCTable .popup_close a{color:#d3d3d3}#renameMCTable .popup_close a:hover{color:#1e88e5}#renameMCTable h2,#renameMCTable .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#renameMCTable p{line-height:20px}#renameMCTable.popup_violet{border-left:6px #921ee5 solid !important}#renameMCTable.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#renameMCTable.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#renameMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#renameMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#renameMCTable.popup_orange{border-left:6px #ffa608 solid !important}#renameMCTable.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#renameMCTable.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#renameMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#renameMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#renameMCTable.popup_red{border-left:6px red solid !important}#renameMCTable.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#renameMCTable.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#renameMCTable.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#renameMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#deleteMCTable{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);display:none;position:fixed;left:calc(50% - 275px);top:40vh;z-index:999;margin:10px;width:550px}#deleteMCTable .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#deleteMCTable .popup_close:hover{color:#1e88e5}#deleteMCTable .popup_close a{color:#d3d3d3}#deleteMCTable .popup_close a:hover{color:#1e88e5}#deleteMCTable h2,#deleteMCTable .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#deleteMCTable p{line-height:20px}#deleteMCTable.popup_violet{border-left:6px #921ee5 solid !important}#deleteMCTable.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#deleteMCTable.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#deleteMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#deleteMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#deleteMCTable.popup_orange{border-left:6px #ffa608 solid !important}#deleteMCTable.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#deleteMCTable.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#deleteMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#deleteMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#deleteMCTable.popup_red{border-left:6px red solid !important}#deleteMCTable.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#deleteMCTable.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#deleteMCTable.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#deleteMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}.report_element_data table.mc_table{float:left;width:100%}.report_element_data .mc_table tr td.spr{cursor:auto}.report_element_data .mc_table tr td.drophover{background-color:#ffdda1 !important}.report_element_data .mc_table tr td.empty{display:none}.report_element_data .mc_table tr.last{display:none}.mc_table_legend{clear:none;float:right;border-collapse:collapse;padding:5px 10px;line-height:18px;border:1px solid gray;background-color:#f9f9f7}.mv_tbl{border-spacing:0px;padding:0px;margin:0px;margin-bottom:20px;border-collapse:collapse}.mv_value_input{width:50px;text-align:right;height:1.2em;margin-right:2px}.mv_text_input{width:250px;height:1.2em}.mv_link_disabled{color:gray}.spr_sysFilter1{background-color:#dfeffb}.spr_sysFilter2{background-color:#f5fafe}.spr_sysFilter3{background-color:#efefef}#missingProfileCoverDiv{display:none;position:absolute;left:0px;top:0px;right:0px;bottom:0px;z-index:10;width:100%;height:100%;background:#d5e9fa;opacity:.4}#infoMissingProfile{width:482px;padding:4px;color:#000;font-size:11px;border:1px solid #c8e3f8;background-color:#f0f7fd}#mv_add_quick{position:absolute;z-index:1000;top:150px;bottom:0;width:350px;height:145px;padding:10px;background-color:#fff;border:4px solid #c8e3f8;box-shadow:0 0 20px #000;-moz-box-shadow:0 0 20px #000;-webkit-box-shadow:0 0 20px #000}#surveyInfo_msg{float:left;width:auto;padding-right:20px}#surveyInfo_msg .survey_info_title{float:left;width:auto;font-weight:600}#surveyInfo_msg span.space{display:inline-block;width:95px;padding:2px 0px;font-weight:600}#surveyInfo_msg .infoData{margin-left:95px;width:auto}#div_statistic_date_select{display:none;position:fixed;top:40%;left:50%;margin-top:-200px;margin-left:-450px;min-height:150px;width:auto;max-width:650px;z-index:80;padding:10px;background-color:#fff;border:1px solid #900}.survey_referals_tbl{width:100%;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;margin-top:8px}.survey_referals_tbl td{padding:3px 0px}.survey_referals_tbl th{text-align:left;white-space:nowrap;font-weight:normal;padding-right:5px}#div_statistic_float_div{position:fixed;width:620px;max-height:600px;z-index:90;padding:10px;border:1px solid #900;background-color:#fff;margin:auto auto}#div_statistic_float_div .list{margin-left:20px;padding-top:3px}.graph_db{background-color:#c8e3f8}#tbl_answ_state{width:100%;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse}#tbl_answ_state th{text-align:left;font-weight:normal;width:40%}#tbl_answ_state td{border-left:1px dotted silver;text-align:center;font-weight:normal;width:20%}#tbl_answ_usability{width:100%;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse}#tbl_answ_usability th{text-align:left;font-weight:normal;width:40%}#tbl_answ_usability td{border-left:1px dotted silver;text-align:center;font-weight:normal;width:20%}#tbl_answ_breakoff{width:100%;border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse}#tbl_answ_breakoff th{text-align:left;font-weight:normal;width:40%}#tbl_answ_breakoff td{border-left:1px dotted silver;text-align:center;font-weight:normal;width:20%}table.dashboard{width:100%;border-collapse:separate;border-spacing:10px;margin-top:10px}table.dashboard td{width:33.3%;vertical-align:top;border:1px solid #c8e3f8;background-color:#f5fafe}table.dashboard td strong{font-weight:600}table.dashboard th strong{font-weight:600}table.dashboard_single{width:33.3%}div.dashboard_cell{width:auto;height:100%;padding:8px}div.dashboard_cell table{border:none;width:auto;border-collapse:collapse;border-spacing:0px;width:100%}div.dashboard_cell table td{border:none;width:auto;border-collapse:collapse;border-spacing:0px;width:auto}div.dashboard_cell .dashboard_title{color:#1e88e5;font-weight:600;font-size:13px}#div_statistic_info table td{padding-bottom:2px}#div_statistic_answer_state table td{padding-bottom:2px}.dashboard_status_span{display:inline-block;width:200px;padding:2px 0px}#div_statistic_status span{display:inline-block;padding:2px 0px}.opt_bold{font-weight:600}#surveyParaGraph{background-color:#fff}#surveyParaGraph table tr th{padding-right:10px;min-width:150px;text-align:right}.graph_lb{background-color:#f5fafe;border:1px solid #c8e3f8}#surveyNonresponse{background-color:#fff}#tbl_para_analitics{width:100%;padding:0px;margin:30px 0 20px 0;border-spacing:0px;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}#tbl_para_analitics tr{border-top:1px solid #c8e3f8}#tbl_para_analitics tr td.empty_cell{width:60%;background-color:#fff;border:1px solid #fff;text-align:left;padding:0px;padding-right:5px}#tbl_para_analitics tr td.empty_cell30{width:30%;background-color:#fff;border:1px solid #fff;text-align:left;padding:0px;padding-right:5px}#tbl_para_analitics tr td.delta{width:20px;background-color:#f8f8f8}#tbl_para_analitics tr.floatingHeader{border-bottom:1px solid #c8e3f8}#tbl_para_analitics th{padding:8px;border-right:1px solid #c8e3f8;text-align:center;color:#000;background-color:#f5fafe;font-weight:normal}#tbl_para_analitics td{padding:8px;border-right:1px solid #c8e3f8;text-align:center;color:#000;background-color:#f5fafe}#tbl_para_analitics td:first-child{color:#1e88e5;font-weight:bold;text-align:left}#tbl_para_analitics td.showQuestion{text-align:left}#tbl_para_analitics tr.multiGroupHeader td{text-align:left}#tbl_para_analitics tr.multiVariablesHeader{border-top:1px dotted #c8e3f8}#tbl_para_analitics tr.multiVariablesHeader td{text-align:left}#tbl_para_analitics tr.subVar{border-top:1px dotted #c8e3f8}#tbl_para_analitics tr.subVar td{background-color:#f8f8f8}#tbl_para_analitics tr.subVar td:first-child{font-weight:normal;text-indent:10px}#tbl_para_analitics tr.percent{border-top:1px dotted #c8e3f8}#tbl_para_analitics tr.percent td{font-weight:normal;text-indent:0px;text-align:center;color:gray}#tbl_para_analitics.graph{width:40%}#tbl_para_analitics.graph th{padding:3px;border-right:1px solid #c8e3f8;text-align:center}#tbl_para_analitics.graph td{padding:3px;border-right:1px solid #c8e3f8;text-align:center}#tbl_para_analitics.graph.showGraph{width:100%}.para_analitics_bar{margin-left:10px;height:1.8em;background-color:#f5fafe;border:1px solid #c8e3f8}.para_analitics_bar.null_value{margin-left:10px;height:1.8em;background-color:#fff;border:none;border-left:1px solid #c8e3f8}#nonresponse_info{position:relative;display:inline-block;float:left;width:auto;padding:2px 20px 2px 0px !important;margin:7px 0 0 0;font-weight:500;color:#333}#nonresponse_info a{color:#1e88e5}#nonresponse_info a:hover{color:#ffa608}td.para_page_break{border-left:1px solid #fff !important;border-right:1px solid #fff !important;background-color:#fff !important}td.para_page_break span{display:inline-block;width:100%;height:16px;padding-left:5px;background:url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;color:#1e88e5;font-size:14px;font-weight:bold;height:20px;line-height:20px;margin-top:0}table#para_settings th:not(.spacer){vertical-align:top;text-align:left;padding:5px 10px}table#para_settings td:not(.spacer){vertical-align:top;text-align:left;padding:5px 10px}#surveyUsableResp{background-color:#fff}#usable_table{position:relative;margin-top:50px}#tbl_usable_respondents{border-spacing:0px;table-layout:fixed;padding:0px;margin:0px;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}#tbl_usable_respondents tr{border-top:1px solid #c8e3f8}#tbl_usable_respondents tr td.all{border-left:1px solid #c8e3f8;border-right:1px solid #166dba}#tbl_usable_respondents tr th.all{border-left:1px solid #c8e3f8;border-right:1px solid #166dba}#tbl_usable_respondents tr td.calculation{border-left:1px solid #c8e3f8}#tbl_usable_respondents tr th.calculation{border-left:1px solid #c8e3f8}#tbl_usable_respondents tr td.unusable{border-right:1px solid #c8e3f8}#tbl_usable_respondents tr th.unusable{border-right:1px solid #c8e3f8}#tbl_usable_respondents tr td.empty_cell{width:60%;background-color:#fff;border:1px solid #fff;text-align:left;padding:0px;padding-right:5px}#tbl_usable_respondents tr td.usable{font-weight:600;border-left:1px solid #166dba;border-right:1px solid #166dba}#tbl_usable_respondents tr th.usable{font-weight:600;border:1px solid #166dba !important}#tbl_usable_respondents tr:last-child td.usable{border-bottom:1px solid #166dba !important}#tbl_usable_respondents tr:last-child td.data{border-bottom:1px solid #166dba}#tbl_usable_respondents tr:nth-last-child(2) td.status{border-bottom:1px solid #166dba !important}#tbl_usable_respondents tr td.data{border-left:1px solid #c8e3f8}#tbl_usable_respondents tr th.data{border-top:1px solid #166dba;border-bottom:1px solid #166dba;border-left:1px solid #166dba}#tbl_usable_respondents tr td.data.sum{border-left:1px solid #166dba;border-right:1px solid #166dba}#tbl_usable_respondents tr td.status{border-left:1px solid #166dba !important;border-right:1px solid #166dba}#tbl_usable_respondents tr.floatingHeader{border-bottom:1px solid #c8e3f8}#tbl_usable_respondents th{padding:3px;text-align:center;color:#000;background-color:#f5fafe;font-weight:normal}#tbl_usable_respondents th span{vertical-align:middle;margin-left:3px}#tbl_usable_respondents td{padding:3px;text-align:center;color:#000;background-color:#f8f8f8}#tbl_usable_respondents tr.colored td{background-color:#fff}#tbl_usable_respondents tr.multiGroupHeader td{text-align:left}#tbl_usable_respondents tr.multiVariablesHeader{border-top:1px dotted #c8e3f8}#tbl_usable_respondents tr.multiVariablesHeader td{color:gray}#tbl_usable_respondents tr.subVar{border-top:1px dotted #c8e3f8}#tbl_usable_respondents tr.subVar td{background-color:#f8f8f8}#tbl_usable_respondents tr.subVar td:first-child{font-weight:normal;text-indent:10px}#tbl_usable_respondents tr.percent{border-top:1px dotted #c8e3f8}#tbl_usable_respondents tr.percent td{font-weight:normal;text-indent:0px;text-align:center;color:gray}#tbl_usable_respondents tr.partusable td{background-color:#ffffe3 !important}#tbl_usable_respondents tr.unusable td{background-color:#ffe8e8 !important}#usable_respondents_settings{margin:0px 15px}#usable_respondents_settings input{color:#1e88e5 !important;font-weight:600}.usable_sum{position:absolute;top:-50px;padding:5px 10px 5px 0}.usable_sum .usable_legend{display:inline-block;padding:3px 7px;border:1px #aaa solid}.usable_sum .usable_legend:first-of-type{margin-left:0 !important}#usable_info{position:relative;display:inline-block;width:auto;padding:2px 40px 2px 0px !important;margin:7px 0 0 0;font-weight:600;color:#333}#usable_info a{color:#1e88e5}#usable_info a:hover{color:#ffa608}#surveySpeederIndex{background-color:#fff}#speeder_table{position:relative;margin-top:55px;position:relative;margin-top:0px}#tbl_speeder{border-spacing:0px;table-layout:fixed;padding:0px;margin:0px;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}#tbl_speeder tr{border-top:1px solid #c8e3f8}#tbl_speeder tr.floatingHeader{border-bottom:1px solid #c8e3f8}#tbl_speeder th{padding:3px 8px;text-align:center;border-left:1px solid #c8e3f8;border-right:1px solid #c8e3f8;color:#000;background-color:#f5fafe;font-weight:normal}#tbl_speeder th span{vertical-align:middle;margin-left:3px}#tbl_speeder td{padding:3px 8px;text-align:center;border-left:1px solid #c8e3f8;border-right:1px solid #c8e3f8;color:#000;background-color:#f8f8f8}#tbl_speeder tr.colored td{background-color:#fff}#tbl_speeder tr.speeder td{background-color:#ffe8e8 !important}#tbl_speeder tr.no_speeder td{background-color:#fff !important}.speeder_leg{padding:5px 10px 5px 0;margin:10px 0 10px}.speeder_leg .speeder_legend{display:inline-block;padding:3px 7px;border:1px #aaa solid}.speeder_leg .speeder_legend:first-of-type{margin-left:0 !important}#surveyTextAnalysis{background-color:#fff}.text_analysis_table{position:relative;border-spacing:0px;table-layout:fixed;padding:0px;margin:0 20px 40px 0;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}.text_analysis_table tr{border-top:1px solid #c8e3f8}.text_analysis_table th{padding:5px 10px;text-align:center;color:#000;border:1px solid #c8e3f8;color:#000;background-color:#f5fafe;font-weight:normal}.text_analysis_table th span{vertical-align:middle;margin-left:3px}.text_analysis_table td{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8}.text_analysis_table tr.white td{background-color:#fff}.text_analysis_table tr.sum td{background-color:#f5fafe;font-weight:600}.text_analysis_table tr.colored td{background-color:#f5fafe;font-weight:600}#surveyGeoIPLocation{background-color:#fff}.geoip_table{position:relative;border-spacing:0px;table-layout:fixed;padding:0px;margin:15px 0 30px 0px;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}.geoip_table tr{border-top:1px solid #c8e3f8}.geoip_table th{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8;color:#000;background-color:#f5fafe;font-weight:normal}.geoip_table th span{vertical-align:middle;margin-left:3px}.geoip_table td{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8}.geoip_table tr.white td{background-color:#fff}.geoip_table tr.country td{background-color:#f5fafe;font-weight:600}#surveyEditsAnalysis{background-color:#fff}#surveyReminderTracking{background-color:#fff}.reminder_tracking_table{position:relative;border-spacing:0px;table-layout:fixed;padding:0px;margin:0 0 40px 0;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}.reminder_tracking_table tr{border-top:1px solid #c8e3f8}.reminder_tracking_table th{padding:5px 10px;text-align:center;color:#000;border:1px solid #c8e3f8;background-color:#f5fafe;font-weight:normal}.reminder_tracking_table th span{vertical-align:middle;margin-left:3px}.reminder_tracking_table td{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8}.reminder_tracking_table tr.white td{background-color:#fff}.reminder_tracking_table tr.sumSprozenih td{background-color:#f5fafe;font-weight:600;border-top:5px solid #c8e3f8}.reminder_tracking_table tr.sum td{background-color:#f5fafe;font-weight:600}.reminder_tracking_table tr.colored td{background-color:#f5fafe;font-weight:500;border-top:5px solid #c8e3f8}.reminder_tracking_table td.sprozenaOpozorila{font-weight:500;background-color:#f5fafe;border-top:0px !important}.reminder_tracking_table th.sprozenaOpozorila{font-weight:500;background-color:#f5fafe;border-top:0px !important}.reminder_tracking_table td.sprozenaOpozorilaLine{font-weight:500;border-left:5px solid #c8e3f8;background-color:#f5fafe;border-top:0px !important}.reminder_tracking_table th.sprozenaOpozorilaLine{font-weight:500;border-left:5px solid #c8e3f8;background-color:#f5fafe;border-top:0px !important}.redCell{background-color:red !important}#div_status_filtri_right{white-space:nowrap;position:absolute;top:0;right:15px;width:auto;min-height:20px;height:auto;padding:10px;text-align:left;font-size:13px}#div_status_filtri_right ul li{display:inline;margin-right:5px}#div_status_filtri_right ul li span.gray{color:#1e88e5 !important}#div_status_filtri_right ul li span.gray:hover{color:#ffa608 !important}.ui-resizable{position:relative;padding:0px;margin:0px}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0px}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0px}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0px;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0px;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-datepicker-trigger{cursor:pointer;margin-left:7px;padding:0px;color:#1e88e5;border:none;background:none}.ui-datepicker-trigger:hover{color:#ffa608}canvas.mapster_el{top:15px !important}img.mapster_el{position:absolute;top:15px !important}.jquery-selectbox{cursor:pointer;padding:3px 0px 1px 6px !important;margin:-2px 0 0 0 !important;font-size:12px !important;color:#333 !important;background-color:#fff;border:1px #c8e3f8 solid !important;border-radius:4px 0px 0px 4px;-moz-border-radius:4px 0px 0px 4px;-webkit-border-radius:4px 0px 0px 4px}.jquery-selectbox .jquery-selectbox-list{top:21px !important;min-width:180px}.jquery-selectbox .jquery-selectbox-currentItem{padding:0 !important;margin:0 !important;line-height:14px}.jquery-selectbox .jquery-selectbox-moreButton{font-family:"Font Awesome 5 Free";margin-top:-3px !important;height:18px !important;width:15px !important;background-image:none !important;background-color:#ddd !important;border:1px #aaa solid}.jquery-selectbox .jquery-selectbox-moreButton::before{content:"";padding-left:3px;color:#333;font-size:10px;font-weight:900;line-height:17px}.jquery-selectbox .jquery-selectbox-item{padding:3px 6px 5px 6px !important;margin:0 !important;line-height:14px}.jquery-selectbox .jquery-selectbox-item.listelementhover{cursor:pointer}.secondNavigation .inv_ff_left_on{width:auto;height:19px;padding:0px;border-top:1px solid #166dba;border-bottom:1px solid #166dba;border-top:1px solid gray;border-bottom:1px solid gray;padding:0px 2px;background-color:#fff;color:gray;font-weight:bold;line-height:19px;vertical-align:middle;text-align:center;display:inline-block;background-color:#efefef;margin:0px;padding:0px;background:#fff url("../../../admin/survey/img_0/navigation/nav-control-bg2.png") no-repeat top center;width:12px;border-bottom:1px solid #fff;background:#fff url("../../../admin/survey/img_0/navigation/nav-control-bg2_on_left.png") no-repeat top center}.secondNavigation .inv_ff_right_on{width:auto;height:19px;padding:0px;border-top:1px solid #166dba;border-bottom:1px solid #166dba;border-top:1px solid gray;border-bottom:1px solid gray;padding:0px 2px;background-color:#fff;color:gray;font-weight:bold;line-height:19px;vertical-align:middle;text-align:center;display:inline-block;background-color:#efefef;margin:0px;padding:0px;background:#fff url("../../../admin/survey/img_0/navigation/nav-control-bg2.png") no-repeat top center;width:12px;background:#fff url("../../../admin/survey/img_0/navigation/nav-control-bg2_on_right.png") no-repeat top center}#survey_respondents{width:auto;min-height:350px;padding:10px}.respondent_profile_holder{float:left;width:200px;height:290px;border:1px solid #c8e3f8;margin:0px}#respondent_profiles{height:290px;overflow:auto;cursor:pointer}#respondent_profiles .option{padding:1px}#respondent_profiles .active{background-color:#061d31;color:#fff;border-bottom:1px solid gray}#respondent_profile_values{float:left;width:510px;margin:0px;display:block;height:330px;margin-left:10px}#respondent_profile_value_text{width:403px;height:245px;border:1px solid #c8e3f8;overflow:auto}#respondent_profile_variables_box{float:left;width:auto}#respondent_profile_variables{width:400px}#respondent_new_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}#respondent_rename_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}#respondent_delete_dialog{position:absolute;left:300px;top:250px;border:1px solid #900;z-index:120;background-color:#fff;padding:10px;margin:10px;width:550px;display:none}#respondent_profile_right{float:left;width:450px;height:auto;margin-left:10px}#respondent_profile_notes{padding:5px;margin:0px;margin-bottom:10px;line-height:14px;color:#000;font-size:11px;border:1px solid #ffa608;background-color:#fff0d4;width:100%}#respondent_profile_notes ul{list-style:square inside;margin:0px;padding:0px}#respondent_profile_notes li{padding-bottom:5px}#respondent_profile_upload{padding:5px;margin:0px;color:#000;border:1px solid #efefef;width:100%}.slide_sett_option{margin:2px}.slide_sett_option_lbl{width:240px;display:table-cell;float:left;text-align:right;font-weight:600}.time_span_container{position:relative;height:200px;width:95%;margin-bottom:50px;border:1px solid #d3d3d3}.time_span_header{clear:both}.time_span{background-color:gray;width:1px;display:inline-block;vertical-align:bottom}.user_access_warning{align-self:flex-start;float:left;padding:10px 20px 20px 20px;margin:10px 0;background:none repeat scroll 0 0 #f5fafe;border:1px solid #1e88e5;background-color:#faf5fe;border:1px solid #921ee5}.user_access_warning p{font-size:13px;font-weight:500}.user_access_warning div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}.user_access_warning div.buttonwrapper a:hover{background-color:#be79f0}p.user_access_warning_text{padding:10px;margin:0;color:#921ee5;font-style:italic}#topLine2 .upgrade_package{display:inline-block;margin-left:30px;vertical-align:4px}#topLine2 .upgrade_package div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#topLine2 .upgrade_package div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#enka_nav .upgrade_package{display:inline-block;margin:0 30px 0 0;vertical-align:middle}#enka_nav .upgrade_package div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#enka_nav .upgrade_package div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#toolbox_basic>p.user_access_locked{opacity:.8;background-color:#921ee5}#toolbox_basic>p.user_access_locked:hover{background-color:#8418d1}#toolbox_add_advanced .user_access_locked{color:#921ee5}#secondNavigation_links #hover_export a.user_access_locked,.analysis_bottom_settings a.user_access_locked{color:#921ee5}#secondNavigation_links #hover_export a.user_access_locked:hover,.analysis_bottom_settings a.user_access_locked:hover{color:#be79f0}#secondNavigation_links #hover_export a.user_access_locked:hover span.faicon,.analysis_bottom_settings a.user_access_locked:hover span.faicon{color:#be79f0 !important}#secondNavigation_links #hover_export a.user_access_locked span.faicon,.analysis_bottom_settings a.user_access_locked span.faicon{color:#921ee5 !important}span.faicon.user_access_locked,a.faicon.user_access_locked,a.user_access_locked,a.user_access_locked span,span.faicon.user_access_locked::before,label.user_access_locked,#branching li.spr_editing div.spr_edit a.faicon.user_access_locked{color:#921ee5 !important}span.faicon.user_access_locked:hover,a.faicon.user_access_locked:hover,a.user_access_locked:hover,a.user_access_locked span:hover,span.faicon.user_access_locked::before:hover,label.user_access_locked:hover,#branching li.spr_editing div.spr_edit a.faicon.user_access_locked:hover{color:#be79f0 !important}.variabla span.inline.faicon.user_access_locked::before{color:#e0bef7 !important}.variabla span.inline.faicon.user_access_locked:hover::before{color:#921ee5 !important}#analiza_right_options.user_access_locked #div_analiza_filtri_right ul li span{color:#921ee5 !important}#analiza_right_options.user_access_locked #div_analiza_filtri_right ul li span:hover{color:#be79f0 !important}#folderSwitch.user_access_locked{color:#921ee5;border:1px #921ee5 solid}#folderSwitch.user_access_locked:hover{background-color:#fcf9fe}.user_narocila_popup{z-index:99;display:none;width:500px}.user_narocila_popup .edit_narocilo_content{display:flex;flex-direction:column}.user_narocila_popup .edit_narocilo_content .form_holder{padding-bottom:30px;line-height:24px}.user_narocila_popup .edit_narocilo_content .edit_narocilo_segment{display:flex;flex-direction:column;margin-bottom:20px;padding:10px;background-color:#f5fafe;border:1px solid #c8e3f8}.user_narocila_popup .edit_narocilo_content .edit_narocilo_segment .edit_narocilo_line .nastavitveSpan5{width:30%}.user_narocila_popup .edit_narocilo_content .buttons_holder{width:100%}#narocila .data{margin-top:6px;font-size:13px}#narocila .data span.setting_title{float:left;width:150px;padding-right:10px;text-align:right}#narocila a.ovalbutton{line-height:18px}#narocila .narocila_filters{margin-bottom:15px}#narocila .narocila_filters label{margin-right:10px}#narocila table.dataTable.user_narocila_admin{padding:20px 0}@media screen and (max-width: 700px){#narocila table.dataTable.user_narocila_admin tr.green_bg{background-color:#ded}#narocila table.dataTable.user_narocila_admin tr.black_bg{background-color:#eee}}#narocila table.dataTable.user_narocila_admin td:nth-child(1),#narocila table.dataTable.user_narocila_admin td:nth-child(n+4){text-align:center}#narocila table.user_narocila{max-width:1200px;padding:0px;margin:20px 0 5px 10px;font-size:13px;color:#404040;border-collapse:collapse}#narocila table.user_narocila tr th{padding:5px 10px;min-width:80px;border:1px solid #d3d3d3;text-align:center;font-weight:600;background-color:#c8e3f8}#narocila table.user_narocila tr td{padding:5px 10px;min-width:80px;border:1px solid #d3d3d3;background-color:#f5fafe;text-align:center}#placila table.user_placila_admin{padding:20px 0}#placila table.user_placila_admin td{text-align:center}#placila .buttons_holder{height:30px;margin-top:20px}#placila a.ovalbutton{line-height:18px}.user_placila_popup{z-index:99;display:none;width:500px}.user_placila_popup .edit_placilo_content{display:flex;flex-direction:column}.user_placila_popup .edit_placilo_content .form_holder{padding-bottom:30px;line-height:24px}.user_placila_popup .edit_placilo_content .edit_placilo_segment{display:flex;flex-direction:column;margin-bottom:20px;padding:10px;background-color:#f5fafe;border:1px solid #c8e3f8}.user_placila_popup .edit_placilo_content .edit_placilo_segment .edit_placilo_line .nastavitveSpan5{width:20%}.user_placila_popup .edit_placilo_content .edit_placilo_segment textarea{width:70%}.user_placila_popup .edit_placilo_content .edit_placilo_segment input{width:180px}.user_placila_popup .edit_placilo_content .buttons_holder{width:100%;margin-top:0px}.styled_table{position:relative;border-spacing:0px;table-layout:fixed;padding:0px;margin:15px 0 30px 10px;border-collapse:collapse;border:1px solid #c8e3f8;border-top:none}.styled_table tr{border-top:1px solid #c8e3f8}.styled_table th{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8;color:#000;background-color:#f5fafe;font-weight:normal}.styled_table th span{vertical-align:middle;margin-left:3px}.styled_table td{padding:5px 10px;text-align:center;color:#000;background-color:#f8f8f8;border:1px solid #c8e3f8}.styled_table tr.white td{background-color:#fff}.styled_table tr.dark td{background-color:#f5fafe;font-weight:600}#hierarhija-opcije-vklopa .button_gray{cursor:not-allowed;background-color:#aaa}#hierarhija-opcije-vklopa #error{display:none;padding:10px 10px 0;color:#ffa608}#hierarhija-opcije-vklopa #hierarhija-knjiznica{display:none;border:1px dashed #aaa;padding:8px 11px 20px;margin:15px 20px}#hierarhija-opcije-vklopa #hierarhija-prevzeta{display:none;padding:0px 10px}#toolbox_basic.toolbox-hierarhija{height:208px}#toolbox_basic.toolbox-hierarhija>#locked_toolbar{height:136px;padding:50px 0 0 3px}#sa-users-table{width:100%;text-align:center;border-spacing:0}#sa-users-table .text-left{text-align:left}#sa-users-table .text-right{text-align:left}#sa-users-table th{font-weight:semibold;color:#404040;text-transform:uppercase;background-color:#efefef;padding:7px}#sa-users-table tr{border-top:1px solid #efefef}#sa-users-table tr:hover{background:rgba(239,242,247,.38)}#sa-users-table tr:hover .akcija a{display:inline}#sa-users-table td{padding:7px}#sa-users-table .akcija{color:#061d31;width:220px}#sa-users-table .akcija a{display:none;padding:0 10px;border-right:1px solid #aaa}#sa-users-table .akcija a:last-child{border-right:none}.hierarhija-aktivacija-seznam-uporabnikov{padding:10px 0}.hierarhija-aktivacija-seznam-uporabnikov ul{margin:5px -8px}#globalSetingsList #hierarhija-opcije-vklopa{display:none;padding-top:30px !important}#globalSetingsList #hierarhija-opcije-vklopa>h4{padding:0 !important;color:#1e88e5}#globalSetingsList #hierarhija-opcije-vklopa>label{display:block;padding-top:15px}.aapor_table{border:1px}.input_aapor{width:60px;margin-left:5px}.read_aapor{width:60px;background-color:#efefef;margin-left:40px}.main_aapor{width:60px;background-color:#efefef}.main_title_aapor{margin-left:5px;margin-right:30px}.category_span{margin-left:20px}.subcategory1_span{margin-left:40px}.subcategory2_span{margin-left:60px}#according{max-width:600px}#according .ui-accordion-content{max-height:400px}#totalSub{margin-top:40px}#totalSub td{font-weight:bold}.totalSubTd{float:right}.totalSubSpan{margin-left:40px}.totalSubDatabaseSpan{margin-left:40px}.aaporButton{float:right}.aaporSpace{height:20px}.show_calculation{margin-left:40px}.show_calculation td{height:50px;min-width:100px;font-weight:bold}.aapor_e{font-weight:bold;font-size:14px;color:#900}#srv_diagnostic{min-height:500px}#srv_diagnostic H2{margin:15px 0px 0px 0px;padding:0px;font-size:15px}#srv_diagnostic span.srv_diagnostic_gray{display:inline-block;font-size:12px;color:gray}#srv_diagnostic span.srv_diagnostic_note{display:inline-block;margin-left:5px;margin-bottom:15px;padding:5px 10px;font-size:15px;background-color:#f5fafe;border:1px solid #c8e3f8}#srv_diagnostic_results{display:inline-block;width:auto !important;margin:0px;margin-bottom:0px;margin-left:5px;padding:0px;padding:10px;font-size:13px;background:#f5fafe;border:1px solid #c8e3f8;width:700px !important}#srv_diagnostic_results span.srv_diagnostic_element{font-size:13px;display:inline-block;margin:0px 10px 10px 10px}#srv_diagnostic_results span.srv_diagnostic_element strong{margin:0px 5px;font-size:12px}#srv_diagnostic_results span.srv_diagnostic_element span.orange{color:#ffa608;font-weight:600}#srv_diagnostic_results span.srv_diagnostic_element span.red{font-weight:600}#srv_diagnostic_results span.srv_diagnostic_element span.green{font-weight:600}#srv_diagnostic_results table.srv_diagnostic_results{width:100%}#srv_diagnostic_results table.srv_diagnostic_results td+td{width:170px !important;text-align:center}#srv_diagnostic_results table.srv_diagnostic_results th+th{text-align:center}#srv_diagnostic_results_right{display:inline-block;width:auto !important;margin:0px;margin-bottom:0px;margin-left:5px;padding:0px;padding:10px;font-size:13px;background:#f5fafe;border:1px solid #c8e3f8;margin-left:15px}#srv_diagnostic_results_right .srv_diagnostic_results{min-width:370px}.srv_diagnostic_results td{font-size:14px;padding:3px 5px;text-align:left}.srv_diagnostic_results td span.orange{color:#ffa608}.srv_diagnostic_results th{font-size:14px;padding:3px 5px;text-align:left}table.srv_diagnostic_results span.gray a{color:gray;font-style:italic;white-space:nowrap}.srv_diagnostic_total_sub{margin-left:40px;font-weight:bold}.srv_diagnostic_total_sub_label{font-weight:bold}.srv_diagnostic_total_survey_label{font-weight:bold}.theme_header{font-weight:600;font-size:16px;color:#1e88e5}.theme_header .bold{padding-right:30px;color:#ee9800}.theme_header a{padding-right:20px}#div_theme_groups{display:inline-block;width:100%;vertical-align:middle}#div_theme_group_holder{display:block;clear:both;height:auto}#div_theme_group div.theme_label{display:inline-block;margin:10px 20px}#div_theme_group div.theme_label .theme_label_content{cursor:pointer;margin:0 5px;padding:5px 5px 15px 5px;font-size:13px;text-transform:uppercase;background-color:#dfeffb;border:none}#div_theme_group div.theme_label .theme_label_content img{display:block;clear:both;width:200px;height:150px;margin-bottom:4px;border:none}#div_theme_group div.theme_label .theme_label_content span.theme_name a.help{float:none !important;padding:0px !important;white-space:normal !important}#div_theme_group div.theme_label .theme_label_content:hover{color:#404040;background-color:#c8e3f8;border:none}#div_theme_group div.theme_label a{padding:5px;float:left}#div_theme_group div.theme_label a.theme_links_preview{float:right}#div_theme_group div.theme_label a.theme_delete{float:right}#div_theme_group .theme_label.span_theme_current .theme_label_content{color:#404040;background-color:#ffdda1;border:none}#div_theme_group .theme_label.span_theme_current .theme_label_content:hover{background-color:#ffdda1}#div_theme_group span.theme_links_preview{font-size:12px;float:right;padding:5px}#div_theme_group.custom .custom_theme_holder{width:420px;padding:3px 10px 3px 10px}#div_theme_group.custom .custom_theme_holder:hover{background-color:#f5fafe}#div_theme_group.custom .custom_theme_holder .custom_theme_title{display:inline;cursor:pointer;text-align:left;color:#1e88e5;font-size:13px}#div_theme_group.custom .custom_theme_holder .custom_theme_title:hover{color:#ffa608}#div_theme_group.custom .custom_theme_holder span.custom_theme_preview{margin-left:15px;float:right}#div_theme_group.custom .custom_theme_holder span.custom_theme_delete{margin-left:15px;float:right}#div_theme_group.custom .custom_theme_holder span.custom_theme_edit{margin-left:15px;float:right}#div_theme_group.custom .custom_theme_holder.active{background-color:#fff}#div_theme_group.custom .custom_theme_holder.active .custom_theme_title{color:#ffa608;font-weight:600}#div_theme_fullscreen{position:absolute;top:0;height:auto;width:auto;background-color:#fff;border:9px solid #c8e3f8;border-radius:7px;-moz-border-radius:7px 7px 7px 7px;-webkit-border-radius:7px;box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-webkit-box-shadow:0 0 15px rgba(0,0,0,.8)}.div_theme_fullscreen_content{padding:10px;margin-bottom:45px;overflow:auto;height:auto;min-width:250px;min-height:50px}.div_theme_fullscreen_content input{width:300px}.div_theme_fullscreen_btm{width:100%;background-color:#fff;border-top:1px solid #c8e3f8;height:25px;padding:10px 0px 10px 0px !important;position:fixed;position:absolute;bottom:0;left:0;right:0;z-index:1000}.custom div.theme_label img{width:100px;height:75px}div.theme_label.span_theme_current img{border-color:#ffdda1;color:#ffdda1}.themes-content{float:right;width:100%}.themes-content .bold{font-size:14px}#theme-editor-warning{font-size:13px;color:#ee9800;font-weight:600}#theme-editor{width:45%;float:left;min-height:600px}#theme-editor #picker{max-width:90vw;padding:20px;background-color:#fff;border-left:6px #1e88e5 solid !important;box-shadow:0 0 10px 0 rgba(0,0,0,.34);position:fixed;left:500px;z-index:999}#theme-editor #picker .popup_close{position:absolute !important;top:20px;right:20px;z-index:9999;font-size:32px !important;line-height:25px;color:#d3d3d3}#theme-editor #picker .popup_close:hover{color:#1e88e5}#theme-editor #picker .popup_close a{color:#d3d3d3}#theme-editor #picker .popup_close a:hover{color:#1e88e5}#theme-editor #picker h2,#theme-editor #picker .divPopUp_top{max-width:95%;margin-top:0px;margin-bottom:20px;font-size:20px;line-height:27px;font-weight:500;color:#333}#theme-editor #picker p{line-height:20px}#theme-editor #picker.popup_violet{border-left:6px #921ee5 solid !important}#theme-editor #picker.popup_violet div.buttonwrapper a{background-color:#921ee5;border:1px #921ee5 solid}#theme-editor #picker.popup_violet div.buttonwrapper a:hover{background-color:#be79f0;border:1px #be79f0 solid}#theme-editor #picker.popup_violet div.buttonwrapper a.ovalbutton_gray{color:#921ee5 !important;background-color:#fff !important}#theme-editor #picker.popup_violet div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#921ee5 !important}#theme-editor #picker.popup_orange{border-left:6px #ffa608 solid !important}#theme-editor #picker.popup_orange div.buttonwrapper a{background-color:#ffa608;border:1px #ffa608 solid}#theme-editor #picker.popup_orange div.buttonwrapper a:hover{background-color:#ffb83b;border:1px #ffb83b solid}#theme-editor #picker.popup_orange div.buttonwrapper a.ovalbutton_gray{color:#ffa608 !important;background-color:#fff !important}#theme-editor #picker.popup_orange div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:#ffa608 !important}#theme-editor #picker.popup_red{border-left:6px red solid !important}#theme-editor #picker.popup_red div.buttonwrapper a{background-color:red;border:1px red solid}#theme-editor #picker.popup_red div.buttonwrapper a:hover{background-color:#ff5757;border:1px #ff5757 solid}#theme-editor #picker.popup_red div.buttonwrapper a.ovalbutton_gray{color:red !important;background-color:#fff !important}#theme-editor #picker.popup_red div.buttonwrapper a.ovalbutton_gray:hover{color:#fff !important;background-color:red !important}#theme-preview{width:50%;float:right;min-height:600px;position:relative;border:1px #d3d3d3 solid}#theme-preview iframe{width:100%;height:600px}#theme-preview iframe #preview{display:none}.theme-overflow{position:absolute;top:0;left:0;bottom:0;right:0;z-index:2;margin-right:20px}#new_theme_alert{position:absolute;top:0;left:50%;width:400px;margin-left:-200px;background-color:#d48800;color:#fff;height:50px;text-align:center}#new_theme_alert p{margin:0;line-height:50px}#phn_import_list_profiles{margin:0px;padding:0px;min-height:100px;max-height:600px;border:1px solid #d3d3d3;border-top:none;overflow:auto !important;display:inline-block;background-color:#fff;width:200px !important;height:237px !important}#phn_import_list_profiles ol{margin:0px;padding:0px;display:block;border-bottom:1px solid #d3d3d3}#phn_import_list_profiles ol li{display:block;list-style-image:none;list-style-position:outside;list-style-type:none;line-height:20px;border-top:1px solid #d3d3d3;padding:0px 5px;cursor:pointer}#phn_import_list_profiles ol li.active{background-color:#061d31;color:#fff}#inv_top_navi{clear:both;display:inline-block;width:auto;padding:0px 3px;margin:0 20px 0 0;font-size:14px;font-weight:bold;color:#1e88e5}.phn_space{clear:both;display:inline-block;padding:0px;margin:0px;width:60px}.phn_step_space{clear:both;display:inline-block;padding:0px;margin:0px;width:13px}.phn_step_nav{clear:both;display:inline-block;padding:0px;margin:0px;width:40px}.phn_step{clear:both;display:inline-block;padding:0px;margin:0px;width:40px;display:inline-block;height:15px}.phn_step.yellow{display:inline-block;height:10px}.phn_step_nav.yellow{display:inline-block;height:10px;width:auto}div.phn_step{cursor:pointer;width:auto;margin:3px 5px;padding:0px}div.phn_step span.circle{display:inline-block;margin:0px 0px;width:24px;height:24px;font-size:13px;line-height:24px;text-align:center;color:#1e88e5;border:1px solid #1e88e5;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}div.phn_step span.label{display:inline-block;padding:0px 5px;line-height:24px;text-align:center;color:#1e88e5;line-height:18px}div.phn_step a:hover span{color:#1e88e5}div.phn_step a:hover span.circle{color:#fff;background-color:#ffa608;border:1px solid #ffa608;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}div.phn_step.active{background-color:#fff}div.phn_step.active a span{color:#1e88e5}div.phn_step.active a span.circle{color:#fff;background-color:#ffa608;border:1px solid #ffa608;border-radius:14px;-moz-border-radius:14px;-webkit-border-radius:14px}div.phn_step_nav.active{background-color:#fff}div.phn_step_nav.active a span{color:#1e88e5}div.phn_step_nav a:hover span{color:#1e88e5}.phn_ico_status_go{background:url("../../../admin/survey/img_0/telephone/telephone_go.png") center center no-repeat}.phn_ico_status_error{background:url("../../../admin/survey/img_0/telephone/telephone_error.png") center center no-repeat}.phn_ico_status{background:url("../../../admin/survey/img_0/telephone/telephone.png") center center no-repeat}.phn_ico_status_link{background:url("../../../admin/survey/img_0/telephone/telephone_link.png") center center no-repeat}.phn_ico_status_key{background:url("../../../admin/survey/img_0/telephone/telephone_key.png") center center no-repeat}.phn_ico_unsubscribed_0{background:url("../../../admin/survey/img_0/opdedout_off.png") center center no-repeat}.phn_ico_unsubscribed_1{background:url("../../../admin/survey/img_0/opdedout_on.png") center center no-repeat}#phn_dashboard_date_filter{margin:10px 0 20px 10px}#phn_call_table{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;width:100%;clear:both}#phn_call_table th{color:gray;padding:5px 10px;font-size:14px;height:24px;vertical-align:middle;background-color:#f8f8f8;border:1px solid gray;text-align:left}#phn_call_table td{padding:10px 20px;font-size:12px;vertical-align:top;border:1px solid gray}#phn_user_comment{width:95%;margin:0px 10px;outline:1px solid #d3d3d3;min-height:24pt;padding:3px}.phn_user_intro{width:100%;margin:0px 10px;padding:3px;outline:1px solid #efefef;color:gray}#telephone_popup{display:none;position:fixed;top:40%;left:50%;margin-top:-100px;margin-left:-300px;min-height:200px;width:auto;z-index:89;padding:10px;background-color:#fff;border:9px solid #c8e3f8;border-radius:7px 7px 7px 7px;-moz-border-radius:7px 7px 7px 7px;-webkit-border-radius:7px 7px 7px 7px;box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-webkit-box-shadow:0 0 15px rgba(0,0,0,.8)}#tbl_recipients_list.phone th{text-align:center;padding-right:7px;padding-left:7px;min-width:auto;border-left:1px #efefef solid;border-right:1px #efefef solid}#tbl_recipients_list.phone td{padding-right:7px;padding-left:7px;min-width:auto;border-left:1px #efefef solid;border-right:1px #efefef solid}#tbl_recipients_list.phone th.tbl_icon.anl_ac{border-left:0}#tbl_recipients_list.phone tr{white-space:nowrap;overflow:hidden}#tbl_recipients_list.phone tr td.tbl_inv_left span.sprites{cursor:pointer}#tbl_recipients_list.phone tr td.anl_ac{cursor:pointer}#tbl_recipients_list .ovwerflowHidden{overflow:hidden;white-space:nowrap;width:100%;text-overflow:ellipsis}#divProfileManager{position:absolute;right:0;top:120px}#tbl_profileManager_pdofileData{border-spacing:0px;padding:0px;margin:0px;border-collapse:collapse;table-layout:auto;clear:both}#tbl_profileManager_pdofileData th{color:#333;padding:3px;padding-left:7px;font-size:12px;font-weight:normal;height:24px;vertical-align:middle;border-top:1px solid #c8e3f8;border-bottom:1px solid #c8e3f8;width:auto;text-align:left}#tbl_profileManager_pdofileData td{padding:5px 3px;padding-left:7px;font-size:11px;vertical-align:middle;border-bottom:1px solid #c8e3f8}#profileManager_holder{float:left;width:190px;margin:8px 8px 8px 0px;color:#1e88e5}#profileManager_profile{height:150px;width:190px;overflow:auto;cursor:pointer}#profileManager_profile .option{padding:2px 5px;margin-bottom:5px}#profileManager_profile .active{padding:2px 5px;background-color:#f5fafe;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}@media all and (min-width: 1400px){#branching ul.first{margin:0px 40px 40px -30px}}@media screen and (-webkit-min-device-pixel-ratio: 0){.tabnavigation1{margin:0px 0px 0px 1px}}@media all and (min-width: 1550px){#toolbox_library{left:1200px}#quick_settings_holder{left:1162px}}@media print{.no-print{display:none !important}.no-print *{display:none !important}}.time_span.year_2021{background-color:#4bacc6}.time_span.year_2020{background-color:#8064a2}.time_span.year_2019{background-color:#4f81bd}.time_span.year_2018{background-color:#9bbb59}.time_span.year_2017{background-color:#c0504d}.time_span.year_2016{background-color:#92a9cf}.time_span.year_2015{background-color:#f79646}.time_span.year_2014{background-color:#4bacc6}.time_span.year_2013{background-color:#8064a2}.time_span.year_2012{background-color:#9bbb59}.time_span.year_2011{background-color:#c0504d}.time_span.year_2010{background-color:#4f81bd}.time_span.day_1{background-color:#4f81bd}.time_span.day_2{background-color:#c0504d}.time_span.day_3{background-color:#9bbb59}.time_span.day_4{background-color:#8064a2}.time_span.day_5{background-color:#4bacc6}.time_span.day_6{background-color:#f79646}.time_span.day_7{background-color:#92a9cf}.time_span.month_1{background-color:#4f81bd}.time_span.month_2{background-color:#c0504d}.time_span.month_3{background-color:#9bbb59}.time_span.month_4{background-color:#8064a2}.time_span.month_5{background-color:#4bacc6}.time_span.month_6{background-color:#f79646}.time_span.month_7{background-color:#92a9cf}.time_span.month_8{background-color:#4f81bd}.time_span.month_9{background-color:#c0504d}.time_span.month_10{background-color:#9bbb59}.time_span.month_11{background-color:#8064a2}.time_span.month_12{background-color:#4bacc6}.anl_single_ans_ico{float:left;margin-right:-16px;width:16px;height:16px;display:inline-block;background-image:url(../../../admin/survey/img_new/sprites_test.png);background-position:-17px -200px;margin-right:2px}a.addIfIcon{cursor:pointer;color:gray;display:inline-block;width:16px;height:16px;background-image:url("../../../admin/survey/img_0/if_green.png");vertical-align:bottom;margin-left:5px;margin-bottom:2px}@media(max-width: 600px){#main{margin-top:70px;padding-bottom:30px}#main #anketa_edit{box-sizing:border-box !important;padding:15px !important}#main #placeholder{width:auto}fieldset{width:100% !important;box-sizing:border-box !important;margin-left:0 !important;margin-right:0 !important}fieldset .nastavitveSpan1,fieldset .nastavitveSpan2,fieldset .nastavitveSpan3,fieldset .nastavitveSpan4,fieldset .nastavitveSpan5,fieldset .nastavitveSpan6{width:auto !important;display:block !important;float:none !important;text-align:left !important;padding:15px 0 5px 0 !important}fieldset select,fieldset .select2-container,fieldset input[type=text],fieldset textarea{width:100% !important;box-sizing:border-box}fieldset .setting{height:auto !important}.desktop_header{display:none}.mobile_header{position:fixed;z-index:9990;display:flex;align-items:center;width:100vw;height:70px;border-bottom:1px solid #efefef}.mobile_header.survey_edit{color:#fff;background-color:#1e88e5}.mobile_header.survey_list{color:#1e88e5;background-color:#fff}.mobile_header .mobile_menu_icon{width:60px;text-align:center}.mobile_header .mobile_menu_icon.mobile_menu_close{display:none}.mobile_header .mobile_menu_icon.mobile_menu_close span{font-size:30px;font-weight:600;line-height:25px}.mobile_header .mobile_menu_icon span{cursor:pointer}.mobile_header .mobile_survey_title{width:calc(100% - 120px);text-align:center;font-size:14px;font-weight:500}.mobile_header .mobile_logo{width:calc(100% - 120px)}.mobile_header .mobile_logo #enka_logo{margin:0 auto}.mobile_menu{position:fixed;z-index:9995;display:flex;flex-direction:column;top:71px;bottom:0;width:85vw;color:#333;background-color:#fff;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-y:auto;pointer-events:none;transform:translateX(-100%)}.mobile_menu:not(.no-transition),.mobile_menu .submenu:not(.no-transition){transition:all 250ms}.mobile_menu.opened{pointer-events:auto;transform:translateX(0px)}.mobile_menu.submenu-opened{overflow:hidden}.mobile_menu ul{list-style-type:none;padding:0;padding-left:0px;margin:0;-webkit-overflow-scrolling:touch}.mobile_menu ul>li{display:block}.mobile_menu ul>li>a{position:relative;display:block;padding:18px 20px;font-size:14px;font-weight:500;text-decoration:none;transition:all 150ms}.mobile_menu ul>li>a:hover{background-color:#c8e3f8;border-radius:3px}.mobile_menu ul>li>a .arrow_back{display:block;position:absolute;right:20px;top:18px;transform:rotate(180deg)}.mobile_menu ul>li:not(:last-child)>a{border-bottom:1px solid #efefef}.mobile_menu .submenu{overflow:hidden;-webkit-overflow-scrolling:touch;overflow-y:auto;pointer-events:none;z-index:9998;position:fixed;bottom:0;top:0;left:100%;width:100%;min-height:100%;background-color:#fff}.mobile_menu .submenu.opened{left:0;pointer-events:auto}.mobile_menu .submenu.opened:not(.current){overflow:hidden}.mobile_menu .submenu-header{cursor:pointer;position:relative;display:flex;border-bottom:solid 1px #efefef}.mobile_menu .submenu-header>a{display:block;font-size:14px;font-weight:500;padding:18px 20px;padding-left:20px;text-decoration:none}.mobile_menu .submenu-header>label{display:block;width:calc(100% - 110px);margin-bottom:8px;margin-top:20px;padding-left:0px;font-size:15px;font-weight:500;text-align:center;opacity:.5}.mobile_menu .mobile_menu_user li.has-submenu .arrow_back{line-height:30px}.mobile_menu .mobile_menu_user li.has-submenu a{font-size:13px;color:#333}.mobile_menu .mobile_menu_user li.has-submenu a .email{font-size:12px}.mobile_menu .mobile_menu_user .submenu_user_content{display:flex;flex-direction:column;padding:20px}.mobile_menu .mobile_menu_user .submenu_user_content>div{padding:5px 0 10px 0;font-size:14px;font-weight:500}.mobile_menu .mobile_menu_user .submenu_user_content>div .faicon{padding-right:10px;vertical-align:-1px}.mobile_menu .mobile_menu_actions{display:flex;flex-direction:column;padding:20px}.mobile_menu .mobile_menu_actions a{padding:0 0 15px 0;font-size:13px}.mobile_menu .mobile_menu_actions a .faicon::before{padding-right:10px;font-size:20px}#srv_footer{display:flex;flex-direction:column;margin-top:0}#srv_footer .footer_left{margin-bottom:10px}#main #moje_ankete_edit{padding:20px !important}#main #moje_ankete_edit #anketa_edit{padding:0 !important}#main #moje_ankete_edit #survey_list{display:flex;flex-direction:column}#main #moje_ankete_edit #survey_list>div{margin:15px 0 20px 0}#main #moje_ankete_edit #survey_list #anketa_new_float{display:flex;justify-content:left}#main #moje_ankete_edit #survey_list #pagination{margin-left:auto;margin-right:auto;transform:none;display:none}#main #moje_ankete_edit #survey_list #pagination.bottom{display:block}#main #moje_ankete_edit #survey_list #sortButton,#main #moje_ankete_edit #survey_list #filterButton,#main #moje_ankete_edit #survey_list #folderSwitch{display:none}#main #moje_ankete_edit #survey_list #searchMySurveys{padding:0}#main #moje_ankete_edit #survey_list #searchMySurveys form{display:flex;justify-content:center}#main #moje_ankete_edit #survey_list #searchMySurveys form input[type=text]{width:100%;padding:5px 0 5px 7px}#main #moje_ankete_edit #survey_list .div_sl_new{padding:20px 0}#main #moje_ankete_edit #survey_list table#surveyList_new td{display:none}#main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(3),#main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(6){display:table-cell}#main #moje_ankete_edit.page_knjiznica .folder_left{line-height:20px}#main #moje_ankete_edit.page_knjiznica .folder_right .library_item_setting_text{display:none}#main #moje_ankete_edit.page_knjiznica ul li.anketa{margin:5px 0}#main #moje_ankete_edit fieldset div.data{margin-top:10px}#main #moje_ankete_edit fieldset div.setting{margin-bottom:10px}#new_anketa_div{display:flex;flex-direction:column;min-height:auto;width:100%}#new_anketa_div #left_menu,#new_anketa_div #right_content{width:100%;position:relative}#new_anketa_div #right_content{box-sizing:border-box;margin:20px 0 0 0;padding:0}#new_anketa_div #right_content .setting{width:100% !important;margin:0 !important;padding:0 !important}#new_anketa_div #right_content .survey_title_text_holder{flex-direction:column !important}#new_anketa_div #right_content select{width:100% !important;margin:0}#new_anketa_div #right_content input{width:100% !important;box-sizing:border-box}#new_anketa_div #right_content .survey_type_holder{flex-direction:column !important}#new_anketa_div #right_content .survey_type_holder label{margin-bottom:15px}#new_anketa_div #right_content .survey_type_holder label>div{box-sizing:border-box;padding:10px !important}#new_anketa_div #right_content .fieldset{line-height:24px}#new_anketa_div #right_content .fieldset input[type=file]{margin-top:20px}#new_anketa_div #input_field_holder,#new_anketa_div #preview_field_holder{width:100% !important;float:none;box-sizing:border-box;margin:0 !important;padding:10px 0 !important}#new_anketa_div .from_text_instructions{line-height:20px !important}#new_anketa_div .fieldset.noSurvey_template{display:flex;flex-direction:column}#new_anketa_div .fieldset.noSurvey_template .template{align-self:center;width:auto !important}#new_anketa_div .fieldset.noSurvey_template .template .template_preview{margin-right:10px !important}table.dashboard{border-spacing:0px}table.dashboard>tbody>tr,table.dashboard>tbody>tr>td{display:flex;flex-direction:column;width:100%;box-sizing:border-box}table.dashboard>tbody>tr>td{margin:15px 0}.page_branching #placeholder,.page_ #placeholder{margin-left:0}.locked .add-variable-mobile,.spremenljivka_content:hover .add-variable{display:none !important}#branching{width:100%}#branching li{margin:0 10px 0 10px !important}#branching .spr_edit{display:none !important}#branching .content_div_normalmode{padding-bottom:40px}#branching .add-variable-mobile{display:block;position:absolute;left:59px;bottom:20px}#branching .empty_vrivanje{padding:30px 0 !important;margin:20px 10px 20px 10px !important}#branching .empty_vrivanje .empty_vrivanje_title{display:none;margin:0 20px;font-size:14px}#branching .empty_vrivanje .empty_vrivanje_subtitle{display:none;margin:15px 20px 0 15px;font-size:13px}#branching .empty_vrivanje .mobile_add_question{position:relative;bottom:auto}#branching #bottom_icons_holder{display:flex;flex-direction:column}#branching #bottom_icons_holder .forma_bottom{display:flex;flex-direction:column;align-items:left;width:100%;height:auto;padding:30px 10px 20px 20px}#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner{display:flex;flex-direction:row;padding:0 0 10px 0;margin:0}#branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a{margin:0 11px 0 2px;padding:0}#toolbox_advanced_settings{display:none !important;top:150px}#toolbox_basic{display:none !important;top:187px}#toolbox_library{display:none !important}.mobile_add_question{display:block;position:fixed;bottom:25px;left:calc(50% - 95px);width:190px}.mobile_add_question a{display:flex !important;justify-content:center;padding:10px 20px 10px !important;font-size:14px;font-weight:500}.mobile_add_question .plus{margin-right:8px;font-size:28px;line-height:15px;font-weight:600}.mobile_add_question_popup{z-index:9999;position:fixed;top:0;left:0;width:100%;height:100%;box-sizing:border-box;padding:40px 20px 20px 20px;background:#fff}.mobile_add_question_popup .mobile_add_question_item{cursor:pointer;position:relative;box-sizing:border-box;width:300px;height:45px;margin:15px auto 5px auto;font-size:16px;font-weight:500;text-align:center;background-color:#f5fafe;border:1px #dfeffb solid}.mobile_add_question_popup .mobile_add_question_item:hover{background-color:#dfeffb;border:1px #c8e3f8 solid}.mobile_add_question_popup .mobile_add_question_item span.faicon{position:absolute;left:20px;line-height:42px}.mobile_add_question_popup .mobile_add_question_item span.faicon.matrix_32{line-height:10px;margin-top:9px}.mobile_add_question_popup .mobile_add_question_item span.item_text{line-height:42px}.mobile_add_question_popup .mobile_add_question_button{position:absolute;bottom:25px;left:calc(50% - 95px);box-sizing:border-box;width:190px;text-align:center}.mobile_add_question_popup .mobile_add_question_button a{padding:10px 20px 10px !important;font-size:14px;font-weight:500}#vprasanje_float_editing{position:fixed;z-index:99999;width:100%;height:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;margin:0 !important;top:0;right:0;left:0;box-shadow:0px 0px 100px 100px #333}#vprasanje_float_editing #vprasanje_edit{top:0;margin-bottom:55px}#vprasanje_float_editing #vprasanje_tabs{position:absolute;top:42px}#vprasanje_float_editing #vprasanje_tabs a.tab_link{height:auto;padding:10px 9px}#vprasanje_float_editing .tab{padding-top:100px}#vprasanje_float_editing .tab h2{position:absolute;top:0;left:0;width:100%;height:42px;box-sizing:border-box;padding:10px;margin:0}#vprasanje_float_editing #vprasanje_buttons{display:flex;justify-content:space-evenly;position:relative;bottom:30px;padding:0 15px}#vprasanje_float_editing #vprasanje_buttons span{width:40%;margin-left:0 !important;text-align:center}#main #anketa #globalSetingsList{max-width:100% !important;width:100% !important}#main #anketa #globalSetingsList fieldset{width:100% !important}#main #anketa #anketa_edit.page_nastavitve,#main #anketa #anketa_edit.page_osn_pod,#main #anketa #anketa_edit.page_mobile_settings,#main #anketa #anketa_edit.page_jezik,#main #anketa #anketa_edit.page_dostop,#main #anketa #anketa_edit.page_piskot,#main #anketa #anketa_edit.page_alert,#main #anketa #anketa_edit.page_trajanje,#main #anketa #anketa_edit.page_skupine,#main #anketa #anketa_edit.page_urejanje,#main #anketa #anketa_edit.page_prikaz,#main #anketa #anketa_edit.page_metadata,#main #anketa #anketa_edit.page_missing,#main #anketa #anketa_edit.page_export_settings,#main #anketa #anketa_edit.page_gdpr_settings,#main #anketa #anketa_edit.page_uporabnost,#main #anketa #anketa_edit.page_kviz,#main #anketa #anketa_edit.page_voting,#main #anketa #anketa_edit.page_social_network,#main #anketa #anketa_edit.page_slideshow,#main #anketa #anketa_edit.page_telephone,#main #anketa #anketa_edit.page_chat,#main #anketa #anketa_edit.page_panel,#main #anketa #anketa_edit.page_advanced_paradata,#main #anketa #anketa_edit.page_json_survey_export,#main #anketa #anketa_edit.page_fieldwork{flex-direction:column-reverse}#main #anketa #anketa_edit.page_nastavitve>div,#main #anketa #anketa_edit.page_osn_pod>div,#main #anketa #anketa_edit.page_mobile_settings>div,#main #anketa #anketa_edit.page_jezik>div,#main #anketa #anketa_edit.page_dostop>div,#main #anketa #anketa_edit.page_piskot>div,#main #anketa #anketa_edit.page_alert>div,#main #anketa #anketa_edit.page_trajanje>div,#main #anketa #anketa_edit.page_skupine>div,#main #anketa #anketa_edit.page_urejanje>div,#main #anketa #anketa_edit.page_prikaz>div,#main #anketa #anketa_edit.page_metadata>div,#main #anketa #anketa_edit.page_missing>div,#main #anketa #anketa_edit.page_export_settings>div,#main #anketa #anketa_edit.page_gdpr_settings>div,#main #anketa #anketa_edit.page_uporabnost>div,#main #anketa #anketa_edit.page_kviz>div,#main #anketa #anketa_edit.page_voting>div,#main #anketa #anketa_edit.page_social_network>div,#main #anketa #anketa_edit.page_slideshow>div,#main #anketa #anketa_edit.page_telephone>div,#main #anketa #anketa_edit.page_chat>div,#main #anketa #anketa_edit.page_panel>div,#main #anketa #anketa_edit.page_advanced_paradata>div,#main #anketa #anketa_edit.page_json_survey_export>div,#main #anketa #anketa_edit.page_fieldwork>div{width:100%;margin:20px 0}#main #anketa #anketa_edit.page_tema #div_theme_group_holder{width:100%}#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label{width:100%;box-sizing:border-box;margin-left:0;margin-right:0}#main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label img{width:100%;height:auto}#theme-editor{width:100% !important;float:none !important}#theme-preview{width:100% !important;float:none !important;margin-top:80px !important}#main #anketa #anketa_edit.page_arhivi{flex-direction:column-reverse}#main #anketa #anketa_edit.page_arhivi>div{width:100% !important;margin:20px 0}#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset{width:100% !important;box-sizing:border-box !important;margin-left:0 !important;margin-right:0 !important}#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input{width:100% !important}#srv_diagnostic br{display:none}#srv_diagnostic #srv_diagnostic_results,#srv_diagnostic #srv_diagnostic_results_right{clear:both;display:block !important;width:100% !important;box-sizing:border-box;margin:20px 0 !important}#srv_diagnostic #srv_diagnostic_results table,#srv_diagnostic #srv_diagnostic_results_right table{width:100%;min-width:100%}#srv_diagnostic #srv_diagnostic_results table td+td,#srv_diagnostic #srv_diagnostic_results_right table td+td{width:auto !important}.subpage_testnipodatki{line-height:20px}.subpage_testnipodatki form input[type=submit]{margin:10px 0 10px 15px;padding:3px}.subpage_testnipodatki form label{padding-top:20px}.subpage_testnipodatki form label input{vertical-align:bottom}#vabila>table,table.invitations_settings,#inv_msg_preview table,#inv_send_mail table{border-spacing:0px;width:100%}#vabila>table tbody,table.invitations_settings tbody,#inv_msg_preview table tbody,#inv_send_mail table tbody{display:flex;flex-direction:column;width:100% !important}#vabila>table>tbody>tr,#vabila>table>tbody>tr>td,table.invitations_settings>tbody>tr,table.invitations_settings>tbody>tr>td,#inv_msg_preview table>tbody>tr,#inv_msg_preview table>tbody>tr>td,#inv_send_mail table>tbody>tr,#inv_send_mail table>tbody>tr>td{display:flex;flex-direction:column;width:100% !important;box-sizing:border-box}#vabila>table>tbody>tr>td,table.invitations_settings>tbody>tr>td,#inv_msg_preview table>tbody>tr>td,#inv_send_mail table>tbody>tr>td{height:auto !important;margin:0;padding:0 !important}#vabila>table>tbody>tr>td>br,table.invitations_settings>tbody>tr>td>br,#inv_msg_preview table>tbody>tr>td>br,#inv_send_mail table>tbody>tr>td>br{display:none}#vabila>table>tbody>tr>td>div,#vabila>table>tbody>tr>td>fieldset,table.invitations_settings>tbody>tr>td>div,table.invitations_settings>tbody>tr>td>fieldset,#inv_msg_preview table>tbody>tr>td>div,#inv_msg_preview table>tbody>tr>td>fieldset,#inv_send_mail table>tbody>tr>td>div,#inv_send_mail table>tbody>tr>td>fieldset{margin:15px 0}#vabila>table colgroup,#vabila>table colgroup col,table.invitations_settings colgroup,table.invitations_settings colgroup col,#inv_msg_preview table colgroup,#inv_msg_preview table colgroup col,#inv_send_mail table colgroup,#inv_send_mail table colgroup col{width:100% !important}#vabila>table p label,table.invitations_settings p label,#inv_msg_preview table p label,#inv_send_mail table p label{width:100%}#vabila>table p label input[type=text],#vabila>table p label input[type=number],#vabila>table p label input[type=password],table.invitations_settings p label input[type=text],table.invitations_settings p label input[type=number],table.invitations_settings p label input[type=password],#inv_msg_preview table p label input[type=text],#inv_msg_preview table p label input[type=number],#inv_msg_preview table p label input[type=password],#inv_send_mail table p label input[type=text],#inv_send_mail table p label input[type=number],#inv_send_mail table p label input[type=password]{width:100% !important;box-sizing:border-box}#surveyInvitationSetting,#surveyInvitationSettingServer{min-width:100% !important;width:100% !important;margin:10px 0 !important;box-sizing:border-box !important}#inv_top_navi{display:flex;flex-direction:column;width:100%;padding:0;margin:0}#inv_top_navi .inv_space{display:none}#inv_top_navi>#inv_step_nav{width:100%;padding:0;margin:0 0 15px 0}#inv_top_navi>#inv_step_nav .inv_step{height:auto;padding:0;margin:0}#inv_top_navi>#inv_step_nav span.label{padding:0}#inv_top_navi>#inv_step_nav.yellow{display:flex;justify-content:space-between}#inv_top_navi>#inv_step_nav.yellow .inv_step span.circle{width:18px;height:18px;line-height:18px}#inv_top_navi>#inv_step_nav.yellow .inv_step span.label{padding:0 0 0 3px}#inv_top_navi>#inv_step_nav.yellow .inv_step_space{display:none}#inv_recipients_profiles_holder,#inv_import_list_container,#inv_messages_profiles_holder,#inv_msg_preview_hld,#invitation_profile_notes,#inv_select_mail_to,#inv_select_mail_preview{width:100%;box-sizing:border-box;margin:15px 0 !important}#inv_recipients_profiles_holder textarea,#inv_import_list_container textarea,#inv_messages_profiles_holder textarea,#inv_msg_preview_hld textarea,#invitation_profile_notes textarea,#inv_select_mail_to textarea,#inv_select_mail_preview textarea{width:100%}#inv_msg_preview table th{height:auto !important;width:100% !important;margin:0;padding:20px 0 0 0 !important;text-align:left}#inv_msg_preview table input{width:100%;box-sizing:border-box}.addthis_toolbox{line-height:24px}.addthis_toolbox .at-icon-wrapper{height:24px !important;width:24px !important}.addthis_toolbox .at-icon-wrapper svg{height:24px !important;width:24px !important}.addthis_toolbox .addthis_separator{font-size:16px}#inv_field_container ul li{width:45%}.page_data #vnosi_paginacija{display:flex;flex-direction:column;float:none}.page_data #vnosi_paginacija>div{margin:5px 0}.page_data #vnosi_paginacija label{margin:0;padding:0}.page_data #data_search_filter{display:flex;width:100%;box-sizing:border-box}.page_data #data_search_filter input{box-sizing:border-box;margin-left:10px;width:100%}.page_data .dataSettingsBasic{width:100%;box-sizing:border-box;margin:0}.page_data #toggleDataCheckboxes{display:none}.page_data #div_vnosi_data #dataTableScroller{display:none}.page_data #div_vnosi_data #tableContainer{overflow-y:hidden;padding-bottom:20px}.page_data #bottom_data_legend{display:block;float:none;width:100%;box-sizing:border-box;margin:5px 0 10px 0}.subpage_append,.subpage_merge,.subpage_calculation,.subpage_coding_auto,.subpage_recoding,.subpage_coding,.page_export{flex-direction:column !important}.subpage_append .anketa_edit_left,.subpage_append .anketa_edit_main,.subpage_merge .anketa_edit_left,.subpage_merge .anketa_edit_main,.subpage_calculation .anketa_edit_left,.subpage_calculation .anketa_edit_main,.subpage_coding_auto .anketa_edit_left,.subpage_coding_auto .anketa_edit_main,.subpage_recoding .anketa_edit_left,.subpage_recoding .anketa_edit_main,.subpage_coding .anketa_edit_left,.subpage_coding .anketa_edit_main,.page_export .anketa_edit_left,.page_export .anketa_edit_main{width:100% !important;box-sizing:border-box;margin:20px 0 !important}.subpage_append .anketa_edit_left,.subpage_merge .anketa_edit_left,.subpage_calculation .anketa_edit_left,.subpage_coding_auto .anketa_edit_left,.subpage_recoding .anketa_edit_left,.subpage_coding .anketa_edit_left,.page_export .anketa_edit_left{margin:0 !important}.subpage_append textarea,.subpage_merge textarea,.subpage_calculation textarea,.subpage_coding_auto textarea,.subpage_recoding textarea,.subpage_coding textarea,.page_export textarea{width:100% !important}.subpage_append #inv_upload_recipients_nosbmt+span,.subpage_merge #inv_upload_recipients_nosbmt+span,.subpage_calculation #inv_upload_recipients_nosbmt+span,.subpage_coding_auto #inv_upload_recipients_nosbmt+span,.subpage_recoding #inv_upload_recipients_nosbmt+span,.subpage_coding #inv_upload_recipients_nosbmt+span,.page_export #inv_upload_recipients_nosbmt+span{display:block;clear:both;margin:40px 0 0 0 !important}.analysis_bottom_settings a:first-child{display:block;margin:0 0 20px 0 !important}.chart_holder{width:100%;box-sizing:border-box}.chart_holder .chart_img{min-height:auto;float:none;pointer-events:none}.chart_holder .chart_img img{width:100%}.chart_holder .chart_settings{display:none}.chart_holder .chart_bottom_settings:first-child{display:block;clear:both}table.analysis_reports{border-spacing:0px}table.analysis_reports>tbody>tr,table.analysis_reports>tbody>tr>td{display:flex;flex-direction:column;width:100%;box-sizing:border-box}table.analysis_reports>tbody>tr>td{margin:10px 0}table.analysis_reports fieldset{margin-bottom:0 !important}}/*# sourceMappingURL=admin.css.map */
+ */
+@font-face {
+ font-family: "Font Awesome 5 Brands";
+ font-style: normal;
+ font-weight: normal;
+ src: url("../fonts/FontAwesome5/fa-brands-400.eot");
+ src: url("../fonts/FontAwesome5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/FontAwesome5/fa-brands-400.woff2") format("woff2"), url("../fonts/FontAwesome5/fa-brands-400.woff") format("woff"), url("../fonts/FontAwesome5/fa-brands-400.ttf") format("truetype"), url("../fonts/FontAwesome5/fa-brands-400.svg#fontawesome") format("svg");
+}
+.fab {
+ font-family: "Font Awesome 5 Brands";
+}
+
+body {
+ font-family: Montserrat, sans-serif;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Jul-2018, 12:47:41
+ Author : podkrizniku
+*/
+.as_link {
+ color: #1e88e5;
+ text-decoration: none;
+ cursor: pointer;
+ display: inline;
+}
+.as_link:hover {
+ color: #ffa608;
+ text-decoration: none;
+}
+
+.link {
+ color: #1e88e5;
+ cursor: pointer;
+}
+.link:hover {
+ color: #ffa608;
+}
+
+.pointer {
+ cursor: pointer;
+}
+
+.bold {
+ font-weight: 600;
+}
+
+.strong {
+ font-weight: 600;
+}
+
+strong {
+ font-weight: 600;
+}
+
+b {
+ font-weight: 600;
+}
+
+.semibold {
+ font-weight: 500;
+}
+
+.autoWidth {
+ width: auto;
+}
+.autoWidth p {
+ width: auto;
+}
+
+.textItalic {
+ font-style: italic;
+ font-weight: normal !important;
+}
+
+.italic {
+ font-style: italic;
+ font-weight: normal !important;
+}
+
+.spaceLeft {
+ margin-left: 8px !important;
+}
+
+.spaceLeftBig {
+ margin-left: 20px !important;
+}
+
+.spaceRight {
+ margin-right: 8px !important;
+}
+
+.spaceRightBig {
+ margin-right: 20px !important;
+}
+
+.inline {
+ display: inline;
+}
+
+.fullHeight {
+ height: 100%;
+}
+
+.fullWidth {
+ width: 100%;
+}
+
+.halfWidth {
+ width: 50%;
+}
+
+.taLeft {
+ text-align: left;
+}
+
+.taRight {
+ text-align: right;
+}
+
+.taCenter {
+ text-align: center;
+}
+
+.hidden {
+ display: none !important;
+}
+
+.clr {
+ clear: both;
+ padding: 0px;
+ margin: 0px;
+ height: 0px;
+}
+.clr:after {
+ content: ".";
+ display: block;
+ height: 0;
+ clear: both;
+ visibility: hidden;
+}
+
+.floatLeft {
+ float: left;
+ display: block;
+ width: auto;
+}
+
+.floatRight {
+ float: right;
+ display: block;
+ width: auto;
+}
+
+.displayTop {
+ position: absolute;
+ top: 10px;
+ right: 10px;
+}
+
+.displayNone {
+ display: none;
+}
+
+.displayBlock {
+ display: block !important;
+}
+
+.link_no_decoration a {
+ color: #1e88e5;
+ text-decoration: none;
+}
+.link_no_decoration a:hover {
+ color: #1e88e5;
+ text-decoration: none;
+}
+.link_no_decoration a:visited {
+ color: #1e88e5;
+ text-decoration: none;
+}
+
+.visibility_hidden {
+ visibility: hidden;
+}
+
+.small {
+ font-size: smaller;
+}
+
+.movable {
+ cursor: move;
+}
+
+.move {
+ cursor: move;
+}
+
+.moveY {
+ cursor: n-resize;
+}
+
+.enkaIcon {
+ padding: 3px 2px 2px 2px !important;
+}
+
+label.middle input {
+ vertical-align: bottom;
+}
+
+label.top input {
+ vertical-align: top;
+}
+
+.highlight {
+ font-weight: bold;
+}
+
+.down {
+ line-height: 16px;
+ vertical-align: bottom;
+ padding-top: 2px;
+}
+
+.noMargin {
+ margin: 0;
+ padding: 0;
+}
+
+div.left-float {
+ display: inline-block;
+ float: left;
+ padding-bottom: 3px;
+ padding-right: 10px;
+}
+
+.relative {
+ position: relative;
+}
+
+/*links*/
+li.highlightLineTab a {
+ background-color: white;
+ border-bottom: medium none;
+ padding-bottom: 2px;
+}
+li.highlightLineTab a span {
+ font-weight: bold;
+ color: #990000;
+}
+
+.option {
+ border-bottom: 1px solid white;
+}
+
+.div_error {
+ padding: 10px;
+ margin: 3px;
+ background-color: #f5fafe;
+}
+.div_error img {
+ margin-right: 5px;
+}
+
+a.help {
+ font-size: 11px;
+ font-weight: bold;
+ color: #1e88e5;
+}
+a.help:hover {
+ text-decoration: none;
+ color: #ffa608;
+}
+
+a.edithelp {
+ font-size: 11px;
+ font-weight: bold;
+ color: #1e88e5;
+}
+a.edithelp:VISITED {
+ color: #1e88e5;
+}
+a.edithelp:hover {
+ text-decoration: none;
+}
+
+.z-index200 {
+ z-index: 200 !important;
+}
+
+.editable[contenteditable=true] {
+ border: 1px solid white;
+}
+.editable[contenteditable=true]:hover {
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+.editable[contenteditable=true]:focus {
+ background-color: #f5fafe;
+ border: 1px dashed #409ee7;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.tab {
+ background-color: white;
+}
+
+.link-sv-moder {
+ color: #c8e3f8;
+}
+.link-sv-moder:hover {
+ color: #1e88e5;
+}
+
+.link-rdec {
+ color: #ee9800;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Jul-2018, 12:51:06
+ Author : podkrizniku
+*/
+span.buttonwrapper a {
+ cursor: pointer;
+ display: block;
+ padding: 5px 12px 6px;
+ background-color: #1e88e5;
+ border-radius: 20px;
+ border: 1px #1e88e5 solid;
+ transition: 0.1s;
+}
+span.buttonwrapper a:hover {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+span.buttonwrapper a.ovalbutton_gray {
+ cursor: pointer;
+ padding: 5px 12px 6px;
+ color: #1e88e5 !important;
+ background-color: #ffffff;
+ border: 1px #1e88e5 solid;
+ transition: 0.1s;
+}
+span.buttonwrapper a.ovalbutton_gray:hover {
+ background-color: #1e88e5 !important;
+ color: white !important;
+}
+
+div.buttonwrapper a {
+ cursor: pointer;
+ display: block;
+ padding: 5px 12px 6px;
+ background-color: #1e88e5;
+ border-radius: 20px;
+ border: 1px #1e88e5 solid;
+ transition: 0.1s;
+}
+div.buttonwrapper a:hover {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+div.buttonwrapper a.ovalbutton_gray {
+ cursor: pointer;
+ padding: 5px 20px 6px;
+ color: #1e88e5 !important;
+ background-color: #ffffff;
+ border: 1px #1e88e5 solid;
+ transition: 0.1s;
+}
+div.buttonwrapper a.ovalbutton_gray:hover {
+ background-color: #1e88e5 !important;
+ color: white !important;
+}
+
+div.buttonwrapper.ovalbutton_gray a {
+ transition: 0.1s;
+}
+div.buttonwrapper.ovalbutton_gray a:hover {
+ background-color: #1e88e5 !important;
+ color: white !important;
+}
+
+a.ovalbutton {
+ cursor: pointer;
+ color: #ffffff !important;
+ font-size: 11px;
+}
+a.ovalbutton .button .blue {
+ background-color: #1e88e5;
+}
+a.ovalbutton .button .lightblue {
+ background-color: #3e99e9;
+}
+a.ovalbutton .button .orange {
+ background-color: #ffa608;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 02-Aug-2018, 11:51:18
+ Author : podkrizniku
+*/
+.red {
+ color: #ff0000 !important;
+}
+
+.lightRed {
+ color: #ff5757 !important;
+}
+
+.orange {
+ color: #ffa608 !important;
+}
+
+.blue {
+ color: #1e88e5 !important;
+}
+
+.gray {
+ color: darkgray !important;
+}
+
+.silver {
+ color: silver !important;
+}
+
+.green {
+ color: green !important;
+}
+.green a {
+ color: green !important;
+}
+
+.clr_if {
+ color: #1e88e5 !important;
+}
+
+.clr_bl {
+ color: purple !important;
+}
+
+.clr_lp {
+ color: #d5e9fa !important;
+}
+
+.colorif {
+ color: #409ee7;
+}
+
+.colorblock {
+ color: purple;
+}
+
+.colorloop {
+ color: #d5e9fa;
+}
+
+.colorvariable {
+ color: #333;
+ font-weight: bold;
+}
+
+.calculationvariable {
+ color: #d48800;
+ font-weight: bold;
+}
+
+.quotavariable {
+ color: red;
+ font-weight: bold;
+}
+
+.dds_hover {
+ border: 1px dashed #d48800;
+}
+
+.holder {
+ border: 1px dashed #333;
+ background: white;
+}
+
+.left {
+ float: left;
+}
+
+.right {
+ float: right;
+}
+
+.white {
+ background-color: white !important;
+}
+
+.cellGreen {
+ background-color: #E6FFCC;
+}
+
+.cellYellow {
+ background-color: #FFFFF0;
+}
+
+.cellBlue {
+ background-color: #D7F4FA;
+}
+
+.cellRed {
+ background-color: #FAd7d7;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 18-Jul-2018, 10:11:27
+ Author : podkrizniku
+*/
+/*#enka_nav input[type="text"] {
+ width: 80px;
+ -webkit-transition: width 400ms ease;
+ -moz-transition: width 400ms ease;
+ -o-transition: width 400ms ease;
+ -ms-transition: width 400ms ease;
+ transition: width 400ms ease;
+}
+#enka_nav input[type="text"]:focus {
+ width: 200px;
+}*/
+.mobile_header {
+ display: none;
+}
+
+#logo {
+ position: absolute;
+ left: 15px;
+ top: 12px;
+}
+
+#enka_logo {
+ display: block;
+ background-image: url(../img/logo/1ka_slo.svg);
+ background-repeat: no-repeat;
+ width: 72px;
+ height: 41px;
+ margin: 0;
+ padding: 0;
+}
+
+#enka_logo.english {
+ background-image: url(../img/logo/1ka_eng.svg);
+ background-repeat: no-repeat;
+}
+
+body.body_anketa #logo {
+ left: 0px;
+ top: 0px;
+ width: 31px;
+ height: 42px;
+ padding: 12px 15px;
+}
+body.body_anketa #enka_logo {
+ display: block;
+ background-image: url(../img/logo/1ka_slo.svg);
+ background-repeat: no-repeat;
+ width: 72px;
+ height: 41px;
+ margin: 0;
+ padding: 0;
+}
+body.body_anketa #enka_logo.english {
+ background-image: url(../img/logo/1ka_eng.svg);
+ background-repeat: no-repeat;
+}
+body.body_anketa #topLine2 {
+ margin: 0;
+ padding-left: 50px;
+ height: 66px;
+ font-size: 13px;
+ vertical-align: middle;
+}
+
+#topLine2 {
+ margin: 0px;
+ height: 66px;
+ font-size: 13px;
+}
+#topLine2 .borderLeft {
+ padding-left: 10px;
+}
+
+#anketa_naslov {
+ display: inline-block;
+ margin-top: 21px;
+ padding: 0 0 0 55px;
+ font-size: 17px;
+}
+#anketa_naslov a {
+ color: grey;
+ text-decoration: none;
+ font-weight: 600;
+ padding-left: 15px;
+}
+
+#anketa_naslov.anketa_img_nav {
+ white-space: nowrap;
+}
+
+#anketa_url {
+ font-size: 15px;
+ color: silver;
+}
+#anketa_url img {
+ padding-right: 5px;
+}
+#anketa_url a {
+ color: #1e88e5 !important;
+ font-weight: 400;
+}
+#anketa_url a:VISITED {
+ color: #1e88e5 !important;
+ font-weight: 400;
+}
+#anketa_url a:HOVER {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+
+.anketa_url_bottom {
+ font-size: 11px;
+ color: silver;
+ padding-left: 10px;
+}
+
+#anketa_aktivacija img {
+ padding-right: 5px;
+}
+
+#anketa_activation {
+ padding: 0 5px 0 15px;
+}
+
+.request-help {
+ margin-left: 10px;
+}
+
+.quick-settings {
+ margin-left: 10px;
+}
+
+#anketa_active {
+ height: auto;
+ width: auto;
+ min-width: 1002px;
+ background-color: #ffffff;
+}
+
+#anketa_active.newCss {
+ border: none;
+}
+
+#anketa_active.folders {
+ border: none;
+}
+
+.switch_anketa {
+ position: relative;
+ display: inline-block;
+ width: 50px;
+ height: 18px;
+ margin: 0 3px -2px 0;
+ color: white;
+ font-size: 11px;
+ font-weight: 600;
+}
+.switch_anketa .switch_anketa_content {
+ position: absolute;
+ cursor: pointer;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding-top: 2px;
+ background-color: #1e88e5;
+ border-radius: 20px;
+}
+.switch_anketa .switch_anketa_content:before {
+ position: absolute;
+ content: "";
+ height: 14px;
+ width: 14px;
+ bottom: 2px;
+ background-color: white;
+ border-radius: 50%;
+}
+
+.switch_anketa.anketa_on .switch_anketa_content {
+ padding-left: 9px;
+ background-color: #1e88e5;
+}
+.switch_anketa.anketa_on .switch_anketa_content:before {
+ right: 2px;
+}
+.switch_anketa.anketa_on:hover .switch_anketa_content {
+ background-color: #ffa608;
+}
+
+.switch_anketa.anketa_off .switch_anketa_content {
+ padding-left: 19px;
+ background-color: #6cb1ee;
+}
+.switch_anketa.anketa_off .switch_anketa_content:before {
+ left: 2px;
+}
+.switch_anketa.anketa_off:hover .switch_anketa_content {
+ background-color: #1e88e5;
+}
+
+input#searchSurvey {
+ display: none;
+ width: 150px;
+ padding: 3px 0 3px 5px;
+ margin-top: -8px;
+ border: 1px solid #c8e3f8;
+}
+
+/*Search, help, user info*/
+#enka_nav {
+ display: inline-block;
+ position: absolute;
+ top: 21px;
+ right: 17px;
+ text-align: right;
+ margin-top: 0px;
+ height: 25px;
+}
+#enka_nav #search_holder {
+ display: inline-block;
+ vertical-align: middle;
+}
+#enka_nav #help_holder {
+ display: inline-block;
+ vertical-align: middle;
+ margin-left: 12px;
+}
+#enka_nav #fieldwork_holder {
+ display: inline-block;
+ vertical-align: middle;
+ margin-left: 12px;
+}
+#enka_nav #notification_holder {
+ display: inline-block;
+ vertical-align: middle;
+ margin-left: 12px;
+}
+
+span.sprites.mail_unread {
+ color: #ffffff;
+ font-size: 11px;
+ font-weight: bold;
+ line-height: 23px;
+ text-align: center;
+ text-indent: 10px;
+}
+
+#xtradiv {
+ display: inline-block;
+ width: auto;
+ margin-left: 15px;
+ vertical-align: middle;
+}
+#xtradiv .xtraname {
+ cursor: pointer;
+ display: inline-block;
+ width: auto;
+ padding: 0 15px 2px 0;
+ font-weight: 500;
+ color: #1e88e5;
+}
+#xtradiv .xtraname:hover {
+ color: #ffa608;
+}
+#xtradiv #xtradivSettings {
+ display: none;
+ position: absolute;
+ z-index: 99999;
+ right: 8px;
+ top: 35px;
+ padding: 5px 10px;
+ width: 120px;
+ text-align: left;
+ background-color: #ffffff;
+ border: 1px #c8e3f8 solid;
+ -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+ box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+ -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+}
+#xtradiv #xtradivSettings span.xtraSetting {
+ clear: both;
+ float: left;
+ padding: 6px 0;
+}
+#xtradiv #xtradivSettings span.xtraSetting a.xtra {
+ display: inline;
+ vertical-align: middle;
+ font-size: 13px;
+ color: #4d4d4d;
+}
+#xtradiv #xtradivSettings span.xtraSetting a.xtra:hover {
+ color: #ffa608;
+}
+#xtradiv #xtradivSettings span.xtraSetting a.xtra:hover .faicon {
+ color: #ffa608;
+}
+#xtradiv #xtradivSettings span.xtraSetting a.xtra span.faicon {
+ display: inline;
+ vertical-align: middle;
+ margin-right: 10px;
+}
+
+/*tooltips on survey*/
+.tooltip {
+ position: relative;
+}
+.tooltip .expanded-tooltip {
+ display: none;
+ white-space: normal;
+}
+.tooltip:hover .expanded-tooltip {
+ display: block;
+}
+
+.tooltip.monitor {
+ cursor: pointer;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 19-Jul-2018, 11:23:34
+ Author : podkrizniku
+*/
+#srv_footer {
+ display: flex;
+ justify-content: space-between;
+ box-sizing: border-box;
+ width: 100%;
+ padding: 15px 20px;
+ margin-top: 30px;
+ font-size: 13px;
+ line-height: 22px;
+ background-color: #f5fafe;
+ border-top: 1px solid #c8e3f8;
+}
+#srv_footer .footer_left {
+ text-align: left;
+}
+#srv_footer .footer_right {
+ text-align: left;
+ font-weight: 500;
+}
+#srv_footer .footer_right span.faicon.inline_comment:before {
+ font-size: 18px !important;
+ vertical-align: -2px !important;
+ margin-right: 3px;
+}
+#srv_footer .footer_right span.faicon.external_link:before {
+ font-size: 16px !important;
+ vertical-align: -1px !important;
+ margin-right: 3px;
+}
+
+#srv_news {
+ float: left;
+ width: 250px;
+}
+
+#srv_faq {
+ float: left;
+ width: 250px;
+}
+
+#srv_tutorial {
+ float: left;
+ width: 250px;
+}
+
+#version {
+ width: 100%;
+ text-align: center;
+ clear: both;
+ padding: 20px 0 15px 0;
+ background-color: #f5fafe;
+ font-size: 10px;
+ color: #1e88e5;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 18-Jul-2018, 11:07:46
+ Author : podkrizniku
+*/
+#surveyNavigation {
+ width: auto;
+ height: 60px;
+ padding: 0px;
+ margin: 0px;
+ background-color: #c8e3f8;
+ min-width: 1002px;
+}
+
+#firstNavigation {
+ height: 50px;
+ width: 100%;
+ font-size: 15px;
+ line-height: 26px;
+ text-align: center;
+ padding-top: 10px;
+ /*.separator-left {
+ float: left;
+ height: 38px;
+ width: 2px;
+ }
+ .separator-right {
+ float: left;
+ height: 38px;
+ width: 2px;
+ }*/
+}
+#firstNavigation #mojeAnketeLink a {
+ position: absolute;
+ left: 0;
+ padding: 0 25px;
+ z-index: 10;
+ color: #333;
+ background-color: #c8e3f8;
+ transition: 0.2s;
+}
+#firstNavigation #mojeAnketeLink a span.sprites {
+ margin: 0 7px 3px 0;
+}
+#firstNavigation #mojeAnketeLink a span.library_link {
+ line-height: 50px;
+}
+#firstNavigation #mojeAnketeLink a:hover {
+ background: #dfeffb;
+}
+#firstNavigation #mojeAnketeLink .left-1ka {
+ margin-left: 40px !important;
+ height: 50px;
+}
+#firstNavigation ol {
+ margin: 0px;
+ padding: 0px;
+ display: inline;
+}
+#firstNavigation ol li {
+ display: inline;
+ float: left;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+}
+#firstNavigation ol li #status_link_off {
+ padding: 0 25px;
+ height: 50px;
+ line-height: 50px;
+ color: #333;
+ background-color: #c8e3f8;
+ transition: 0.2s;
+}
+#firstNavigation ol li #status_link_off span.status_link {
+ display: inline-block;
+ margin-right: 5px;
+}
+#firstNavigation ol li #status_link_off span.faicon {
+ margin: 0 10px 0 0;
+ position: relative;
+ top: -2px;
+}
+#firstNavigation ol li #status_link_off:hover {
+ background: #dfeffb;
+}
+#firstNavigation ol li #status_link_on {
+ padding: 5px 25px;
+ color: #333;
+ background-color: #ffffff;
+}
+#firstNavigation ol li #status_link_on span.status_link {
+ display: inline-block;
+ line-height: 40px;
+ margin-right: 5px;
+}
+#firstNavigation ol li #status_link_on span.faicon {
+ margin: 0 10px 0 0;
+ position: relative;
+ top: -2px;
+}
+#firstNavigation ol li a div.smaller-singlebutton-off {
+ line-height: 50px;
+ padding: 0px 25px;
+ background: none;
+ border: 0;
+ background: none;
+ color: #333;
+ transition: 0.2s;
+}
+#firstNavigation ol li a div.smaller-singlebutton-off:hover {
+ background: #dfeffb;
+}
+#firstNavigation ol li a div.smaller-singlebutton-on {
+ line-height: 50px;
+ padding: 0px 25px;
+ background: none;
+ border: 0;
+ background: white;
+ color: #333;
+}
+#firstNavigation ol.left-side.right-space {
+ background-color: #c8e3f8;
+}
+#firstNavigation ol.right-space {
+ margin-left: 182px;
+}
+#firstNavigation ol.left-side {
+ float: left;
+}
+#firstNavigation li.spaceLarge {
+ width: 100px;
+}
+#firstNavigation li.space {
+ width: 10px;
+}
+#firstNavigation ol.smaller {
+ line-height: 26px;
+ margin: 0px 10px 0px 10px;
+}
+#firstNavigation ol.help-1ka {
+ margin-left: 20px !important;
+}
+#firstNavigation ol.help-1ka a {
+ display: inline-block;
+}
+#firstNavigation ol.help-1ka .smaller-singlebutton-off {
+ color: #ffa608 !important;
+ transition: 0.2s;
+}
+#firstNavigation ol.help-1ka .smaller-singlebutton-off:hover {
+ color: #ffb83b !important;
+}
+#firstNavigation ol.help-1ka .smaller-singlebutton-on {
+ color: #ffa608 !important;
+}
+#firstNavigation ol.left-1ka {
+ margin-left: 40px !important;
+}
+#firstNavigation ol.right-side {
+ float: right;
+ margin-right: 20px !important;
+ margin-top: 10px;
+}
+#firstNavigation .left-off {
+ display: none;
+}
+#firstNavigation .left-on {
+ display: none;
+}
+#firstNavigation .right-off {
+ display: none;
+}
+#firstNavigation .right-on {
+ float: left;
+ height: 50px;
+ width: 18px;
+ background-image: url("../../../admin/survey/img_new/sprites.png");
+ background-position: -17px -74px;
+ background-repeat: no-repeat;
+}
+#firstNavigation .step-on {
+ float: left;
+ height: 50px;
+ line-height: 50px;
+ padding: 0px 25px;
+ background-color: #ffffff;
+ color: #333;
+}
+#firstNavigation .step-off {
+ float: left;
+ height: 50px;
+ line-height: 50px;
+ width: auto;
+ padding: 0px 25px;
+ background-color: #c8e3f8;
+ color: #333;
+ transition: 0.2s;
+}
+#firstNavigation .step-off:hover {
+ background: #dfeffb;
+}
+#firstNavigation .separator {
+ height: 38px;
+ width: 2px;
+}
+#firstNavigation ol.quick_settings li {
+ float: right;
+ margin: 4px 5px 0 0;
+}
+#firstNavigation ol.quick_settings li:first-of-type {
+ margin-right: 30px;
+}
+
+#firstNavigation.frontpage {
+ margin-left: 0px;
+ height: 50px;
+ font-size: 15px;
+}
+#firstNavigation.frontpage .sprites {
+ margin: 0 6px 2px 0;
+}
+#firstNavigation.frontpage li.spaceLarge {
+ width: 50px;
+}
+#firstNavigation.frontpage li.spaceBig {
+ width: 2px;
+}
+#firstNavigation.frontpage ol.help-1ka {
+ display: none;
+}
+
+#quick_comments_link.newCss {
+ font-size: 12px;
+ margin-top: 3px !important;
+ margin-right: 5px !important;
+}
+#quick_comments_link.newCss a {
+ margin-right: 0px !important;
+ color: #1e88e5 !important;
+ font-weight: 600;
+}
+#quick_comments_link.newCss a:hover {
+ color: #ffa608 !important;
+}
+#quick_comments_link.newCss a span.comments_blue_off {
+ margin-top: 4px !important;
+}
+#quick_comments_link.newCss a span.comments_orange_off {
+ margin-top: 4px !important;
+}
+#quick_comments_link.newCss a span.comments_blue_on {
+ margin-top: -1px !important;
+}
+#quick_comments_link.newCss a span.comments_orange_on {
+ margin-top: -1px !important;
+}
+
+span.sprites.comments_blue_on {
+ color: #ffffff;
+ font-size: 11px;
+ font-weight: bold;
+ line-height: 12px;
+ text-align: center;
+}
+
+span.sprites.comments_orange_on {
+ color: #ffffff;
+ font-size: 11px;
+ font-weight: bold;
+ line-height: 12px;
+ text-align: center;
+}
+
+div#secondNavigation {
+ display: block;
+ z-index: 1;
+ left: 0px;
+ right: 0px;
+ padding: 8px 20px 0 145px;
+ height: 33px;
+ border-bottom: 1px solid #c8e3f8;
+ background-color: #ffffff;
+}
+
+ul.secondNavigation {
+ display: inline-block;
+ float: left;
+ width: auto;
+ margin-top: 1px !important;
+ margin-bottom: 0;
+}
+
+.secondNavigation {
+ display: inline-block;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+ padding: 0px;
+ width: 100%;
+}
+.secondNavigation li {
+ display: list-item;
+ float: left;
+ padding: 0px;
+ margin: 0px;
+}
+.secondNavigation .blank {
+ height: 12px;
+ width: 6px;
+}
+.secondNavigation .no-img {
+ padding: 0px 12px !important;
+ background-image: none !important;
+}
+.secondNavigation a {
+ display: block;
+ line-height: 30px;
+ font-size: 14px;
+ color: grey;
+}
+.secondNavigation a:hover {
+ border-bottom: 2px solid #ffa608;
+}
+.secondNavigation a.active {
+ color: #ffa608;
+ background-color: inherit;
+ border-bottom: 2px solid #ffa608;
+}
+.secondNavigation .side-left {
+ padding-left: 10px;
+}
+.secondNavigation .side-right {
+ padding-right: 12px;
+}
+.secondNavigation .space {
+ width: 20px;
+ height: 19px;
+ padding: 0px;
+}
+.secondNavigation .single {
+ padding: 0px 12px 0px 24px¸;
+}
+.secondNavigation .single:hover {
+ text-shadow: 0px 1px 0px #fff;
+}
+.secondNavigation .single:active {
+ color: grey;
+}
+
+div#secondNavigation.library {
+ padding-left: 35px;
+}
+div#secondNavigation.library a {
+ font-size: 14px;
+}
+div#secondNavigation.library ul.secondNavigation .space {
+ width: 25px;
+}
+
+#secondNavigation_links {
+ position: relative;
+ float: right;
+ width: auto;
+ margin-top: -7px;
+ line-height: 38px;
+ z-index: 2;
+ text-align: right;
+}
+#secondNavigation_links #hover_export {
+ display: none;
+ position: absolute;
+ z-index: 99999;
+ right: 10px;
+ top: 39px;
+ padding: 5px 0 5px 13px;
+ width: 180px;
+ text-align: left;
+ line-height: normal;
+ background-color: #ffffff;
+ border: 1px #c8e3f8 solid;
+ -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+ box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+ -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.4);
+}
+#secondNavigation_links #hover_export a {
+ display: block;
+ padding: 6px 0;
+ color: #606060;
+ font-size: 14px;
+ transition: 0.2s;
+}
+#secondNavigation_links #hover_export a:hover {
+ color: #ffa608;
+}
+#secondNavigation_links #hover_export span.hover_export_icon {
+ display: inline-block;
+ width: 40px;
+}
+
+ul.secondNavigationArchive {
+ display: inline-block;
+ float: left;
+ width: auto;
+ padding: 0px;
+ margin: 0 0 0 10px !important;
+ padding-left: 23px;
+ padding-top: 0px;
+ font-size: 14px;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+ border-left: 1px dotted #c8e3f8;
+}
+ul.secondNavigationArchive li {
+ display: list-item;
+ padding: 0 12px;
+ float: left;
+ margin: 0px;
+ transition: 0.2s;
+}
+ul.secondNavigationArchive li a {
+ color: grey;
+ line-height: 31px;
+}
+ul.secondNavigationArchive li a.active {
+ color: #ffa608;
+}
+ul.secondNavigationArchive li:hover {
+ border-bottom: 2px solid #ffa608;
+}
+ul.secondNavigationArchive li.aactive {
+ border-bottom: 2px solid #ffa608;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 26-Jul-2018, 13:18:08
+ Author : podkrizniku
+*/
+/* specific classes */
+a.srv_ico {
+ display: inline-block;
+ margin-right: 13px;
+}
+
+/* basic classes */
+span.faicon,
+a.faicon {
+ font-family: "Font Awesome 5 Free";
+ font-size: inherit;
+ color: inherit;
+ display: inline-block;
+ font-weight: 900;
+}
+
+span.faicon.icon-center {
+ text-align: center;
+ width: 100%;
+ height: 100%;
+}
+
+span.faicon.icon-inline {
+ width: auto !important;
+}
+
+/* size classes */
+span.faicon.normal,
+span.faicon.normal::before {
+ font-size: 16px !important;
+}
+
+span.faicon.small,
+span.faicon.small::before {
+ font-size: 14px !important;
+}
+
+span.faicon.smaller,
+span.faicon.smaller::before {
+ font-size: 15px !important;
+}
+
+span.faicon.large,
+span.faicon.large::before {
+ font-size: 18px !important;
+}
+
+span.faicon.very_large,
+span.faicon.very_large::before {
+ font-size: 24px !important;
+}
+
+/* color classes */
+span.faicon.icon-blue {
+ color: #1e88e5 !important;
+}
+
+span.faicon.icon-white {
+ color: #fff !important;
+}
+
+span.faicon.icon-as_link {
+ color: #1e88e5;
+ cursor: pointer;
+}
+span.faicon.icon-as_link:hover {
+ color: #ffa608;
+}
+
+span.icon-as_link {
+ color: #1e88e5;
+ cursor: pointer;
+}
+span.icon-as_link:hover {
+ color: #ffa608;
+}
+
+span.faicon.icon-blue_dark {
+ color: #166dba !important;
+}
+
+span.faicon.icon-blue_light {
+ color: #6cb1ee !important;
+}
+
+span.faicon.icon-orange {
+ color: #ffa608 !important;
+}
+
+span.faicon.icon-orange_hover_red {
+ color: #ffa608 !important;
+}
+span.faicon.icon-orange_hover_red:hover {
+ color: #ff0000 !important;
+}
+
+span.faicon.icon-orange_very_dark {
+ color: #d48800 !important;
+}
+
+span.faicon.icon-blue_soft {
+ color: #c8e3f8 !important;
+}
+
+span.faicon.icon-blue_soft_link {
+ color: #c8e3f8 !important;
+ cursor: pointer;
+}
+span.faicon.icon-blue_soft_link:hover {
+ color: #ffa608 !important;
+}
+
+span.faicon.icon-grey_normal {
+ color: grey !important;
+}
+
+span.faicon.icon-grey_dark_link {
+ color: #606060 !important;
+ cursor: pointer;
+}
+span.faicon.icon-grey_dark_link:hover {
+ color: #ffa608 !important;
+}
+
+span.faicon.icon-grey_dark_link_reverse {
+ color: #ffa608 !important;
+ cursor: pointer;
+}
+span.faicon.icon-grey_dark_link_reverse:hover {
+ color: #606060 !important;
+}
+
+span.faicon.icon-orange_link {
+ color: #ffa608 !important;
+ cursor: pointer;
+}
+span.faicon.icon-orange_link:hover {
+ color: #ee9800 !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Sep-2018
+ Author : Peter Hrvatin
+*/
+/* fa icons for radio button */
+.custom_radio {
+ display: inline-block;
+}
+.custom_radio > label > input[type=radio] {
+ display: none;
+}
+
+input[type=radio] + span.enka-custom-radio {
+ font-family: "Font Awesome 5 Free";
+ font-size: 20px;
+}
+
+.enka-custom-radio::before {
+ letter-spacing: 10px;
+ color: lightgrey;
+}
+.enka-custom-radio.star::before {
+ content: "";
+}
+.enka-custom-radio.thumb::before {
+ content: "";
+}
+.enka-custom-radio.smiley::before {
+ content: "";
+}
+.enka-custom-radio.heart::before {
+ content: "";
+}
+.enka-custom-radio.flag::before {
+ content: "";
+}
+.enka-custom-radio.user::before {
+ content: "";
+}
+
+/* visual analog scale - radio buttons */
+.enka-vizualna-skala::before {
+ font-family: "Font Awesome 5 Free";
+ font-size: 20px;
+ letter-spacing: 10px;
+ color: lightgrey;
+}
+.enka-vizualna-skala.siv-61::before, .enka-vizualna-skala.siv-71::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-41::before, .enka-vizualna-skala.siv-51::before, .enka-vizualna-skala.siv-62::before, .enka-vizualna-skala.siv-72::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-21::before, .enka-vizualna-skala.siv-31::before, .enka-vizualna-skala.siv-42::before, .enka-vizualna-skala.siv-52::before, .enka-vizualna-skala.siv-63::before, .enka-vizualna-skala.siv-73::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-32::before, .enka-vizualna-skala.siv-53::before, .enka-vizualna-skala.siv-74::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-22::before, .enka-vizualna-skala.siv-33::before, .enka-vizualna-skala.siv-43::before, .enka-vizualna-skala.siv-54::before, .enka-vizualna-skala.siv-64::before, .enka-vizualna-skala.siv-75::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-44::before, .enka-vizualna-skala.siv-55::before, .enka-vizualna-skala.siv-65::before, .enka-vizualna-skala.siv-76::before {
+ content: "";
+}
+.enka-vizualna-skala.siv-66::before, .enka-vizualna-skala.siv-77::before {
+ content: "";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Sep-2018
+ Author : Peter Hrvatin
+*/
+/* icons */
+span.faicon.plus::before {
+ content: "";
+}
+
+span.faicon.minus::before {
+ content: "";
+}
+
+span.faicon.close::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.dropdown_blue::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.dropup_blue::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.arrow_back::before {
+ font-weight: 600;
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.add::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.remove::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.delete::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.anketa_delete::before {
+ font-size: 24px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.copy::before {
+ font-size: 18px;
+ content: "";
+ font-weight: 400;
+}
+
+span.faicon.anketa_copy::before {
+ font-size: 24px;
+ content: "";
+ font-weight: 400;
+}
+
+span.faicon.export::before {
+ font-size: 24px;
+ content: "";
+}
+
+/*span.faicon.import::before{
+ font-size: 24px;
+ content: "\f56f";
+}*/
+span.faicon.import {
+ width: 32px;
+}
+
+span.faicon.import::before {
+ font-size: 24px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.import::after {
+ font-size: 14px;
+ content: "";
+ display: inline-block;
+}
+
+span.faicon.library::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.folder::before {
+ font-size: 22px;
+ content: "";
+ vertical-align: middle;
+}
+
+span.faicon.after.sort_down_arrow::after {
+ content: "";
+ margin-left: 5px;
+}
+
+span.faicon.after.sort_up_arrow::after {
+ content: "";
+ margin-left: 5px;
+}
+
+span.faicon.info::before {
+ font-size: 28px;
+ content: "";
+ vertical-align: middle;
+}
+
+span.faicon.pagination_left::before {
+ margin: 0 1px 0 1px;
+ content: "";
+}
+
+span.faicon.pagination_right::before {
+ margin: 0 0 0 1px;
+ content: "";
+}
+
+span.faicon.edit::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.refresh::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.filter::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.star::before,
+span.faicon.star_off::before {
+ font-size: 14px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.star_on::before {
+ font-size: 14px;
+ font-weight: 700;
+ content: "";
+}
+
+span.faicon.search::before {
+ font-size: 20px;
+ content: "";
+}
+
+span.faicon.help2::before {
+ font-size: 20px;
+ content: "";
+}
+
+span.faicon.user::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.logout::before {
+ font-size: 20px;
+ content: "";
+}
+
+span.faicon.monitor::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.users::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.lock_open::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.lock_close::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.bottom_saving::before {
+ font-size: 24px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.bottom_publish::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.bottom_preview {
+ width: 20px;
+}
+
+span.faicon.bottom_preview::before {
+ font-size: 24px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.bottom_preview::after {
+ font-size: 14px;
+ content: "";
+ display: inline-block;
+ margin-left: -70%;
+}
+
+span.faicon.bottom_test::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.language::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.mobile_off::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.mobile_off::after {
+ font-size: 24px;
+ content: "";
+ margin-left: -23px;
+}
+
+span.faicon.comments::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.comments_num::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.comments_num strong {
+ color: white;
+ font-family: Montserrat, sans-serif;
+ margin-top: -2px;
+}
+
+span.faicon.data_link::before {
+ font-size: 20px;
+ content: "";
+}
+
+span.faicon.data_link_small::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.print::before {
+ font-size: 24px;
+ content: "";
+}
+
+span.faicon.print_small::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.preview {
+ width: 18px;
+}
+
+span.faicon.preview::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.preview::after {
+ content: "";
+ display: inline-block;
+ font-size: 11px;
+ margin-left: -50%;
+}
+
+span.faicon.palette::before {
+ font-size: 18px;
+ content: "";
+}
+
+span.faicon.inline_comment::before {
+ font-size: 14px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.inline_double_comment::before {
+ font-size: 14px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.comments_creport::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.compress::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.expand::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.hashtag::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.bug::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.paragraph::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.replace::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.plus_square::before {
+ font-size: 15px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.minus_square::before {
+ font-size: 15px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.delete_circle::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.quick_view::before {
+ font-size: 15px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.edit_square::before {
+ font-size: 15px;
+ content: "";
+}
+
+span.faicon.test::before {
+ font-size: 15px;
+ content: "";
+}
+
+a.faicon.if_add {
+ font-size: 12px;
+ font-family: Montserrat, sans-serif;
+ font-weight: 400;
+}
+a.faicon.if_add:before {
+ background-color: #1e88e5;
+ font-weight: 500;
+ padding: 2px 4px;
+ color: white;
+ content: "IF";
+}
+a.faicon.if_add:hover:before {
+ background-color: #ffa608;
+}
+
+span.faicon.if_add {
+ font-size: 12px;
+ font-family: Montserrat, sans-serif;
+ font-weight: 400;
+}
+span.faicon.if_add:before {
+ background-color: #1e88e5;
+ font-weight: 500;
+ padding: 2px 4px;
+ color: white;
+ content: "IF";
+}
+span.faicon.if_add:hover:before {
+ background-color: #ffa608;
+}
+
+span.faicon.text_file::before {
+ font-size: 24px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.text_file_small {
+ height: 20px;
+ vertical-align: middle;
+}
+span.faicon.text_file_small:before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.warning::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.users_small::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.popup_0::before {
+ font-size: 14px;
+ content: "";
+ color: #c8e3f8;
+}
+
+span.faicon.popup_1::before {
+ font-size: 14px;
+ content: "";
+ color: #1e88e5;
+}
+
+span.faicon.flat_0::before {
+ font-size: 14px;
+ content: "";
+ color: #1e88e5;
+}
+
+span.faicon.flat_1::before {
+ font-size: 14px;
+ content: "";
+ color: #c8e3f8;
+}
+
+span.basic-icon.spss::before {
+ content: "Σ";
+ line-height: 26px;
+ vertical-align: bottom;
+ font-size: 30px !important;
+ font-weight: bold;
+}
+
+span.faicon.external_link::before {
+ font-size: 14px;
+ font-weight: 600;
+ content: "";
+}
+
+span.faicon.cog_large::before {
+ font-size: 34px;
+ font-weight: 600;
+ content: "";
+}
+
+span.faicon.chart_large::before {
+ font-size: 34px;
+ font-weight: 600;
+ content: "";
+}
+
+span.faicon.reload_large::before {
+ font-size: 34px;
+ font-weight: 600;
+ content: "";
+}
+
+/* CALENDAR */
+span.faicon.calendar_icon::before,
+button.ui-datepicker-trigger::before {
+ font-family: "Font Awesome 5 Free";
+ font-weight: 400;
+ font-size: 16px;
+ content: "";
+}
+
+/* ARROWS */
+span.faicon.arrow_up::before {
+ font-size: 14px;
+ content: "";
+ color: #333;
+}
+
+span.faicon.arrow2_r::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.arrow2_l::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.arrow2_d::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.arrow2_u::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.arrow_large2_r::before {
+ font-size: 35px;
+ content: "";
+}
+
+span.faicon.arrow_large2_l::before {
+ font-size: 35px;
+ content: "";
+}
+
+span.faicon.arrow_verylarge2_r::before {
+ font-size: 40px;
+ content: "";
+}
+
+span.faicon.arrow_verylarge2_l::before {
+ font-size: 40px;
+ content: "";
+}
+
+span.faicon.sort_descending::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.sort_ascending::before {
+ font-size: 14px;
+ content: "";
+}
+
+/* Plus/minus sqare */
+span.folder_plusminus {
+ text-indent: 0px !important;
+ font-style: normal !important;
+}
+
+span.faicon.plus_orange::before {
+ font-size: 12px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.minus_orange::before {
+ font-size: 12px;
+ font-weight: 400;
+ content: "";
+}
+
+/* Spinner */
+span.faicon.spinner::before {
+ font-size: 18px;
+ content: "";
+}
+
+/* Bars - mobile menu */
+span.faicon.bars::before {
+ font-size: 26px;
+ content: "";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Sep-2018
+ Author : Peter Hrvatin
+*/
+/* NAPREDNI MODULI */
+span.module_icon {
+ padding: 0 6px;
+ color: white;
+ font-weight: 600;
+ font-size: 17px;
+ background-color: #ffb83b;
+ border: 2px #ffa608 solid;
+}
+
+span.module_icon.maza::before {
+ content: "MAZA";
+}
+
+span.module_icon.wpn::before {
+ content: "WPN";
+}
+
+span.module_icon.panel::before {
+ content: "Panel";
+}
+
+span.module_icon.telephone::before {
+ content: "TEL";
+}
+
+span.module_icon.slideshow::before {
+ content: "SS";
+}
+
+span.module_icon.evalvation::before {
+ content: "EVAL";
+}
+
+span.module_icon.vnos::before {
+ content: "V";
+}
+
+span.module_icon.social::before {
+ content: "SN";
+}
+
+span.module_icon.quiz::before {
+ content: "Q";
+}
+
+span.module_icon.voting::before {
+ content: "VOTE";
+}
+
+span.module_icon.advanced_paradata::before {
+ content: "AP";
+}
+
+span.module_icon.chat::before {
+ content: "C";
+}
+
+span.module_icon.degrees_1ka::before {
+ content: "360";
+}
+
+span.module_icon.mju::before {
+ content: "H";
+}
+
+span.module_icon.sa-hierarhija::before {
+ content: "SA";
+}
+
+span.module_icon.degrees::before {
+ content: "360";
+}
+
+span.module_icon.borza::before {
+ content: "Borza";
+}
+
+span.module_icon.evoli::before {
+ content: "Evoli";
+}
+
+span.module_icon.evoli_teammeter::before {
+ content: "Evoli TM";
+}
+
+span.module_icon.evoli_quality_climate::before {
+ content: "Evoli QC";
+}
+
+span.module_icon.evoli_teamship_meter::before {
+ content: "Evoli TSM";
+}
+
+span.module_icon.evoli_organizational_employeeship_meter::before {
+ content: "Evoli OEM";
+}
+
+span.module_icon.evoli_employmeter::before {
+ content: "Evoli EM";
+}
+
+span.module_icon.excell_matrix::before {
+ content: "EM";
+}
+
+span.module_icon.mfdps::before {
+ content: "MFDPS";
+}
+
+span.module_icon.mju::before {
+ content: "MJU";
+}
+
+span.module_icon.gdpr {
+ color: #6cb1ee;
+ background-color: #c8e3f8;
+ border: 2px #6cb1ee solid;
+}
+span.module_icon.gdpr:hover {
+ color: #1e88e5;
+ border: 2px #1e88e5 solid;
+}
+
+span.module_icon.gdpr.active {
+ color: white;
+ background-color: #1e88e5;
+ border: 2px #1e88e5 solid;
+}
+span.module_icon.gdpr.active:hover {
+ color: white;
+ border: 2px #1e88e5 solid;
+}
+
+span.module_icon.gdpr::before {
+ content: "GDPR";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Sep-2018
+ Author : Peter Hrvatin
+*/
+/* Toolbox na levi strani */
+span.faicon.wheel_32::before {
+ content: "";
+ font-size: 20px;
+}
+
+span.faicon.radio_32::before {
+ content: "";
+ font-weight: 400;
+ font-size: 18px;
+}
+
+span.faicon.check_32::before {
+ content: "";
+ font-weight: 400;
+ font-size: 18px;
+}
+
+span.faicon.matrix_32::before {
+ content: "\a";
+ white-space: pre;
+ font-weight: 400;
+ font-size: 12px;
+}
+
+span.faicon.abc_32::before {
+ content: "ABC";
+ font-family: Montserrat, sans-serif;
+ font-size: 16px;
+}
+
+span.faicon.number_32::before {
+ content: "123";
+ font-family: Montserrat, sans-serif;
+ font-size: 16px;
+}
+
+span.faicon.nagovor::before {
+ content: "T";
+ font-size: 18px;
+}
+
+span.faicon.plus_32::before {
+ content: "";
+ font-size: 18px;
+}
+
+span.faicon.if_32::before {
+ content: "IF";
+ font-family: Montserrat, sans-serif;
+ font-size: 16px;
+}
+
+span.faicon.block_32::before {
+ content: "B";
+ font-family: Montserrat, sans-serif;
+ font-size: 16px;
+}
+
+span.faicon.loop_32::before {
+ content: "L";
+ font-family: Montserrat, sans-serif;
+ font-size: 15px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Sep-2018
+ Author : Peter Hrvatin
+*/
+/* question editing icons */
+a.faicon {
+ color: #1e88e5 !important;
+}
+a.faicon:hover {
+ color: #ffa608 !important;
+}
+
+span.faicon.edit-vprasanje {
+ line-height: 25px;
+}
+span.faicon.edit-vprasanje:before {
+ font-size: 18px;
+ content: "";
+}
+
+a.faicon.edit::before {
+ font-size: 16px;
+ content: "";
+}
+
+a.faicon.addif::before {
+ font-family: Montserrat, sans-serif;
+ font-size: 18px;
+ font-weight: 900;
+ content: "IF";
+}
+
+a.faicon.copy::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+a.faicon.copycond::before {
+ font-size: 18px;
+ content: "";
+}
+
+a.faicon.preview::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+a.faicon.preview::after {
+ content: "";
+ display: inline-block;
+ font-size: 11px;
+ margin-left: -50%;
+}
+
+a.faicon.arhiv::before {
+ font-size: 18px;
+ content: "";
+}
+
+a.faicon.delete::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+a.faicon.hide::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+a.faicon.unhide_icon::before {
+ font-size: 18px;
+ font-weight: 400;
+ content: "";
+}
+
+/* Urejanje vrednosti inline */
+.variabla span.inline.faicon::before {
+ color: #c8e3f8;
+}
+
+.variabla span.inline.faicon:hover::before {
+ color: #1e88e5;
+}
+
+.variabla span.inline.faicon.edit2::before {
+ font-size: 14px;
+ content: "";
+}
+
+.variabla span.inline.faicon.odg_hidden::before {
+ font-size: 14px;
+ content: "";
+}
+
+.variabla span.inline.faicon.odg_hidden.show-hidden::before {
+ color: #ff0000;
+}
+
+.variabla span.inline.faicon.odg_hidden.show-disable::before {
+ color: #ffa608;
+}
+
+.variabla span.inline.faicon.odg_if_not::before {
+ font-family: Montserrat, sans-serif;
+ font-size: 15px;
+ font-weight: 900;
+ content: "IF*";
+}
+
+.variabla span.inline.faicon.odg_if_follow::before {
+ font-family: Montserrat, sans-serif;
+ font-size: 15px;
+ font-weight: 900;
+ content: "IF🠞";
+}
+
+.variabla span.inline.faicon.correct::before {
+ font-size: 14px;
+ font-weight: 900;
+ content: "";
+}
+
+.variabla span.inline.faicon.move_updown::before {
+ font-size: 16px;
+ color: #1e88e5;
+ content: "";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 7-Okt-2018
+ Author : Peter Hrvatin
+*/
+/* Knjiznica */
+span.faicon.mapca.anketa::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.table::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.other_vprasanja::before {
+ font-size: 16px;
+ content: "" !important;
+}
+
+span.faicon.osnovna_vprasanja::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.mapca.if::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 500;
+ font-size: 16px;
+ content: "IF";
+}
+
+span.faicon.mapca.b::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 500;
+ font-size: 16px;
+ content: "B";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 8-Okt-2018
+ Author : Peter Hrvatin
+*/
+/* Izvozi */
+span.faicon.pdf::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+ color: #ed1c24;
+}
+
+span.faicon.pdf.black {
+ color: #606060 !important;
+}
+span.faicon.pdf.black:hover {
+ color: #ed1c24 !important;
+}
+
+a:hover span.faicon.pdf.black {
+ color: #ed1c24 !important;
+}
+
+span.faicon.pdf.black::before {
+ color: inherit !important;
+}
+
+span.faicon.xls::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+ color: #008000;
+}
+
+span.faicon.xls.black {
+ color: #606060 !important;
+}
+span.faicon.xls.black:hover {
+ color: #008000 !important;
+}
+
+a:hover span.faicon.xls.black {
+ color: #008000 !important;
+}
+
+span.faicon.xls.black::before {
+ color: inherit !important;
+}
+
+span.faicon.rtf::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+ color: #0f3ea8;
+}
+
+span.faicon.rtf.black {
+ color: #606060 !important;
+}
+span.faicon.rtf.black:hover {
+ color: #0f3ea8 !important;
+}
+
+a:hover span.faicon.rtf.black {
+ color: #0f3ea8 !important;
+}
+
+span.faicon.rtf.black::before {
+ color: inherit !important;
+}
+
+span.faicon.ppt::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+ color: #fa4913;
+}
+
+span.faicon.ppt.black {
+ color: #606060 !important;
+}
+span.faicon.ppt.black:hover {
+ color: #fa4913 !important;
+}
+
+a:hover span.faicon.ppt.black {
+ color: #fa4913 !important;
+}
+
+span.faicon.ppt.black::before {
+ color: inherit !important;
+}
+
+span.faicon.xml::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+ color: #00a000;
+}
+
+span.faicon.xml.black {
+ color: #606060 !important;
+}
+span.faicon.xml.black:hover {
+ color: #00a000 !important;
+}
+
+a:hover span.faicon.xml.black {
+ color: #00a000 !important;
+}
+
+span.faicon.xml.black::before {
+ color: inherit !important;
+}
+
+span.faicon.arhiv::before {
+ font-size: 16px;
+ content: "";
+}
+
+span.faicon.arhiv_mail::before {
+ font-size: 16px;
+ font-weight: 400;
+ content: "";
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Okt-2018
+ Author : Peter Hrvatin
+*/
+/* Analiza */
+span.faicon.an_sigma::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 700;
+ content: "Σ";
+ vertical-align: middle;
+}
+
+span.faicon.an_sigmax::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 700;
+ content: "Σ*";
+ vertical-align: middle;
+ margin-left: 3px;
+}
+
+span.faicon.an_freq::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 700;
+ font-style: italic;
+ content: "f";
+ vertical-align: middle;
+ margin-left: 3px;
+}
+
+span.faicon.an_freqx::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 700;
+ font-style: italic;
+ content: "f*";
+ vertical-align: middle;
+ margin-left: 3px;
+}
+
+span.faicon.an_stat::before {
+ font-family: Montserrat, sans-serif;
+ font-weight: 700;
+ font-style: italic;
+ content: "s";
+ vertical-align: middle;
+ margin-left: 3px;
+}
+
+span.faicon.an_chart_bar::before {
+ font-size: 14px;
+ font-weight: 700;
+ /*content: "\f080";*/
+ content: "";
+ margin-left: 3px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Okt-2018
+ Author : Peter Hrvatin
+*/
+/* Invitation table */
+span.faicon.inv_sent_0::before {
+ font-size: 14px;
+ content: "";
+ font-weight: 400;
+}
+
+span.faicon.inv_sent_1::before {
+ font-size: 14px;
+ content: "";
+}
+
+span.faicon.inv_responded_0::before {
+ font-size: 14px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.inv_responded_1::before {
+ font-size: 14px;
+ font-weight: 700;
+ content: "";
+}
+
+span.faicon.inv_unsubscribed_0::before {
+ font-size: 14px;
+ font-weight: 400;
+ content: "";
+}
+
+span.faicon.inv_unsubscribed_1::before {
+ font-size: 14px;
+ font-weight: 700;
+ content: "";
+ color: #ff0000;
+}
+
+/*
+ Created on : 15-05-2020
+ Author : Peter Hrvatin
+
+ Vsi popupi v admin vmesniku
+*/
+/*
+ Popupi - splosno
+*/
+#fade {
+ display: none;
+ position: fixed;
+ z-index: 79;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background-color: rgba(0, 0, 0, 0.75);
+}
+#fade .popup_holder {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+ height: 100%;
+ /* basic popup */
+}
+#fade .popup_holder #fullscreen {
+ display: none;
+ position: relative;
+ z-index: 81;
+}
+#fade .popup_holder .divPopUp {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ position: relative;
+}
+#fade .popup_holder .divPopUp .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#fade .popup_holder .divPopUp .popup_close:hover {
+ color: #1e88e5;
+}
+#fade .popup_holder .divPopUp .popup_close a {
+ color: lightgrey;
+}
+#fade .popup_holder .divPopUp .popup_close a:hover {
+ color: #1e88e5;
+}
+#fade .popup_holder .divPopUp h2,
+#fade .popup_holder .divPopUp .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#fade .popup_holder .divPopUp p {
+ line-height: 20px;
+}
+#fade .popup_holder .divPopUp.popup_violet, #fade .popup_holder .divPopUp#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a, #fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a:hover, #fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a.ovalbutton_gray, #fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#fade .popup_holder .divPopUp.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, #fade .popup_holder .divPopUp#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#fade .popup_holder .divPopUp.popup_orange, #fade .popup_holder .divPopUp#surveyTrajanje, #fade .popup_holder .divPopUp#dropped_alert, #fade .popup_holder .divPopUp#check_pogoji {
+ border-left: 6px #ffa608 solid !important;
+}
+#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a, #fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a, #fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a, #fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a:hover, #fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a:hover, #fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a:hover, #fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a.ovalbutton_gray, #fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a.ovalbutton_gray, #fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a.ovalbutton_gray, #fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#fade .popup_holder .divPopUp.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, #fade .popup_holder .divPopUp#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover, #fade .popup_holder .divPopUp#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover, #fade .popup_holder .divPopUp#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#fade .popup_holder .divPopUp.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#fade .popup_holder .divPopUp.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#fade .popup_holder .divPopUp .buttons_holder {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+#fade .popup_holder .divPopUp div.divPopUp_top {
+ display: inline-block;
+ height: auto;
+ top: 0;
+ left: 0;
+ right: 0;
+}
+#fade .popup_holder .divPopUp div.divPopUp_content {
+ height: 100%;
+}
+#fade .popup_holder .divPopUp div.divPopUp_btm {
+ display: inline-block;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ width: 100%;
+ height: auto;
+ padding: 20px 0px 0px 0px !important;
+ margin-right: 0;
+ margin-bottom: 0;
+}
+
+/* Generic popup */
+#popup_note {
+ display: none;
+ max-width: 600px !important;
+}
+#popup_note .popup_content {
+ margin-bottom: 40px;
+ line-height: 24px;
+}
+
+#clipboard {
+ position: fixed;
+ top: 10px;
+ left: 50%;
+ margin-left: -180px;
+ width: 340px;
+ background-color: #1e88e5;
+ color: white;
+ padding: 5px 10px 5px 10px;
+ z-index: 1000;
+ display: none;
+}
+#clipboard p {
+ margin: 0;
+}
+#clipboard a {
+ color: white;
+}
+
+#request_help_content a {
+ padding-left: 0 !important;
+ font-weight: 600 !important;
+ color: #1e88e5 !important;
+}
+#request_help_content a:hover {
+ color: #ffa608 !important;
+}
+
+/*active editors*/
+.active-alert {
+ position: fixed;
+ top: 0;
+ right: 0;
+ background-color: #efefef;
+ padding: 1px 10px;
+ border-left: 1px solid #990000;
+ border-bottom: 1px solid #990000;
+ z-index: 10;
+}
+
+span.active-editors {
+ color: grey;
+ font-weight: normal;
+}
+
+#div_float_editing {
+ display: none;
+ min-height: 350px;
+ max-height: 600px;
+ overflow: auto;
+ width: 702px;
+}
+
+#div_float_editing_inner {
+ border: 1px solid yellow;
+ overflow: auto;
+ min-height: 150px;
+ height: 489px;
+ max-height: 650px;
+}
+
+#div_error {
+ padding: 10px;
+ margin: 3px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#div_error ul {
+ list-style: square inside;
+}
+#div_error li {
+ padding-bottom: 5px;
+}
+#div_error img {
+ margin-right: 5px;
+}
+
+.alert_authors {
+ display: block;
+ text-indent: 30px;
+}
+
+.alert_textarea {
+ border: 1px solid silver;
+ background-color: grey;
+}
+
+#invisible-layer {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 9999999;
+}
+
+#invisible-close {
+ z-index: 99999999;
+ cursor: pointer;
+ top: 15px;
+ right: 20% !important;
+ position: absolute;
+ width: auto;
+ padding: 5px 25px;
+ font-size: 15px !important;
+ font-weight: 500 !important;
+ color: #1e88e5;
+ text-transform: uppercase;
+ background-color: #f5fafe;
+ background-image: none;
+ border: 2px solid #1e88e5;
+}
+#invisible-close:hover {
+ color: #ffa608;
+ border-color: #ffa608;
+}
+
+#cookie_alert {
+ position: absolute;
+ right: 10px;
+ top: 80px;
+ width: 300px;
+ background-color: #fff0d4 !important;
+ border: 1px solid #ffa608;
+}
+#cookie_alert span {
+ display: block;
+ padding-bottom: 7px;
+}
+#cookie_alert a {
+ font-weight: 500;
+}
+
+#ie_alert {
+ position: absolute;
+ top: -30px;
+ width: 100%;
+ padding: 7px 0;
+ z-index: 9999;
+ background-color: #fff0d4;
+ border-top: #d48800 1px solid;
+ border-bottom: #d48800 1px solid;
+ text-align: center;
+ font-weight: bold;
+}
+
+#pasteFromWordAlert {
+ display: none;
+ bottom: 15%;
+ left: 50%;
+ z-index: 99999;
+ position: fixed;
+ margin-left: -100px;
+ padding: 3px 15px;
+ text-align: center;
+ font-weight: normal;
+ font-size: 13px;
+ line-height: 30px;
+ color: #333;
+ background-color: #ffdda1;
+ border: 1px solid #ffa608;
+}
+
+#alternativno-obvestilo.error {
+ color: #ee9800;
+}
+
+#alternativno-obvestilo.success {
+ color: #1e88e5;
+}
+
+/*
+ Loading okna
+*/
+body.wait #loading {
+ display: block;
+}
+
+body.waitlong #loading {
+ bottom: auto;
+ top: 45%;
+ left: 50%;
+ transform: translateX(-50%);
+ padding: 15px 25px;
+ border: 1px solid #1e88e5;
+}
+
+/*loading word at bottom left*/
+#loading {
+ display: none;
+ z-index: 900;
+ position: fixed;
+ bottom: 0px;
+ left: 0px;
+ padding: 7px 12px;
+ line-height: 20px;
+ font-size: 13px;
+ background-color: #dfeffb;
+ border-top: 1px solid #1e88e5;
+ border-right: 1px solid #1e88e5;
+}
+
+/*
+ Qtip vprasajcek popup in tooltip
+*/
+.qtip {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ padding: 15px !important;
+}
+.qtip .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+.qtip .popup_close:hover {
+ color: #1e88e5;
+}
+.qtip .popup_close a {
+ color: lightgrey;
+}
+.qtip .popup_close a:hover {
+ color: #1e88e5;
+}
+.qtip h2,
+.qtip .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+.qtip p {
+ line-height: 20px;
+}
+.qtip.popup_violet, .qtip#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+.qtip.popup_violet div.buttonwrapper a, .qtip#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.qtip.popup_violet div.buttonwrapper a:hover, .qtip#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+.qtip.popup_violet div.buttonwrapper a.ovalbutton_gray, .qtip#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+.qtip.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, .qtip#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+.qtip.popup_orange, .qtip#surveyTrajanje, .qtip#dropped_alert, .qtip#check_pogoji {
+ border-left: 6px #ffa608 solid !important;
+}
+.qtip.popup_orange div.buttonwrapper a, .qtip#surveyTrajanje div.buttonwrapper a, .qtip#dropped_alert div.buttonwrapper a, .qtip#check_pogoji div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+.qtip.popup_orange div.buttonwrapper a:hover, .qtip#surveyTrajanje div.buttonwrapper a:hover, .qtip#dropped_alert div.buttonwrapper a:hover, .qtip#check_pogoji div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+.qtip.popup_orange div.buttonwrapper a.ovalbutton_gray, .qtip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray, .qtip#dropped_alert div.buttonwrapper a.ovalbutton_gray, .qtip#check_pogoji div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+.qtip.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, .qtip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover, .qtip#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover, .qtip#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+.qtip.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+.qtip.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+.qtip.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+.qtip.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+.qtip.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+.qtip .qtip-tip {
+ display: none !important;
+}
+.qtip .qtip-wrapper {
+ border: 0 !important;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper {
+ border: 0 !important;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title {
+ padding: 0 !important;
+ /*margin-top: 10px;*/
+ color: black !important;
+ font-size: 14px;
+ font-weight: 600;
+ background-color: white !important;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button {
+ position: absolute !important;
+ top: 0px;
+ right: 0px;
+ font-size: 25px !important;
+ line-height: 18px;
+ color: lightgrey;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-title .qtip-button:hover {
+ color: #1e88e5;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content {
+ overflow: visible !important;
+ padding: 0 !important;
+ margin-top: 10px;
+ font-size: 12px;
+ background-color: white !important;
+ border: 0;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content textarea {
+ box-sizing: border-box;
+}
+.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content .qtip-help {
+ margin-top: -10px;
+ padding-right: 30px;
+ line-height: 20px;
+}
+.qtip .qtip-borderTop, .qtip .qtip-borderBottom {
+ display: none !important;
+}
+
+/* toostip popups */
+.expanded-tooltip {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ top: -45px;
+ left: -25px;
+ z-index: 99999;
+ position: absolute;
+ display: block;
+ margin: 0;
+ width: 200px;
+ height: 29px;
+ padding-bottom: 10px;
+ /*color: $grey_super_dark !important;
+ background-color: $soft_blue_very_lighten;
+ border: 1px solid $soft_blue;
+ padding: 10px 10px 0 10px;*/
+ background-color: white;
+ text-align: center;
+ font-weight: normal;
+ font-size: 11px;
+ line-height: 14px;
+}
+.expanded-tooltip .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+.expanded-tooltip .popup_close:hover {
+ color: #1e88e5;
+}
+.expanded-tooltip .popup_close a {
+ color: lightgrey;
+}
+.expanded-tooltip .popup_close a:hover {
+ color: #1e88e5;
+}
+.expanded-tooltip h2,
+.expanded-tooltip .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+.expanded-tooltip p {
+ line-height: 20px;
+}
+.expanded-tooltip.popup_violet, .expanded-tooltip#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+.expanded-tooltip.popup_violet div.buttonwrapper a, .expanded-tooltip#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.expanded-tooltip.popup_violet div.buttonwrapper a:hover, .expanded-tooltip#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+.expanded-tooltip.popup_violet div.buttonwrapper a.ovalbutton_gray, .expanded-tooltip#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+.expanded-tooltip.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, .expanded-tooltip#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+.expanded-tooltip.popup_orange, .expanded-tooltip#surveyTrajanje, .expanded-tooltip#dropped_alert, .expanded-tooltip#check_pogoji {
+ border-left: 6px #ffa608 solid !important;
+}
+.expanded-tooltip.popup_orange div.buttonwrapper a, .expanded-tooltip#surveyTrajanje div.buttonwrapper a, .expanded-tooltip#dropped_alert div.buttonwrapper a, .expanded-tooltip#check_pogoji div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+.expanded-tooltip.popup_orange div.buttonwrapper a:hover, .expanded-tooltip#surveyTrajanje div.buttonwrapper a:hover, .expanded-tooltip#dropped_alert div.buttonwrapper a:hover, .expanded-tooltip#check_pogoji div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+.expanded-tooltip.popup_orange div.buttonwrapper a.ovalbutton_gray, .expanded-tooltip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray, .expanded-tooltip#dropped_alert div.buttonwrapper a.ovalbutton_gray, .expanded-tooltip#check_pogoji div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+.expanded-tooltip.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, .expanded-tooltip#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover, .expanded-tooltip#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover, .expanded-tooltip#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+.expanded-tooltip.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+.expanded-tooltip.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+.expanded-tooltip.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+.expanded-tooltip.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+.expanded-tooltip.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+.expanded-tooltip a {
+ font-weight: 600 !important;
+}
+.expanded-tooltip a.close {
+ color: #333;
+ float: right;
+}
+.expanded-tooltip span.arrow {
+ display: none;
+ display: block;
+ height: 18px;
+ left: 50%;
+ top: 35px;
+ overflow: hidden;
+ position: absolute;
+ width: 60px;
+ margin-left: -30px;
+}
+.expanded-tooltip span.arrow:after {
+ background-color: white;
+ border: 2px solid white;
+ content: "";
+ height: 25px;
+ left: 15px;
+ position: absolute;
+ top: -20px;
+ width: 25px;
+ -webkit-box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
+ -moz-box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
+ box-shadow: 6px 5px 9px -9px black, 5px 6px 9px -9px black;
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ -o-transform: rotate(45deg);
+}
+
+.expanded-tooltip.bottom {
+ text-align: left;
+ left: -100px;
+ top: 35px;
+ background-color: white;
+ height: auto;
+ z-index: 99999;
+}
+.expanded-tooltip.bottom span.arrow {
+ top: -18px;
+}
+.expanded-tooltip.bottom span.arrow:after {
+ background-color: white;
+ top: 10px;
+ -webkit-box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
+ -moz-box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
+ box-shadow: -6px -5px 9px -9px black, -5px -6px 9px -9px black;
+}
+
+.expanded-tooltip.light {
+ /*background-color: $soft_blue_very_lighten;
+
+ span.arrow {
+ &:after {
+ background-color: $soft_blue_very_lighten;
+ }
+ }*/
+}
+
+#request_help_content.expanded-tooltip {
+ /*left: -85px;*/
+}
+
+#tooltip_preview_content.expanded-tooltip {
+ /*left: -90px;*/
+ top: 33px;
+}
+
+#baseSurveyInfoImg .expanded-tooltip {
+ width: 400px;
+ left: -38px;
+}
+#baseSurveyInfoImg .expanded-tooltip span.arrow {
+ left: 12%;
+}
+
+/*
+ Popupi z nastavitvami
+*/
+/* Survey title edit */
+#quick_title_edit {
+ position: relative;
+ width: 720px;
+ height: 265px;
+}
+#quick_title_edit .quick_title_edit_label {
+ width: 145px;
+ font-weight: 600;
+}
+
+/* Nastavitve grafov */
+#div_chart_settings_profiles {
+ display: none;
+ position: relative;
+ z-index: 90;
+ width: 650px;
+ height: 420px;
+ padding: 10px;
+}
+#div_chart_settings_profiles .as_link {
+ color: #1e88e5 !important;
+}
+#div_chart_settings_profiles #chart_skin_note {
+ width: auto;
+ padding: 3px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f0f7fd;
+}
+#div_chart_settings_profiles #chart_settings_profiles_left {
+ float: left;
+ width: 30%;
+ height: 200px;
+}
+#div_chart_settings_profiles #chart_settings_profiles_right {
+ padding: 20px;
+ width: 60%;
+ float: right;
+}
+
+/* popup edit chart */
+#chart_float_editing {
+ display: none;
+ position: relative;
+ z-index: 999;
+ width: 815px;
+ padding: 0 20px;
+}
+#chart_float_editing .chartSettingsArea {
+ position: absolute;
+ overflow: auto;
+ right: 20px;
+ width: 615px;
+ height: 300px;
+ padding: 20px;
+ margin: 0 0 40px 0;
+ background-color: #dfeffb;
+}
+#chart_float_editing .chartSettingsArea ul.vrednost_sort li {
+ border: 1px solid grey;
+}
+#chart_float_editing .chartSettingsArea .chart_setting {
+ padding: 5px;
+}
+#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul {
+ padding: 3px 20px;
+}
+#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li {
+ padding: 2px 0px 3px 0px;
+}
+#chart_float_editing .chartSettingsArea #chart_number_limits_advanced ul li .chart_advanced_warning {
+ padding: 0px 10px;
+ color: red;
+}
+#chart_float_editing .chartSettingsTabs {
+ position: absolute;
+ width: 160px;
+ height: 260px;
+ padding: 0px;
+ font-size: 13px;
+ font-weight: 500;
+ text-align: center;
+ background-color: white;
+}
+#chart_float_editing .chartSettingsTabs ul {
+ padding: 0;
+ margin: 0;
+ list-style-type: none;
+}
+#chart_float_editing .chartSettingsTabs ul li {
+ width: 100%;
+ height: 20px;
+ padding: 10px 0;
+ cursor: pointer;
+}
+#chart_float_editing .chartSettingsTabs ul li.active {
+ background-color: #dfeffb;
+}
+#chart_float_editing .form-item {
+ padding: 3px;
+ width: 200px;
+}
+#chart_float_editing .colorwell {
+ width: 70px;
+ height: 20px;
+ font-size: 11px;
+}
+
+/*color picker*/
+.farbtastic {
+ position: relative;
+ width: 195px;
+ height: 195px;
+}
+.farbtastic * {
+ position: absolute;
+ cursor: crosshair;
+}
+.farbtastic .wheel {
+ width: 195px;
+ height: 195px;
+ background: url(../../../admin/survey/img_0/wheel.png) no-repeat;
+ width: 195px;
+ height: 195px;
+}
+.farbtastic .color {
+ top: 47px;
+ left: 47px;
+ width: 101px;
+ height: 101px;
+}
+.farbtastic .overlay {
+ top: 47px;
+ left: 47px;
+ width: 101px;
+ height: 101px;
+ background: url(../../../admin/survey/img_0/mask.png) no-repeat;
+}
+.farbtastic .marker {
+ width: 17px;
+ height: 17px;
+ margin: -8px 0 0 -8px;
+ overflow: hidden;
+ background: url(../../../admin/survey/img_0/marker.png) no-repeat;
+}
+
+#div_variable_profiles {
+ z-index: 90;
+}
+
+#divConditionProfiles {
+ width: 1035px;
+}
+
+/* Calculation edit */
+#calculation {
+ display: none;
+ position: relative;
+ z-index: 91;
+ margin-left: auto;
+ margin-right: auto;
+ height: auto;
+ width: 600px;
+}
+#calculation #calculation_editing_inner {
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ margin-bottom: 40px;
+ overflow: auto;
+}
+#calculation #condition_editing_close {
+ float: right;
+ margin: 20px 20px 20px 0;
+}
+#calculation #bottom_space {
+ bottom: 0;
+ left: 0;
+ position: absolute;
+ right: 0;
+ padding: 0;
+}
+
+/*
+ Popupi z alerti
+*/
+#check_pogoji {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ width: 340px;
+}
+#check_pogoji .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#check_pogoji .popup_close:hover {
+ color: #1e88e5;
+}
+#check_pogoji .popup_close a {
+ color: lightgrey;
+}
+#check_pogoji .popup_close a:hover {
+ color: #1e88e5;
+}
+#check_pogoji h2,
+#check_pogoji .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#check_pogoji p {
+ line-height: 20px;
+}
+#check_pogoji.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#check_pogoji.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#check_pogoji.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#check_pogoji.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#check_pogoji.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#check_pogoji.popup_orange, #check_pogoji {
+ border-left: 6px #ffa608 solid !important;
+}
+#check_pogoji.popup_orange div.buttonwrapper a, #check_pogoji div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#check_pogoji.popup_orange div.buttonwrapper a:hover, #check_pogoji div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#check_pogoji.popup_orange div.buttonwrapper a.ovalbutton_gray, #check_pogoji div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#check_pogoji.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, #check_pogoji div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#check_pogoji.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#check_pogoji.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#check_pogoji.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#check_pogoji.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#check_pogoji.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#dropped_alert {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ min-height: 30px;
+ width: 300px;
+}
+#dropped_alert .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#dropped_alert .popup_close:hover {
+ color: #1e88e5;
+}
+#dropped_alert .popup_close a {
+ color: lightgrey;
+}
+#dropped_alert .popup_close a:hover {
+ color: #1e88e5;
+}
+#dropped_alert h2,
+#dropped_alert .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#dropped_alert p {
+ line-height: 20px;
+}
+#dropped_alert.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#dropped_alert.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#dropped_alert.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#dropped_alert.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#dropped_alert.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#dropped_alert.popup_orange, #dropped_alert {
+ border-left: 6px #ffa608 solid !important;
+}
+#dropped_alert.popup_orange div.buttonwrapper a, #dropped_alert div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#dropped_alert.popup_orange div.buttonwrapper a:hover, #dropped_alert div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#dropped_alert.popup_orange div.buttonwrapper a.ovalbutton_gray, #dropped_alert div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#dropped_alert.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, #dropped_alert div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#dropped_alert.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#dropped_alert.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#dropped_alert.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#dropped_alert.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#dropped_alert.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#alert_close_block {
+ display: none;
+ min-height: 30px;
+ width: 500px;
+}
+
+/* Popup z obvestilom, da je funkcionalnost onemogocena in je potrebno kupiti paket */
+#popup_user_access {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: relative;
+ z-index: 9999;
+ height: auto;
+ width: 450px;
+}
+#popup_user_access .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#popup_user_access .popup_close:hover {
+ color: #1e88e5;
+}
+#popup_user_access .popup_close a {
+ color: lightgrey;
+}
+#popup_user_access .popup_close a:hover {
+ color: #1e88e5;
+}
+#popup_user_access h2,
+#popup_user_access .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#popup_user_access p {
+ line-height: 20px;
+}
+#popup_user_access.popup_violet, #popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+#popup_user_access.popup_violet div.buttonwrapper a, #popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#popup_user_access.popup_violet div.buttonwrapper a:hover, #popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#popup_user_access.popup_violet div.buttonwrapper a.ovalbutton_gray, #popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#popup_user_access.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, #popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#popup_user_access.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#popup_user_access.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#popup_user_access.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#popup_user_access.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#popup_user_access.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#popup_user_access.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#popup_user_access.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#popup_user_access.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#popup_user_access.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#popup_user_access.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#popup_user_access div.buttonwrapper a {
+ margin-top: 10px;
+}
+#popup_user_access p {
+ margin-top: 0;
+ font-size: 13px;
+ font-weight: 500;
+}
+
+/*
+ Popupi z errorji
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Aug-2018, 10:31:31
+ Author : podkrizniku
+*/
+#dsp_div {
+ display: none;
+ position: relative;
+ z-index: 90;
+}
+
+#dsp_cover_div {
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ width: 100%;
+ height: 100%;
+ background: #c8e3f8;
+ opacity: 0.4;
+ z-index: 10;
+ display: none;
+}
+
+#dsp_profiles_left {
+ width: 192px;
+ float: left;
+}
+
+#dsp_profiles_right {
+ float: right;
+ width: 490px;
+ padding: 0 0 10px 10px;
+ margin-bottom: 40px;
+ background-color: #feffff;
+}
+
+#dsp_profiles_holder {
+ width: 190px;
+ height: 150px;
+ display: inline-block;
+}
+
+#dsp_profiles {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+ display: inline-block;
+}
+#dsp_profiles .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#dsp_profiles .active {
+ padding: 2px 5px;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#dsp_note {
+ width: 450px;
+ padding: 3px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#dsp_content {
+ width: auto;
+ min-height: 80px;
+ padding: 0;
+}
+#dsp_content fieldset {
+ margin: 0px 0px 5px 0px;
+ border: 0;
+ border-top: 1px solid #166dba;
+}
+#dsp_content legend {
+ background-color: white;
+}
+
+#dsp_left_link_holder {
+ width: auto;
+ max-width: 180px;
+}
+
+#dsp_button_holder {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+.dsp_sett_label {
+ display: inline-block;
+ width: auto;
+ line-height: 20px;
+}
+
+/*popup data export settings*/
+#div_export_setting_show {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ z-index: 90;
+ left: calc(50% - 200px);
+ top: 30vh;
+ min-width: 250px;
+ min-height: 80px;
+ height: auto;
+ width: auto;
+ margin: 10px;
+}
+#div_export_setting_show .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#div_export_setting_show .popup_close:hover {
+ color: #1e88e5;
+}
+#div_export_setting_show .popup_close a {
+ color: lightgrey;
+}
+#div_export_setting_show .popup_close a:hover {
+ color: #1e88e5;
+}
+#div_export_setting_show h2,
+#div_export_setting_show .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#div_export_setting_show p {
+ line-height: 20px;
+}
+#div_export_setting_show.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#div_export_setting_show.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#div_export_setting_show.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#div_export_setting_show.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#div_export_setting_show.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#div_export_setting_show.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#div_export_setting_show.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#div_export_setting_show.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#div_export_setting_show.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#div_export_setting_show.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#div_export_setting_show.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#div_export_setting_show.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#div_export_setting_show.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#div_export_setting_show.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#div_export_setting_show.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 10:12:15
+ Author : podkrizniku
+*/
+.condition_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ margin: 8px 8px 8px 0px;
+}
+
+.zanka_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ color: #1e88e5;
+}
+
+.variable_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ color: #1e88e5;
+}
+
+#zanka_profile {
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+#zanka_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#zanka_profile .active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#variable_profile {
+ overflow: auto;
+ cursor: pointer;
+}
+#variable_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#variable_profile .active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#condition_profile {
+ height: 200px;
+ overflow: auto;
+ cursor: pointer;
+}
+#condition_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#condition_profile .active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#variableProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#zankaProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#statisticProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#timeProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#statusProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#conditionProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#surveyConditionCover {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#profileManagerCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+fieldset.statusProfileFieldset {
+ width: 460px;
+ margin: 0px;
+ padding: 5px;
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+fieldset.statusProfileFieldset legend {
+ background-color: #f5fafe;
+}
+
+fieldset#missingProfileFieldset {
+ width: 470px;
+ margin: 0px;
+ padding: 5px;
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+
+#missingProfileFieldsetHolder1 {
+ width: 481px;
+ padding: 4px;
+ margin-top: 4px;
+ margin-bottom: 5px;
+ font-size: 11px;
+}
+
+#missingProfilebuttons {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+#div_missing_profiles {
+ display: none;
+ position: relative;
+ z-index: 90;
+ width: 730px;
+}
+#div_missing_profiles fieldset {
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+#div_missing_profiles legend {
+ background-color: #f5fafe;
+}
+
+#fs_list {
+ overflow: auto;
+ float: right;
+ width: 490px;
+ height: 320px;
+ padding: 10px;
+ color: #333;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+.fs_container {
+ height: 280px;
+ width: 235px;
+ overflow: auto;
+ padding: 3px 0px 3px 0px;
+}
+
+#fs_list_1 {
+ display: block;
+ list-style-type: none;
+ padding: 0px;
+ min-height: 275px;
+ height: 275px;
+ width: 220px;
+ min-width: 220px;
+ padding: 0px;
+ margin: 0px;
+}
+#fs_list_1 ul {
+ padding: 0px;
+ max-height: 275px;
+}
+#fs_list_1 li {
+ list-style-type: none;
+ display: block;
+ background: #f5fafe;
+ width: 220px;
+ padding: 5px 0px;
+ margin-bottom: 5px;
+}
+#fs_list_1 li.dds_selected {
+ background: #B3CBC2;
+}
+#fs_list_1 li.dds_ghost {
+ opacity: 0.5;
+}
+#fs_list_1 li.dds_move {
+ background: #cfc;
+}
+
+#fs_list_2 {
+ display: block;
+ list-style-type: none;
+ padding: 0px;
+ min-height: 275px;
+ height: 275px;
+ width: 220px;
+ min-width: 220px;
+ padding: 0px;
+ margin: 0px;
+}
+#fs_list_2 ul {
+ padding: 0px;
+ max-height: 275px;
+}
+#fs_list_2 li {
+ list-style-type: none;
+ display: block;
+ background: #f5fafe;
+ width: 220px;
+ padding: 5px 0px;
+ margin-bottom: 5px;
+}
+#fs_list_2 li.dds_selected {
+ background: #B3CBC2;
+}
+#fs_list_2 li.dds_ghost {
+ opacity: 0.5;
+}
+#fs_list_2 li.dds_move {
+ background: #cfc;
+}
+
+#fs_list_3 {
+ display: block;
+ list-style-type: none;
+ padding: 0px;
+ min-height: 275px;
+ height: 275px;
+ width: 220px;
+ min-width: 220px;
+ padding: 0px;
+ margin: 0px;
+}
+#fs_list_3 ul {
+ padding: 0px;
+ max-height: 275px;
+}
+#fs_list_3 li {
+ list-style-type: none;
+ display: block;
+ background: #f5fafe;
+ width: 220px;
+ padding: 5px 0px;
+ margin-bottom: 5px;
+}
+#fs_list_3 li.dds_selected {
+ background: #B3CBC2;
+}
+#fs_list_3 li.dds_ghost {
+ opacity: 0.5;
+}
+#fs_list_3 li.dds_move {
+ background: #cfc;
+}
+
+#fs_list_4 {
+ display: block;
+ list-style-type: none;
+ padding: 0px;
+ min-height: 275px;
+ height: 275px;
+ width: 220px;
+ min-width: 220px;
+ padding: 0px;
+ margin: 0px;
+}
+#fs_list_4 ul {
+ padding: 0px;
+ max-height: 275px;
+}
+#fs_list_4 li {
+ list-style-type: none;
+ display: block;
+ background: #f5fafe;
+ width: 220px;
+ padding: 5px 0px;
+ margin-bottom: 5px;
+}
+#fs_list_4 li.dds_selected {
+ background: #B3CBC2;
+}
+#fs_list_4 li.dds_ghost {
+ opacity: 0.5;
+}
+#fs_list_4 li.dds_move {
+ background: #cfc;
+}
+
+#div_cp_preview {
+ float: right;
+ display: inline-block;
+ width: 780px;
+ margin: 8px 8px 40px 0px;
+ max-height: 500px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#div_cp_preview_content {
+ display: block;
+ margin: 6px;
+}
+
+.statistic_profile_left_right {
+ width: auto;
+ height: 190px;
+ padding: 5px;
+}
+
+.time_profile_left_right {
+ width: auto;
+ height: 200px;
+ padding: 5px;
+}
+
+.time_profile_left_right.floatRight {
+ height: 140px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ float: right;
+ padding: 10px;
+ width: 380px;
+}
+
+.statistic_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ color: #1e88e5;
+}
+
+#statistic_profile {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+#statistic_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#statistic_profile .active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#time_profile {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+#time_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#time_profile .active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#statistic_profile_content {
+ float: left;
+ width: auto;
+ height: 80px;
+ padding: 5px;
+ margin-bottom: 10px;
+ color: #333;
+}
+
+#time_profile_content {
+ float: left;
+ width: auto;
+ height: 80px;
+ padding: 5px;
+ margin-bottom: 10px;
+ color: #333;
+}
+
+.statistic_profile_button_left_holder {
+ width: auto;
+ max-width: 180px;
+}
+
+.statistic_profile_button_right_holder {
+ position: absolute;
+ bottom: 10px;
+ right: 10px;
+}
+
+.time_profile_button_right_holder {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+.statistic_profile_note {
+ width: 430px;
+ padding: 3px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#missing_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ margin: 0px 8px 8px 0px;
+ color: #1e88e5;
+}
+
+#status_profile_holder {
+ float: left;
+ width: 190px;
+ height: 150px;
+ margin: 0px 8px 8px 0px;
+ color: #1e88e5;
+ height: auto;
+}
+
+#divStatusProfile {
+ position: relative;
+}
+
+#missing_profile {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+#missing_profile div.option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#missing_profile div.active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#status_profile {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+#status_profile div.option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#status_profile div.active {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#status_casi {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+}
+
+#missing_profile_data_holder {
+ float: right;
+ width: 490px;
+ padding: 10px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#status_profile_data_holder {
+ float: right;
+ width: 490px;
+ padding: 10px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#missingProfileFieldsetHolder {
+ width: 470px;
+ padding: 5px;
+ margin: 0px;
+ margin-bottom: 5px;
+ font-size: 11px;
+}
+
+#statusProfileFieldsetHolder {
+ width: 470px;
+ padding: 5px;
+ margin: 0px;
+ margin-bottom: 5px;
+ font-size: 11px;
+}
+
+#conditionProfileButtons {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+#tbl_color_ersidual {
+ font-size: 11px;
+ line-height: 12px;
+ border-collapse: collapse;
+ margin: 0px;
+ margin-left: 5px;
+}
+
+#variableTypeNote {
+ display: inline-block;
+ width: auto;
+ padding: 3px 10px;
+ margin-bottom: 4px;
+ line-height: 2em;
+ vertical-align: middle;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#variableProfileNote {
+ display: inline-block;
+ width: auto;
+ padding: 3px 10px;
+ margin-bottom: 4px;
+ line-height: 2em;
+ vertical-align: middle;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#variableProfileNote div.if_content {
+ display: inline-block;
+}
+
+#timeProfileDafaultNote {
+ display: inline-block;
+ width: auto;
+ padding: 3px 10px;
+ margin-bottom: 4px;
+ line-height: 2em;
+ vertical-align: middle;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#dashboardEmailFilter {
+ display: inline-block;
+ width: auto;
+ padding: 3px 10px;
+ margin-bottom: 4px;
+ line-height: 2em;
+ vertical-align: middle;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#not_default_setting {
+ padding: 5px;
+ width: auto;
+ margin-bottom: 15px;
+ border: 1px solid #ffa608;
+ background-color: #fff0d4;
+}
+
+input#startDate {
+ width: 80px;
+}
+
+input#endDate {
+ width: 80px;
+}
+
+#vp_list {
+ float: right;
+ overflow: auto;
+ width: 430px;
+ padding: 10px;
+ margin: 0 10px;
+ color: #333;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#vp_list ul {
+ display: inline-block;
+ padding: 0 3px;
+ max-height: 400px;
+ width: auto;
+}
+#vp_list ul li {
+ list-style-type: none;
+ display: inline-block;
+ width: 100%;
+ max-width: 400px;
+ padding: 5px;
+ margin-bottom: 5px;
+ background-color: #f5fafe;
+ outline: 1px solid #f5fafe;
+ color: #333;
+}
+#vp_list ul li label {
+ display: inline-block;
+ width: 100%;
+ height: 100%;
+}
+#vp_list ul li.selected {
+ background-color: #f5fafe !important;
+ outline: 0 !important;
+ color: #1e88e5 !important;
+}
+
+#div_condition_profiles {
+ width: 1010px;
+ height: auto !important;
+ display: none;
+ position: relative;
+ z-index: 90;
+}
+
+#div_time_profiles {
+ width: 620px;
+ display: none;
+ position: relative;
+ z-index: 90;
+}
+
+#div_zanka_profiles {
+ width: 730px;
+ height: 430px;
+ display: none;
+ position: relative;
+ z-index: 90;
+}
+
+#newProfile {
+ display: none;
+ position: absolute;
+ z-index: 20;
+ left: calc(50% - 300px);
+ top: 40%;
+ padding: 20px;
+ width: 550px;
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+}
+
+#newProfileDiv {
+ display: none;
+ position: absolute;
+ z-index: 20;
+ left: calc(50% - 300px);
+ top: 40%;
+ padding: 20px;
+ width: 550px;
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+}
+
+#renameProfileDiv {
+ display: none;
+ position: absolute;
+ z-index: 20;
+ left: calc(50% - 300px);
+ top: 40%;
+ padding: 20px;
+ width: 550px;
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+}
+
+#deleteProfileDiv {
+ display: none;
+ position: absolute;
+ z-index: 20;
+ left: calc(50% - 300px);
+ top: 40%;
+ padding: 20px;
+ width: 550px;
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+}
+
+/*
+ Uvoz vprasanj iz texta znotraj ankete (popup)
+ Created on : 6-Nov-2018
+ Author : peter hrvatin
+*/
+#popup_import_from_text {
+ display: none;
+ position: relative;
+ z-index: 90;
+ height: auto;
+ width: 800px;
+ margin: 0 auto;
+ line-height: 18px;
+}
+#popup_import_from_text .anketa_from_text {
+ height: auto;
+ overflow: auto;
+}
+#popup_import_from_text .anketa_from_text h2 {
+ margin-top: 0;
+}
+#popup_import_from_text .anketa_from_text #input_field_holder {
+ float: left;
+ width: 50%;
+ height: 400px;
+ box-sizing: border-box;
+ padding: 20px;
+}
+#popup_import_from_text .anketa_from_text #input_field_holder #input_field {
+ width: 100%;
+ height: 100%;
+}
+#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ resize: none;
+ padding: 20px;
+ border: 1px #c8e3f8 solid !important;
+}
+#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+#popup_import_from_text .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder {
+ color: transparent;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder {
+ float: right;
+ width: 50%;
+ height: 400px;
+ box-sizing: border-box;
+ padding: 20px;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ overflow: auto;
+ padding: 20px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.title {
+ font-size: 18px;
+ line-height: 30px;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable {
+ font-size: 15px;
+ font-weight: 400;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] {
+ display: none !important;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
+ font-family: "Font Awesome 5 Free";
+ content: "";
+ display: inline-block;
+ font-size: 14px;
+ color: #aaa;
+ letter-spacing: 8px;
+ font-weight: 400;
+}
+#popup_import_from_text .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
+ content: "";
+ color: #333;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 14-Aug-2018, 11:40:15
+ Author : podkrizniku
+*/
+/* Arhiv */
+#div_analiza_archive_name {
+ min-width: 900px;
+ width: auto;
+ padding-bottom: 50px !important;
+}
+
+.div_curent_archives {
+ margin-top: 10px;
+ padding: 20px 5px 20px 5px;
+ max-height: 300px;
+ overflow: auto;
+ border-top: 1px dashed #efefef;
+}
+
+.arch_tbl {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+}
+.arch_tbl th {
+ padding: 3px;
+}
+.arch_tbl td {
+ padding: 3px;
+}
+
+#arch_body {
+ text-align: center;
+ margin: auto;
+ margin-top: 20px;
+ padding: 0px;
+ background: none;
+ background-color: white;
+ color: black;
+ font-size: 11px;
+ width: 100%;
+}
+#arch_body .anl_more {
+ display: none;
+}
+
+#arch_body_div {
+ margin: auto;
+ width: auto;
+ max-width: 1024px;
+ background-color: white;
+ text-align: center;
+}
+
+.arch_body_div {
+ margin: auto;
+ width: auto;
+ max-width: 1024px;
+ background-color: white;
+ text-align: center;
+}
+
+.arch_head_date {
+ float: right;
+ width: auto;
+ height: 50px;
+}
+
+#div_archives_email_buttons {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+#div_archives_email_left {
+ width: 590px;
+ float: left;
+}
+
+#div_archives_email_right {
+ width: 300px;
+ float: right;
+}
+
+dl.arch_email dd {
+ margin-left: 60px;
+ position: relative;
+ top: -1.1em;
+}
+
+#email_archive_text {
+ height: 150px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Jul-2018, 10:43:58
+ Author : podkrizniku
+*/
+/**
+*
+* 1KA template, from which other skins are derived. Every skin usees this template as a base!
+*
+* - always use relative font sizes (em, %)
+* - using relative font sizes, one can adjust all skin font sizes using one options (eg. increase all by 15%)
+*
+*/
+/*
+* USED FROM: template.css
+*/
+#preview_spremenljivka {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ overflow-x: hidden;
+ overflow-y: auto;
+ height: auto;
+ max-height: 500px;
+ width: 60vw;
+}
+#preview_spremenljivka .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#preview_spremenljivka .popup_close:hover {
+ color: #1e88e5;
+}
+#preview_spremenljivka .popup_close a {
+ color: lightgrey;
+}
+#preview_spremenljivka .popup_close a:hover {
+ color: #1e88e5;
+}
+#preview_spremenljivka h2,
+#preview_spremenljivka .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#preview_spremenljivka p {
+ line-height: 20px;
+}
+#preview_spremenljivka.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#preview_spremenljivka.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#preview_spremenljivka.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#preview_spremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#preview_spremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#preview_spremenljivka.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#preview_spremenljivka.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#preview_spremenljivka.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#preview_spremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#preview_spremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#preview_spremenljivka.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#preview_spremenljivka.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#preview_spremenljivka.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#preview_spremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#preview_spremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#preview_spremenljivka .buttons_holder {
+ margin-top: 30px;
+}
+#preview_spremenljivka h1 {
+ text-align: center;
+}
+#preview_spremenljivka h1 span {
+ display: none;
+}
+#preview_spremenljivka h1, #preview_spremenljivka h2, #preview_spremenljivka h3 {
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+}
+#preview_spremenljivka input {
+ vertical-align: middle;
+ padding: 0;
+ margin: 0;
+}
+#preview_spremenljivka select {
+ vertical-align: middle;
+ padding: 0;
+ margin: 0;
+ cursor: pointer;
+}
+#preview_spremenljivka textarea {
+ vertical-align: middle;
+ width: 40%;
+ padding: 5px;
+ margin: 0;
+}
+#preview_spremenljivka input[type=text] {
+ padding: 5px;
+}
+#preview_spremenljivka .disabled {
+ border: 1px solid silver;
+}
+#preview_spremenljivka img {
+ border: none;
+ max-width: 800px;
+}
+#preview_spremenljivka label {
+ vertical-align: middle;
+ cursor: pointer;
+}
+#preview_spremenljivka table.grid_header_table label {
+ display: block;
+}
+#preview_spremenljivka input[type=radio] {
+ cursor: pointer;
+}
+#preview_spremenljivka input[type=checkbox] {
+ cursor: pointer;
+}
+#preview_spremenljivka #admin_options {
+ position: absolute;
+ left: 20px;
+}
+#preview_spremenljivka #admin_options a {
+ cursor: pointer;
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ margin: 0 2px;
+}
+#preview_spremenljivka #admin_options a.printView {
+ background: url("../../../admin/survey/icons/icons/printer.png");
+}
+#preview_spremenljivka #admin_options a.normalView {
+ background: url("../../../admin/survey/icons/icons/pencil_go.png");
+ display: none;
+}
+#preview_spremenljivka #admin_options a.pdfExport {
+ background: url("../../../admin/survey/icons/icons/page_white_acrobat.png");
+}
+#preview_spremenljivka #admin_options a.embed_out {
+ background: url("../../../admin/survey/icons/icons/page_copy.png");
+ width: 23px;
+}
+#preview_spremenljivka .printDiv {
+ border: 1px solid gray;
+ padding: 10px;
+ margin-right: 10px;
+}
+#preview_spremenljivka #logo {
+ position: absolute;
+ background: url("../../../main/survey/skins/Default/logo-small.png") no-repeat scroll 100% 0 transparent;
+ right: 0px;
+}
+#preview_spremenljivka #logo a {
+ display: block;
+ width: 96px;
+ height: 45px;
+ text-indent: -9999px;
+ overflow: hidden;
+}
+#preview_spremenljivka .header_settings_holder {
+ position: absolute;
+ right: 20px;
+}
+#preview_spremenljivka .header_settings_holder .progress_bar span {
+ float: left;
+}
+#preview_spremenljivka .header_settings_holder .progress_bar div {
+ display: inline-block;
+ width: 100px;
+ height: 16px;
+ border: 1px solid black;
+ margin: 0 10px;
+ float: left;
+}
+#preview_spremenljivka .header_settings_holder .progress_bar div span {
+ display: inline-block;
+ background-color: black;
+ height: 16px;
+ float: none;
+}
+#preview_spremenljivka #preview {
+ position: fixed;
+ top: 10px;
+ right: 10px;
+ width: 200px;
+ text-align: center;
+ z-index: 100;
+ background-color: #ffffff;
+ border: 1px solid lightgray;
+ font-size: 90%;
+}
+#preview_spremenljivka #preview select {
+ font-size: 100%;
+}
+#preview_spremenljivka div.buttons {
+ text-align: center;
+}
+#preview_spremenljivka #footer_survey {
+ text-align: center;
+ font-size: 90%;
+}
+#preview_spremenljivka #footer_survey p {
+ margin: 0;
+ padding: 0;
+}
+#preview_spremenljivka #footer_survey p.footer_mobile {
+ margin-bottom: 10px;
+}
+#preview_spremenljivka #footer_survey p.footer_survey_UL {
+ display: none;
+}
+#preview_spremenljivka #footer_survey p.footer_survey_FDV {
+ display: none;
+}
+#preview_spremenljivka #footer_survey p.footer_survey_PoweredBy {
+ display: none;
+}
+#preview_spremenljivka .display_none {
+ display: none;
+}
+#preview_spremenljivka .clr {
+ clear: both;
+}
+#preview_spremenljivka .floatLeft {
+ float: left;
+ display: inline;
+}
+#preview_spremenljivka div.spremenljivka p {
+ margin: 0;
+ padding: 0;
+}
+#preview_spremenljivka .spremenljivka_info {
+ color: gray;
+}
+#preview_spremenljivka .variabla {
+ padding: 5px;
+}
+#preview_spremenljivka div.spremenljivka.tip_7 .variabla label {
+ padding: 5px 10px 5px 0;
+}
+#preview_spremenljivka div.spremenljivka.tip_21 .variabla label {
+ padding: 5px 10px 5px 0;
+}
+#preview_spremenljivka span.reminder {
+ position: absolute;
+ color: red;
+ left: -8px;
+}
+#preview_spremenljivka div.naslov {
+ position: relative;
+ float: left;
+ width: auto;
+ min-width: 100px;
+ max-width: 100%;
+ padding: 0 0 20px 0;
+ font-size: 16px;
+ line-height: 24px;
+ font-weight: 500;
+}
+#preview_spremenljivka p.spremenljivka_info {
+ font-size: 80%;
+}
+#preview_spremenljivka .variable_holder {
+ padding: 0 10px;
+}
+#preview_spremenljivka table.grid_table {
+ table-layout: fixed;
+ width: 100%;
+ text-align: center;
+ border-spacing: 0;
+}
+#preview_spremenljivka table.grid_table td.alignLeft {
+ text-align: left !important;
+}
+#preview_spremenljivka table.grid_table td.alignRight {
+ text-align: right !important;
+}
+#preview_spremenljivka table.grid_table td.alignCenter {
+ text-align: center !important;
+}
+#preview_spremenljivka table.grid_table label {
+ display: block;
+}
+#preview_spremenljivka table.grid_table td {
+ padding: 5px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+#preview_spremenljivka thead {
+ font-weight: 600;
+}
+#preview_spremenljivka td.question {
+ text-align: left;
+}
+#preview_spremenljivka td.differential {
+ text-align: left;
+}
+#preview_spremenljivka table td.question input {
+ width: 80px;
+}
+#preview_spremenljivka table.grid_table.multigriddropdown {
+ text-align: left;
+}
+#preview_spremenljivka td.category input[type=text] {
+ border: 0;
+ outline: 1px solid #f5fafe;
+}
+#preview_spremenljivka td.category textarea {
+ border: 0;
+ outline: 1px solid #f5fafe;
+}
+#preview_spremenljivka table.doublegrid thead tr:first-child {
+ height: 30px;
+}
+#preview_spremenljivka table.doublecheckgrid thead tr:first-child {
+ height: 30px;
+}
+#preview_spremenljivka col.space {
+ width: 5%;
+}
+#preview_spremenljivka td.double {
+ border-left: 1px solid black;
+}
+#preview_spremenljivka .width_5 {
+ width: 5%;
+}
+#preview_spremenljivka .width_10 {
+ width: 10%;
+}
+#preview_spremenljivka .width_15 {
+ width: 15%;
+}
+#preview_spremenljivka .width_20 {
+ width: 20%;
+}
+#preview_spremenljivka .width_25 {
+ width: 25%;
+}
+#preview_spremenljivka .width_30 {
+ width: 30%;
+}
+#preview_spremenljivka .width_33 {
+ width: 33.3%;
+}
+#preview_spremenljivka .width_35 {
+ width: 35%;
+}
+#preview_spremenljivka .width_40 {
+ width: 40%;
+}
+#preview_spremenljivka .width_45 {
+ width: 45%;
+}
+#preview_spremenljivka .width_50 {
+ width: 50%;
+}
+#preview_spremenljivka .width_55 {
+ width: 55%;
+}
+#preview_spremenljivka .width_60 {
+ width: 60%;
+}
+#preview_spremenljivka .width_65 {
+ width: 65%;
+}
+#preview_spremenljivka .width_70 {
+ width: 70%;
+}
+#preview_spremenljivka .width_75 {
+ width: 75%;
+}
+#preview_spremenljivka .width_80 {
+ width: 80%;
+}
+#preview_spremenljivka .width_85 {
+ width: 85%;
+}
+#preview_spremenljivka .width_90 {
+ width: 90%;
+}
+#preview_spremenljivka .width_95 {
+ width: 95%;
+}
+#preview_spremenljivka .width_100 {
+ width: 100%;
+}
+#preview_spremenljivka table.text_vrednost {
+ table-layout: fixed;
+ text-align: left;
+ width: 100%;
+ border-spacing: 0;
+}
+#preview_spremenljivka .limit {
+ color: red;
+ cursor: default;
+}
+#preview_spremenljivka table.ranking_table {
+ width: 100%;
+ table-layout: fixed;
+ border-spacing: 0;
+}
+#preview_spremenljivka table.ranking_table td {
+ width: 45%;
+ padding: 5px;
+ vertical-align: top;
+}
+#preview_spremenljivka table.ranking_table td.middle {
+ width: 10%;
+ vertical-align: top;
+ text-align: center;
+}
+#preview_spremenljivka table.ranking_table ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+#preview_spremenljivka td.middle img {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-left: -20px;
+}
+#preview_spremenljivka .handle {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#preview_spremenljivka .handle_long {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#preview_spremenljivka .ime {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#preview_spremenljivka .izbran {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#preview_spremenljivka .ranking {
+ cursor: pointer;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ position: relative;
+ background-color: #ffffff;
+}
+#preview_spremenljivka .ranking_long {
+ cursor: pointer;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid #000000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ position: relative;
+ background-color: #ffffff;
+}
+#preview_spremenljivka .frame_ranking {
+ width: 230px !important;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px dashed #000000;
+ height: 15px;
+ text-indent: -25px;
+ font-weight: bold;
+}
+#preview_spremenljivka .dropholder {
+ position: relative;
+ padding-top: 11px;
+}
+#preview_spremenljivka .dropholder .dropzone {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+}
+#preview_spremenljivka .dropzone {
+ border-top: 1px solid black;
+ min-height: 100px;
+ padding-top: 10px;
+}
+#preview_spremenljivka .frame_dropping {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ height: 15px;
+ text-indent: -25px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#preview_spremenljivka .frame_dropping_titles {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 0px auto;
+ height: 15px;
+ text-align: center;
+ background-color: #ffffff;
+ border-top: 1px solid #c8e3f8;
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #c8e3f8;
+}
+#preview_spremenljivka .moving {
+ cursor: pointer;
+ margin-left: auto;
+ margin-right: auto;
+ width: 230px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+#preview_spremenljivka .frame_moving {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px dashed #000000;
+ height: 15px;
+ text-indent: -25px;
+ font-weight: bold;
+}
+#preview_spremenljivka ul.sorting {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+#preview_spremenljivka .sortholder {
+ margin: 0 auto;
+ width: 250px;
+ padding: 5px;
+}
+#preview_spremenljivka .sortzone {
+ position: absolute;
+ margin: 0 auto 0 auto;
+ width: 250px;
+}
+#preview_spremenljivka .spremenljivka.tip_17 input {
+ width: 50px;
+}
+#preview_spremenljivka .variabla_sum {
+ text-align: right;
+ padding: 5px;
+}
+#preview_spremenljivka .variabla_sum input {
+ width: 50px;
+}
+#preview_spremenljivka .variabla_sum.sum {
+ float: left;
+ border-top: 1px solid black;
+}
+#preview_spremenljivka .stat {
+ float: right;
+}
+#preview_spremenljivka #vnos {
+ position: absolute;
+ top: 10px;
+ left: 10px;
+ border: 3px solid #aaa;
+ background-color: #eee;
+ text-align: center;
+ padding: 3px;
+}
+#preview_spremenljivka p.vnos {
+ width: 100%;
+ text-align: center;
+}
+#preview_spremenljivka .content_status {
+ border: none;
+ padding-bottom: 2px;
+}
+#preview_spremenljivka .content_status span {
+ display: inline-table;
+}
+#preview_spremenljivka .counter {
+ float: left;
+ width: auto;
+ padding-top: 5px;
+ display: block;
+}
+#preview_spremenljivka div.comment {
+ font-style: italic;
+ color: red;
+ float: left;
+ width: 98%;
+ padding-top: 5px;
+ display: block;
+ border-top: 1px dashed #cccccc;
+}
+#preview_spremenljivka #edit_warning {
+ width: 380px;
+ margin: -15px 0 5px 15px;
+ padding: 5px;
+ border: 2px red solid;
+}
+#preview_spremenljivka .arrow {
+ cursor: pointer;
+ width: 24px;
+ height: 24px;
+ margin: 0 auto;
+}
+#preview_spremenljivka #arrow_up {
+ background-image: url("../../../main/survey/skins/Default/arrowU.png");
+}
+#preview_spremenljivka #arrow_up:hover {
+ background-image: url("../../../main/survey/skins/Default/arrowU2.png");
+}
+#preview_spremenljivka #arrow_down {
+ background-image: url("../../../main/survey/skins/Default/arrowD.png");
+}
+#preview_spremenljivka #arrow_down:hover {
+ background-image: url("../../../main/survey/skins/Default/arrowD2.png");
+}
+#preview_spremenljivka #arrow_left {
+ background-image: url("../../../main/survey/skins/Default/arrowL.png");
+}
+#preview_spremenljivka #arrow_left:hover {
+ background-image: url("../../../main/survey/skins/Default/arrowL2.png");
+}
+#preview_spremenljivka #arrow_right {
+ background-image: url("../../../main/survey/skins/Default/arrowR.png");
+}
+#preview_spremenljivka #arrow_right:hover {
+ background-image: url("../../../main/survey/skins/Default/arrowR2.png");
+}
+#preview_spremenljivka #dynamic_count {
+ width: 60px;
+ padding: 7px 0;
+ font-weight: bold;
+ color: green;
+}
+
+#tip_preview {
+ position: absolute;
+ display: none;
+ z-index: 9999;
+ width: auto;
+ height: auto;
+ pointer-events: none;
+}
+
+.tip_preview_sub {
+ display: none;
+ margin: 10px 10px 10px 10px;
+}
+.tip_preview_sub > span {
+ padding: 10px;
+}
+
+.inside {
+ min-width: 380px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+
+.tip_sample {
+ padding: 10px;
+ overflow: hidden;
+ margin-top: 10px;
+}
+.tip_sample div.spremenljivka div.naslov {
+ font-weight: bold;
+ width: auto;
+ padding: 0;
+}
+.tip_sample div.spremenljivka div.naslov p {
+ margin: 0;
+}
+
+.tip_sample_text {
+ font-weight: 500;
+}
+
+.tip_sample_option {
+ padding-left: 5px;
+ width: 100%;
+}
+.tip_sample_option div {
+ display: block;
+ float: left;
+ width: 100px;
+}
+.tip_sample_option span {
+ display: block;
+ float: left;
+ width: 80px;
+ text-align: center;
+ margin-bottom: 3px;
+}
+
+.tip_sample_option2 {
+ padding-left: 5px;
+ width: 100%;
+}
+.tip_sample_option2 div {
+ display: block;
+ float: left;
+ width: 100px;
+}
+.tip_sample_option2 span {
+ display: block;
+ float: left;
+ width: 80px;
+ text-align: center;
+ margin-bottom: 3px;
+ width: 60px;
+}
+
+.popup_content.consulting {
+ font-weight: 600;
+ padding: 20px 20px;
+ text-align: center;
+}
+.popup_content.consulting .row {
+ display: flex;
+ justify-content: space-around;
+ padding: 10px 0;
+}
+.popup_content.consulting .row .col {
+ min-width: 120px;
+}
+.popup_content.consulting .row .col a {
+ display: flex;
+ flex-direction: column;
+ text-align: center;
+}
+
+.popup_content.dodeljeni_uporabniki ul {
+ overflow: auto;
+ max-height: 60vh;
+ padding: 10px;
+ margin: 0 0 20px 0;
+ list-style-type: none;
+ background-color: #f0f7fd;
+ border: 1px solid #d5e9fa;
+}
+.popup_content.dodeljeni_uporabniki ul li {
+ display: flex;
+ justify-content: space-between;
+ line-height: 24px;
+ padding: 0 5px;
+}
+.popup_content.dodeljeni_uporabniki ul li:hover {
+ background-color: #d5e9fa;
+}
+.popup_content.dodeljeni_uporabniki h4 {
+ margin: 0 0 5px 0;
+}
+.popup_content.dodeljeni_uporabniki .add_user {
+ box-sizing: border-box;
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 50px;
+ background-color: #f0f7fd;
+ border: 1px solid #d5e9fa;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 25-Jul-2018, 11:34:25
+ Author : podkrizniku
+*/
+#new_anketa_div {
+ position: relative;
+ min-height: 600px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 25-Jul-2018, 10:47:05
+ Author : podkrizniku
+*/
+.noSurvey_sequence {
+ padding: 70px 50px 70px 50px;
+}
+.noSurvey_sequence .main_holder {
+ max-width: 1400px;
+ margin: 0 auto 70px auto;
+}
+.noSurvey_sequence .main_holder.main {
+ display: flex;
+ align-items: center;
+}
+.noSurvey_sequence .main_holder.main .left_holder {
+ width: 50%;
+ margin: 0 20px;
+}
+.noSurvey_sequence .main_holder.main .right_holder {
+ width: 50%;
+ margin: 0 20px;
+}
+.noSurvey_sequence .main_holder.main .right_holder img {
+ width: 100%;
+}
+.noSurvey_sequence .main_holder span.title {
+ clear: both;
+ display: block;
+ margin-bottom: 20px;
+ color: #1e88e5;
+ font-weight: 600;
+ font-size: 28px;
+ text-align: left;
+}
+.noSurvey_sequence .main_holder h2 {
+ color: #333;
+}
+.noSurvey_sequence .main_holder p {
+ padding: 10px 0 !important;
+ font-size: 17px;
+ line-height: 28px;
+}
+.noSurvey_sequence .main_holder ul {
+ margin-left: 30px !important;
+}
+.noSurvey_sequence .main_holder ul li {
+ font-size: 16px !important;
+ border: 0 !important;
+ padding-bottom: 40px !important;
+}
+.noSurvey_sequence .main_holder ul li span.new_survey_text {
+ margin: 0 0 0 0 !important;
+ padding: 0 0 0 0 !important;
+ clear: both;
+ display: block;
+}
+.noSurvey_sequence .main_holder ul li div.new_survey_link {
+ font-size: 16px;
+ font-weight: 600;
+ color: #1e88e5;
+ float: left;
+ margin: 14px 0 0 0 !important;
+}
+.noSurvey_sequence .main_holder ul li div.new_survey_link:hover {
+ color: #ffa608;
+}
+.noSurvey_sequence .main_holder ul li div.new_survey_link input {
+ margin-bottom: 8px;
+}
+.noSurvey_sequence .main_holder ul.features {
+ margin-left: 30px !important;
+}
+.noSurvey_sequence .main_holder ul.features li {
+ font-size: 14px !important;
+ border: 0 !important;
+ padding-bottom: 5px !important;
+}
+.noSurvey_sequence .main_holder ul.features li a {
+ font-size: 14px;
+ font-weight: 500;
+}
+.noSurvey_sequence .buttons_holder {
+ display: flex;
+ justify-content: center;
+}
+.noSurvey_sequence .buttons_holder a .button {
+ box-sizing: border-box;
+ width: 220px;
+ margin: 0 30px;
+ padding: 27px 30px;
+ font-weight: bold;
+ font-size: 16px;
+ letter-spacing: 1px;
+ text-transform: uppercase;
+ text-align: center;
+ color: white;
+ word-spacing: 160px;
+ background-color: #1e88e5;
+ transition: 0.2s;
+}
+.noSurvey_sequence .buttons_holder a .button:hover {
+ background-color: #ffa608;
+}
+.noSurvey_sequence .buttons_holder a .button.button_gray {
+ padding: 27px 10px;
+ color: #333;
+ background-color: #c8e3f8;
+}
+.noSurvey_sequence .buttons_holder a .button.button_gray:hover {
+ color: white;
+ background-color: #1e88e5;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 25-Jul-2018, 11:32:08
+ Author : podkrizniku
+*/
+#new_anketa_div #left_menu {
+ position: absolute;
+ width: 240px;
+ height: 100%;
+ padding: 0;
+ background-color: #fff;
+ border-right: 1px solid #c8e3f8;
+}
+#new_anketa_div #left_menu .title {
+ display: block;
+ margin: 0px 0 1px 0;
+ padding: 20px 0 20px 30px;
+ color: white;
+ font-size: 16px;
+ font-weight: 600;
+ text-transform: uppercase;
+ background-color: #1e88e5;
+}
+#new_anketa_div #left_menu .item {
+ display: block;
+ margin: 0px 0 1px 0;
+ padding: 20px 0 20px 30px;
+ color: #606060;
+ font-size: 15px;
+ font-weight: 400;
+ text-transform: uppercase;
+ background-color: #dfeffb;
+}
+#new_anketa_div #left_menu .item:hover {
+ background-color: #c8e3f8;
+}
+#new_anketa_div #left_menu .item.active {
+ background-color: #ffdda1;
+}
+#new_anketa_div #left_menu ul {
+ list-style-type: none;
+ padding-left: 30px;
+ margin: 25px 0 15px 0;
+}
+#new_anketa_div #left_menu ul li {
+ padding: 0 0 10px 0;
+}
+#new_anketa_div #left_menu ul li a {
+ font-size: 14px;
+ color: #606060;
+}
+#new_anketa_div #left_menu ul li a:hover {
+ color: #1e88e5;
+}
+#new_anketa_div #left_menu ul li .active {
+ color: #1e88e5;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 25-Jul-2018, 11:36:53
+ Author : podkrizniku
+*/
+#new_anketa_div #right_content {
+ color: #333;
+ position: relative;
+ width: calc(100%-240px);
+ max-width: 1300px;
+ min-height: 200px;
+ margin-left: 240px;
+ padding: 30px 35px;
+}
+#new_anketa_div #right_content .fieldset {
+ width: 100%;
+ padding: 0 0 20px 0;
+ margin-bottom: 20px;
+ font-size: 15px;
+ font-weight: 400;
+ /*border-bottom: 1px $soft_blue solid;*/
+}
+#new_anketa_div #right_content .fieldset .title {
+ padding: 10px 0 20px 0;
+ color: #333;
+ font-size: 20px;
+ font-weight: 500;
+}
+#new_anketa_div #right_content .fieldset .setting {
+ padding: 0 0 7px 15px;
+}
+#new_anketa_div #right_content .fieldset .setting .radioSetting_type.active {
+ color: #404040;
+}
+#new_anketa_div #right_content .fieldset .setting input {
+ padding: 0;
+ margin: 0;
+}
+#new_anketa_div #right_content .fieldset .setting select {
+ padding: 2px 5px;
+ margin: 0;
+ width: 302px;
+ font-size: 12px;
+ border: 1px solid #c8e3f8 !important;
+ border-radius: 1px;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=file] {
+ height: 24px;
+ width: 240px;
+ font-size: 10px;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=text] {
+ padding: 10px 12px;
+ width: 310px;
+ font-size: 15px;
+ border: 1px solid #c8e3f8 !important;
+ border-radius: 1px;
+}
+#new_anketa_div #right_content .fieldset .setting #novaanketa_akronim_1_chars {
+ float: right;
+ padding-right: 15px;
+ font-weight: 400;
+ font-size: 11px;
+}
+#new_anketa_div #right_content .fieldset .setting #novaanketa_naslov_1_chars {
+ float: right;
+ padding-right: 7px;
+ font-weight: 400;
+ font-size: 11px;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=radio] {
+ margin: 0 8px 4px 0;
+ display: none !important;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=radio] + span.enka-checkbox-radio {
+ font-size: 16px;
+ font-weight: 400;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=radio] + span.enka-checkbox-radio:before {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+ content: "";
+ letter-spacing: 10px;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=radio] + span.enka-custom-radio:before {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=radio]:checked + span.enka-checkbox-radio:before {
+ content: "";
+}
+#new_anketa_div #right_content .fieldset .setting input[type=checkbox] {
+ display: none !important;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio {
+ font-size: 16px;
+ font-weight: 400;
+ color: #1e88e5;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio:before {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+ content: "";
+ letter-spacing: 10px;
+}
+#new_anketa_div #right_content .fieldset .setting input[type=checkbox]:checked + span.enka-checkbox-radio:before {
+ content: "";
+ letter-spacing: 8px;
+}
+#new_anketa_div #right_content .fieldset .setting .custom_radio_picture.obarvan > label > span.enka-custom-radio:before {
+ color: #1e88e5;
+}
+#new_anketa_div #right_content .fieldset .setting .visual-radio-scale.checked .enka-vizualna-skala::before {
+ color: #1e88e5;
+}
+#new_anketa_div #right_content .fieldset .setting.archive {
+ margin-top: 20px;
+ font-weight: 500;
+ font-size: 14px;
+}
+#new_anketa_div #right_content .fieldset .survey_title_text_holder {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+}
+#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text {
+ width: 350px;
+ margin-right: 20px;
+}
+#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text span {
+ line-height: 28px;
+}
+#new_anketa_div #right_content .fieldset .survey_title_text_holder .setting.survey_title_text select {
+ height: 40px;
+ width: 330px;
+ font-size: 15px !important;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder {
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type {
+ cursor: pointer;
+ width: 300px;
+ margin: 0 30px 60px 15px;
+ padding: 15px 18px;
+ border: 1px #c8e3f8 solid;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type:hover {
+ background-color: #ecf5fd;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type span {
+ line-height: 28px;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_title {
+ font-size: 17px;
+ font-weight: 500;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_title .help {
+ vertical-align: top;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type .survey_type_text {
+ font-size: 13px;
+ line-height: 26px;
+}
+#new_anketa_div #right_content .fieldset .survey_type_holder .setting.survey_type.active {
+ border-color: #ffa608;
+ background-color: #fff0d4;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin {
+ overflow: hidden;
+ height: 270px;
+ display: none;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #skins_holder {
+ overflow: hidden;
+ position: absolute;
+ height: 220px;
+ width: 83%;
+ left: 120px;
+ margin-top: 10px;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #skins_holder #noSurvey_skins {
+ width: 3450px;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin {
+ cursor: pointer;
+ float: left;
+ margin: 0 10px;
+ padding: 5px 5px 15px 5px;
+ font-size: 13px;
+ text-transform: uppercase;
+ background-color: #dfeffb;
+ border: none;
+ /*border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;*/
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin:hover {
+ color: #404040;
+ background-color: #c8e3f8;
+ border: none;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin .preview {
+ width: 200px;
+ height: 150px;
+ margin-bottom: 4px;
+ border: none;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin.selected {
+ color: #404040;
+ background-color: #ffdda1;
+ border: none;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #noSurvey_skins .skin.selected .preview {
+ border: none;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #skin_arrow_left {
+ float: left;
+ width: 30px;
+ height: 40px;
+ margin-top: 80px;
+ margin-left: 20px;
+}
+#new_anketa_div #right_content .fieldset.noSurvey_skin #skin_arrow_right {
+ float: right;
+ width: 30px;
+ height: 40px;
+ margin-top: 80px;
+}
+#new_anketa_div #right_content .noSurvey_buttons {
+ width: auto;
+ margin: 20px auto;
+ text-align: center;
+}
+#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_create {
+ display: inline-block;
+ padding: 12px 0px;
+ margin: 8px 15px;
+ width: 120px;
+ text-align: center;
+ font-size: 15px;
+ font-weight: 500;
+ border-radius: 40px;
+ -moz-border-radius: 40px;
+ -webkit-border-radius: 40px;
+ color: white;
+ background-color: #1e88e5;
+}
+#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_create:hover {
+ background-color: #ffa608;
+}
+#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_cancel {
+ display: inline-block;
+ padding: 11px 0px;
+ margin: 8px 15px;
+ width: 120px;
+ text-align: center;
+ font-size: 15px;
+ font-weight: 500;
+ border-radius: 40px;
+ -moz-border-radius: 40px;
+ -webkit-border-radius: 40px;
+ color: #1e88e5 !important;
+ background-color: #ffffff;
+ border: 1px #1e88e5 solid;
+}
+#new_anketa_div #right_content .noSurvey_buttons a #noSurvey_cancel:hover {
+ background-color: #1e88e5;
+ color: white !important;
+}
+#new_anketa_div #right_content .noSurvey_template {
+ overflow: auto;
+}
+#new_anketa_div #right_content .noSurvey_template .template {
+ cursor: pointer;
+ float: left;
+ margin: 0 30px 30px 20px;
+ width: 200px;
+}
+#new_anketa_div #right_content .noSurvey_template .template:hover {
+ color: #404040;
+}
+#new_anketa_div #right_content .noSurvey_template .template .template_content {
+ overflow: hidden;
+ width: 200px;
+ height: 189px;
+ margin: 0 10px;
+ padding: 5px 5px 5px 5px;
+ background-color: #dfeffb;
+ border: none;
+ /*border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;*/
+}
+#new_anketa_div #right_content .noSurvey_template .template .template_content:hover {
+ background-color: #c8e3f8;
+ border: none;
+}
+#new_anketa_div #right_content .noSurvey_template .template .template_content .template_content_white {
+ width: 190px;
+ height: 120px;
+ padding: 15px 5px;
+ text-align: center;
+ font-size: 12px;
+ font-weight: 400;
+ background-color: white;
+}
+#new_anketa_div #right_content .noSurvey_template .template .template_content .template_title {
+ font-size: 13px;
+ text-transform: uppercase;
+}
+#new_anketa_div #right_content .noSurvey_template .template .template_preview {
+ margin-right: -15px;
+ float: right;
+ padding: 5px 0 5px 5px;
+ font-size: 12px;
+ font-weight: 400;
+}
+#new_anketa_div #right_content .noSurvey_template .template.selected {
+ color: #404040;
+}
+#new_anketa_div #right_content .noSurvey_template .template.selected .template_content {
+ background-color: #ffdda1;
+ border: none;
+}
+#new_anketa_div #right_content .anketa_from_text {
+ height: auto;
+ overflow: auto;
+}
+#new_anketa_div #right_content .anketa_from_text .from_text_instructions {
+ line-height: 14px;
+ margin-bottom: 10px;
+}
+#new_anketa_div #right_content .anketa_from_text #input_field_holder {
+ float: left;
+ width: 50%;
+ height: 400px;
+ box-sizing: border-box;
+ padding: 20px;
+}
+#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field {
+ width: 100%;
+ height: 100%;
+}
+#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ resize: none;
+ padding: 20px;
+ border: 1px #c8e3f8 solid !important;
+}
+#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea:focus::-webkit-input-placeholder {
+ color: transparent;
+}
+#new_anketa_div #right_content .anketa_from_text #input_field_holder #input_field textarea:focus::-moz-placeholder {
+ color: transparent;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder {
+ float: right;
+ width: 50%;
+ height: 400px;
+ box-sizing: border-box;
+ padding: 20px;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field {
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ overflow: auto;
+ padding: 20px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.title {
+ font-size: 18px;
+ line-height: 30px;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable {
+ font-size: 15px;
+ font-weight: 400;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] {
+ display: none !important;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
+ font-family: "Font Awesome 5 Free";
+ content: "";
+ display: inline-block;
+ font-size: 14px;
+ color: #aaa;
+ letter-spacing: 8px;
+ font-weight: 400;
+}
+#new_anketa_div #right_content .anketa_from_text #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
+ content: "";
+ color: #333;
+}
+
+input[type=radio] + span.enka-checkbox-radio {
+ color: #1e88e5;
+}
+
+select#my_surveys {
+ padding: 5px 8px;
+ margin-left: 15px;
+ height: 30px;
+ font-size: 12px;
+ border: 1px solid #b9c5d9 !important;
+ border-radius: 1px;
+}
+
+.noSurvey_skin #noSurvey_skins .skin:hover .preview {
+ background-color: #ffdda1;
+ border: 1px #dfeffb solid;
+}
+
+#novaanketa_naslov_1 {
+ margin-bottom: 3px;
+ width: 290px;
+ color: black;
+}
+
+#novaanketa_akronim_1 {
+ margin-bottom: 3px;
+ width: 290px;
+ color: black;
+}
+
+#novaanketa_naslov_1.full {
+ width: 290px;
+ color: black;
+}
+
+#novaanketa_opis {
+ width: 290px;
+ color: black;
+}
+
+#novaanketa_akronim_1.full {
+ width: 510px !important;
+ max-width: 510px !important;
+ color: black;
+}
+
+#novaanketa_opis_1.full {
+ width: 505px !important;
+ max-width: 505px !important;
+ vertical-align: top;
+ color: black;
+}
+
+#novaanketa_naslov_1_chars {
+ display: inline-block;
+ min-width: 40px;
+ height: auto;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 26-Jul-2018, 10:35:19
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 26-Jul-2018, 10:37:38
+ Author : podkrizniku
+*/
+#language_select {
+ position: absolute;
+ z-index: 78;
+ right: 40px;
+ top: 139px;
+ font-weight: 500;
+}
+#language_select a {
+ display: flex;
+ align-items: center;
+}
+#language_select a .flag {
+ height: 14px;
+ width: 24px;
+ margin-right: 7px;
+ background-size: 100% 30px;
+ background-position: center;
+ border: 1px lightgrey solid;
+}
+#language_select a .flag.slo {
+ background-image: url("../img/flags/flag_slo.svg");
+}
+#language_select a .flag.eng {
+ background-image: url("../img/flags/flag_eng.svg");
+}
+
+/*create new survey button*/
+#anketa_new_float {
+ margin-left: 10px;
+ width: auto;
+ padding: 0px;
+}
+#anketa_new_float span {
+ font-size: 13px;
+}
+#anketa_new_float span div.buttonwrapper {
+ margin-top: 3px;
+}
+
+#buttonCreate {
+ text-align: center;
+ background-color: #ffa608;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ transition: 0.1s;
+}
+#buttonCreate:hover {
+ background-color: #ffb83b;
+}
+#buttonCreate a {
+ display: inline-block;
+ padding: 10px 14px;
+ color: white;
+ font-size: 16px;
+ font-weight: 600;
+}
+
+/*END create new survey button*/
+/*CONTROL BUTTONS*/
+/*control button basics*/
+/*control button dropdown arrow*/
+/*control dropdown menu show*/
+/*control dropdown menu basics*/
+/*sort control button*/
+#sortButton {
+ cursor: pointer;
+ float: right;
+ margin-right: 20px;
+ margin-left: 10px;
+ padding: 8px 12px;
+ font-size: 16px;
+ font-weight: 600;
+ text-align: center;
+ color: #1e88e5;
+ border: 1px #1e88e5 solid;
+ background-color: white;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ transition: 0.1s;
+}
+#sortButton:after {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+ content: "";
+ margin-left: 5px;
+}
+#sortButton:hover {
+ background-color: #f0f7fd;
+}
+#sortButton:hover #sortSettings {
+ visibility: visible;
+ opacity: 1;
+ -moz-transition-delay: 0s;
+ -o-transition-delay: 0s;
+ -ms-transition-delay: 0;
+ -webkit-transition-delay: 0s;
+ transition-delay: 0s;
+ right: 60px;
+}
+
+/*filter control button*/
+#filterButton {
+ cursor: pointer;
+ float: right;
+ margin-right: 20px;
+ margin-left: 10px;
+ padding: 8px 12px;
+ font-size: 16px;
+ font-weight: 600;
+ text-align: center;
+ color: #1e88e5;
+ border: 1px #1e88e5 solid;
+ background-color: white;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ transition: 0.1s;
+}
+#filterButton:after {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+ content: "";
+ margin-left: 5px;
+}
+#filterButton:hover {
+ background-color: #f0f7fd;
+}
+#filterButton:hover #filterSettings {
+ visibility: visible;
+ opacity: 1;
+ -moz-transition-delay: 0s;
+ -o-transition-delay: 0s;
+ -ms-transition-delay: 0;
+ -webkit-transition-delay: 0s;
+ transition-delay: 0s;
+ right: 210px;
+}
+
+#filterButton.active {
+ background-color: #d5e9fa;
+}
+
+/*folder control button*/
+#folderSwitch {
+ cursor: pointer;
+ float: right;
+ margin-right: 20px;
+ margin-left: 10px;
+ padding: 8px 12px;
+ font-size: 16px;
+ font-weight: 600;
+ text-align: center;
+ color: #1e88e5;
+ border: 1px #1e88e5 solid;
+ background-color: white;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ right: 375px;
+ transition: 0.1s;
+}
+#folderSwitch:hover {
+ background-color: #f0f7fd;
+}
+
+#folderSwitch.active {
+ background-color: #d5e9fa;
+}
+
+/*sort dropdown menu*/
+#sortSettings {
+ visibility: hidden;
+ opacity: 0;
+ position: absolute;
+ right: 0;
+ z-index: 9999;
+ width: 160px;
+ margin-top: 12px;
+ padding: 0 10px;
+ text-align: left;
+ font-size: 12px;
+ font-weight: 400;
+ background-color: white;
+ border: 1px solid #1e88e5;
+ -moz-transition-delay: 0.7s;
+ -o-transition-delay: 0.7s;
+ -ms-transition-delay: 0.7s;
+ -webkit-transition-delay: 0.7s;
+ transition-delay: 0.7s;
+}
+#sortSettings ul li.active {
+ background-color: white;
+ font-weight: 500;
+}
+#sortSettings ul li .sprites {
+ float: right;
+ margin: 8px 10px 0 0;
+}
+#sortSettings ul a li {
+ color: #1e88e5;
+}
+#sortSettings ul a:hover li {
+ color: #ffa608;
+}
+
+/*filter dropdown menu*/
+#filterSettings {
+ visibility: hidden;
+ opacity: 0;
+ position: absolute;
+ right: 0;
+ z-index: 9999;
+ width: 160px;
+ margin-top: 12px;
+ padding: 0 10px;
+ text-align: left;
+ font-size: 12px;
+ font-weight: 400;
+ background-color: white;
+ border: 1px solid #1e88e5;
+ -moz-transition-delay: 0.7s;
+ -o-transition-delay: 0.7s;
+ -ms-transition-delay: 0.7s;
+ -webkit-transition-delay: 0.7s;
+ transition-delay: 0.7s;
+ width: 200px;
+}
+#filterSettings ul li.active {
+ background-color: white;
+ font-weight: 500;
+}
+#filterSettings ul li .sprites {
+ float: right;
+ margin: 8px 10px 0 0;
+}
+#filterSettings ul a li {
+ color: #1e88e5;
+}
+#filterSettings ul a:hover li {
+ color: #ffa608;
+}
+#filterSettings .filter_title {
+ color: #1e88e5;
+ font-weight: 500;
+ line-height: 22px;
+}
+#filterSettings label {
+ line-height: 12px;
+}
+
+span#sl_language {
+ padding: 2px 5px;
+ width: auto;
+ display: inline-block;
+ margin: 3px 5px 3px 20px;
+}
+
+/*END CONTROL BUTTONS*/
+/*search settings box*/
+#searchSettings,
+#searchLibrarySettings {
+ clear: both;
+ float: left;
+ width: 500px;
+ margin: -50px 0 20px 0;
+ padding: 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#searchSettings span.title,
+#searchLibrarySettings span.title {
+ color: #1e88e5;
+ font-weight: 600;
+ font-size: 13px;
+}
+#searchSettings p,
+#searchLibrarySettings p {
+ margin: 10px 0 12px 10px !important;
+ padding: 0 !important;
+}
+#searchSettings input[type=text],
+#searchLibrarySettings input[type=text] {
+ padding: 2px 4px;
+}
+#searchSettings input[type=submit],
+#searchLibrarySettings input[type=submit] {
+ padding: 2px 4px;
+}
+#searchSettings input[type=text]#searchMySurveyText,
+#searchLibrarySettings input[type=text]#searchMySurveyText {
+ width: 200px;
+ font-size: 12px;
+ padding: 2px 5px;
+}
+#searchSettings span.link,
+#searchLibrarySettings span.link {
+ float: left;
+ margin-top: 20px;
+ font-weight: 500;
+}
+
+#searchLibrarySettings {
+ margin: 0 0 20px 0;
+}
+
+/*FOLDER CONTROLLER*/
+.folder_holder.level1 {
+ margin-top: 35px;
+}
+
+.folder_holder .folder_content {
+ margin-left: 20px;
+ padding: 0;
+}
+.folder_holder .folder_content.closed {
+ display: none;
+}
+.folder_holder .folder_content.subfolder {
+ margin-bottom: 5px;
+}
+.folder_holder .folder_title {
+ padding: 4px;
+ border: 1px solid transparent;
+ margin: 15px 0 15px 0;
+ font-size: 12px;
+ font-weight: 600;
+}
+.folder_holder .folder_title a {
+ vertical-align: 0px;
+}
+.folder_holder .folder_title a span {
+ vertical-align: middle;
+}
+.folder_holder .folder_title a span:before {
+ display: table-cell;
+ vertical-align: middle;
+}
+.folder_holder .folder_title span {
+ vertical-align: middle;
+}
+.folder_holder .folder_title .folder_title_text {
+ margin-left: 5px;
+}
+.folder_holder .folder_title .folder_title_text a {
+ cursor: text;
+}
+.folder_holder .folder_title .folder_title_text a:hover {
+ color: #1e88e5;
+}
+.folder_holder .folder_title .folder_title_text input[type=text] {
+ font-size: 12px;
+ padding: 2px 3px;
+}
+.folder_holder .folder_title .map_holder_control {
+ display: none;
+}
+.folder_holder .folder_title:hover .map_holder_control {
+ display: inline-block;
+}
+.folder_holder .folder_title span.folder_blue {
+ cursor: move;
+}
+.folder_holder #folder_content_0 {
+ padding-bottom: 50px;
+}
+.folder_holder table#surveyList_new {
+ margin-bottom: 20px;
+}
+.folder_holder table#surveyList_new tr.anketa_list td.col3 {
+ cursor: move;
+}
+
+.folderhover {
+ background-color: #fff0d4 !important;
+ border: 1px solid #ffb83b !important;
+ border-radius: 5px 5px 5px 5px;
+}
+
+.mySurvey_draggable_helper {
+ cursor: move;
+}
+.mySurvey_draggable_helper .map_holder_control {
+ display: none;
+}
+.mySurvey_draggable_helper td {
+ display: none;
+ border: 0;
+}
+.mySurvey_draggable_helper td.col3 {
+ display: inline-block;
+ border: 0 !important;
+}
+.mySurvey_draggable_helper span.minus {
+ display: none !important;
+}
+.mySurvey_draggable_helper span.map_holder_control {
+ display: none !important;
+}
+
+/*END FOLDER CONTROLLER*/
+/*
+ Created on : 4-Feb-2020
+ Author : Peter Hrvatin
+*/
+#main #moje_ankete_edit {
+ box-sizing: border-box;
+ width: 100%;
+ padding: 30px 40px 40px 30px;
+}
+#main #moje_ankete_edit.page_pregledovanje, #main #moje_ankete_edit.page_ {
+ padding: 50px 60px;
+}
+#main #moje_ankete_edit.subpage_b_new_survey, #main #moje_ankete_edit.subpage_b_video, #main #moje_ankete_edit.subpage_b_features, #main #moje_ankete_edit.page_ustvari_anketo {
+ padding: 0;
+}
+#main #moje_ankete_edit fieldset {
+ max-width: 1200px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 27-Jul-2018, 11:18:08
+ Author : podkrizniku
+*/
+#survey_list {
+ min-height: 570px;
+ padding: 0px;
+ /*pages*/
+}
+#survey_list .search_title {
+ margin: 15px 0;
+ float: left;
+ font-size: 15px;
+ color: #1e88e5;
+ font-weight: 600;
+}
+#survey_list #searchMySurveys {
+ clear: both;
+ display: block;
+ float: left;
+ margin: 25px 0 10px 0;
+ padding: 10px;
+}
+#survey_list #searchMySurveys input[type=text] {
+ width: 200px;
+ padding: 4px 0 4px 7px;
+ font-size: 12px;
+ border: 1px solid #c8e3f8;
+}
+#survey_list #searchMySurveys .buttonwrapper {
+ margin: -2px 0 0 2px;
+ padding: 1px 3px;
+}
+#survey_list #pagination {
+ /*margin: 5px 0 0 330px;*/
+ margin-top: 5px;
+ margin-left: 20%;
+ /*transform: translateX(-50%);*/
+}
+#survey_list #pagination.bottom {
+ float: left;
+ margin-top: -15px;
+ margin-left: 50%;
+ transform: translateX(-50%);
+}
+#survey_list p {
+ padding: 10px;
+}
+#survey_list ul {
+ list-style: none;
+ width: 100%;
+ padding: 0px;
+ margin: 0px;
+ overflow: hidden;
+}
+#survey_list li {
+ overflow: hidden;
+ display: block;
+ width: 100%;
+ padding: 5px 0px;
+ margin: 0px;
+ font-size: 13px;
+ color: #4d4d4d;
+ border-bottom: 1px #f5fafe solid;
+}
+#survey_list li div {
+ padding: 3px 2px;
+ margin: 0px;
+ overflow: hidden;
+ line-height: 16px;
+}
+#survey_list li div a {
+ text-decoration: none;
+}
+#survey_list li div a img {
+ padding-right: 2px;
+}
+#survey_list li div a span.sprites {
+ margin-right: 2px;
+}
+
+div#sl_userNote {
+ display: inline-block;
+ width: auto;
+ padding: 2px 5px;
+ margin: 3px 5px 3px 25px;
+ border: 1px #1e88e5 solid;
+ background-color: #f5fafe;
+ color: #1e88e5;
+}
+div#sl_userNote span:hover {
+ color: #ffa608;
+}
+
+div#sl_mySurveys {
+ width: auto;
+ display: inline-block;
+ margin: 3px 5px 3px 40px;
+ padding: 2px 5px;
+ color: #1e88e5;
+}
+div#sl_mySurveys:hover {
+ color: #ffa608;
+}
+
+ul #surveyList {
+ list-style: none;
+ width: 100%;
+ padding: 0px;
+ margin: 0px;
+ overflow: hidden;
+}
+
+.survey_list_box {
+ min-height: 250px !important;
+}
+
+.users_list_box {
+ min-height: 250px !important;
+}
+.users_list_box .add_user {
+ display: flex;
+ align-items: flex-start;
+}
+.users_list_box .add_user fieldset {
+ width: 500px;
+}
+.users_list_box .add_user fieldset.new_user {
+ margin: 40px 40px 0 0;
+}
+
+#survey_list_inner {
+ padding: 10px;
+ width: auto;
+ height: auto;
+}
+
+.sl_setting_link {
+ position: absolute;
+ top: 170px;
+ right: 50px;
+ text-align: center;
+ background-color: #1e88e5;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+}
+.sl_setting_link:hover {
+ background-color: #ffa608;
+}
+.sl_setting_link a {
+ display: inline-block;
+ padding: 8px 12px;
+ color: #1e88e5;
+ font-size: 16px;
+ font-weight: bold;
+}
+
+.sl_div_error_holder {
+ margin: 0px;
+ padding: 0px 0px 0px 10px;
+}
+
+.sl_div_error {
+ width: 100%;
+}
+
+.div_sl_new {
+ padding: 50px 0px;
+}
+
+table#surveyList_new {
+ width: 100%;
+ padding: 0px;
+ margin: 0px;
+ overflow: hidden;
+ font-size: 12px;
+ color: #404040;
+ border-collapse: collapse;
+}
+table#surveyList_new tr td {
+ padding: 8px 0;
+ line-height: 15px;
+ border-bottom: 1px #dfeffb solid;
+}
+table#surveyList_new tr td .title {
+ color: #1e88e5;
+ font-size: 15px;
+ font-weight: 600;
+}
+table#surveyList_new tr td .title:hover {
+ color: #ffa608;
+}
+table#surveyList_new tr td .small {
+ color: #999999;
+ font-size: 10px;
+}
+table#surveyList_new tr td .email {
+ color: #1e88e5;
+}
+table#surveyList_new tr td .email:hover {
+ color: #ffa608;
+}
+table#surveyList_new tr td .dot {
+ cursor: default;
+ width: 8px;
+ height: 8px;
+ margin: 0 0 14px 5px;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+}
+table#surveyList_new tr td .dot.grey {
+ background-color: #c8e3f8;
+}
+table#surveyList_new tr td .dot.orange {
+ background-color: #ffa608;
+}
+table#surveyList_new tr td .dot.blue {
+ background-color: #1e88e5;
+}
+table#surveyList_new tr td.col2 {
+ padding: 15px 0 0 0 !important;
+}
+table#surveyList_new tr.sl_header_new {
+ height: 25px;
+ padding: 0px;
+ margin: 0px;
+}
+table#surveyList_new tr.sl_header_new td {
+ cursor: pointer;
+ padding: 0px;
+ color: #808080;
+ font-size: 12px;
+}
+table#surveyList_new tr.sl_header_new td:hover {
+ color: #1e88e5;
+}
+table#surveyList_new tr.sl_header_new td div.active {
+ color: #1e88e5;
+}
+table#surveyList_new tr.sl_header_new td.col1 {
+ width: 40px;
+}
+table#surveyList_new tr.sl_header_new td.col2 {
+ width: 40px;
+}
+table#surveyList_new tr.sl_header_new td.col4 {
+ width: 110px;
+}
+table#surveyList_new tr.sl_header_new td.col5 {
+ width: 120px;
+}
+table#surveyList_new tr.sl_header_new td.col6 {
+ width: 120px;
+}
+table#surveyList_new tr.sl_header_new td.col7 {
+ width: 190px;
+}
+table#surveyList_new tr.sl_header_new td.col8 {
+ width: 50px;
+}
+table#surveyList_new tr.sl_header_new td.col9 {
+ width: 50px;
+}
+table#surveyList_new tr.sl_header_new td.col10 {
+ width: 50px;
+}
+
+#survey_list_info {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ position: absolute;
+ display: none;
+ width: 400px;
+ white-space: normal;
+}
+#survey_list_info .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#survey_list_info .popup_close:hover {
+ color: #1e88e5;
+}
+#survey_list_info .popup_close a {
+ color: lightgrey;
+}
+#survey_list_info .popup_close a:hover {
+ color: #1e88e5;
+}
+#survey_list_info h2,
+#survey_list_info .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#survey_list_info p {
+ line-height: 20px;
+}
+#survey_list_info.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#survey_list_info.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#survey_list_info.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#survey_list_info.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#survey_list_info.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#survey_list_info.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#survey_list_info.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#survey_list_info.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#survey_list_info.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#survey_list_info.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#survey_list_info.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#survey_list_info.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#survey_list_info.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#survey_list_info.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#survey_list_info.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#survey_list_info .survey_info_title {
+ color: black !important;
+ font-size: 14px;
+ font-weight: 600;
+}
+#survey_list_info span.space {
+ display: inline-block;
+ width: 95px;
+ padding: 2px 0px;
+ font-weight: 600;
+}
+#survey_list_info .infoData {
+ margin-left: 95px;
+ width: auto;
+}
+#survey_list_info span.arrow {
+ left: 12%;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 11:18:37
+ Author : podkrizniku
+*/
+#pagination {
+ padding: 0px 10px;
+ float: left;
+}
+#pagination div {
+ float: left;
+ margin: 3px 3px;
+ display: inline;
+ border: 1px solid #1e88e5;
+ background-color: white;
+ padding: 2px 6px;
+}
+#pagination div:hover {
+ background-color: #f0f7fd;
+}
+#pagination div a {
+ display: block;
+ text-decoration: none;
+ color: #1e88e5;
+}
+#pagination div.currentPage {
+ padding: 2px 6px;
+ color: white;
+ background-color: #1e88e5;
+}
+#pagination div.currentPage_small {
+ color: #1e88e5 !important;
+}
+#pagination div.currentPage_small a {
+ color: white !important;
+ background: #1e88e5;
+}
+#pagination div.spacePage {
+ color: #1e88e5;
+ font-weight: normal;
+ text-decoration: none;
+ background: none;
+ padding: 2px 6px;
+ border: none;
+}
+#pagination div.disabledPage {
+ color: #c8e3f8;
+ background: #ffffff;
+ border: 1px solid #c8e3f8;
+ padding: 2px 6px;
+}
+#pagination div.justtext {
+ border: none;
+ background: #ffffff;
+ padding: 2px 6px;
+}
+
+.quick_edit_container #pagination {
+ margin: 0 300px 0 240px;
+ padding: 5px 0px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 12:31:49
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 12:42:41
+ Author : podkrizniku
+*/
+table.gdpr_surveys {
+ max-width: 1200px;
+ padding: 0px;
+ margin: 30px 0 10px 0;
+ font-size: 13px;
+ color: #404040;
+ border-collapse: collapse;
+}
+table.gdpr_surveys tr th {
+ padding: 3px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ text-align: center;
+ font-weight: 600;
+ background-color: #c8e3f8;
+}
+table.gdpr_surveys tr td {
+ padding: 3px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ background-color: #f5fafe;
+ text-align: center;
+}
+table.gdpr_surveys tr.red_row td {
+ background-color: #ffe8e8 !important;
+}
+table.gdpr_surveys tr.green_row td {
+ background-color: #a8eea8 !important;
+}
+
+#form_gdpr_user_settings div.setting {
+ height: 25px;
+}
+#form_gdpr_user_settings div.setting.red label {
+ color: red;
+}
+#form_gdpr_user_settings div.setting.red input {
+ border: 1px red solid !important;
+}
+#form_gdpr_user_settings span.nastavitveSpan2 {
+ width: 160px;
+}
+#form_gdpr_user_settings input[type=text] {
+ padding: 3px 8px;
+}
+#form_gdpr_user_settings input.red {
+ border: 1px red solid !important;
+}
+
+#gdpr_authority_info {
+ padding: 10px 0 15px 0;
+}
+
+.gdpr_authority_info_data {
+ padding: 0 0 0 20px;
+}
+
+.requests_table_title {
+ line-height: 30px;
+ margin-top: 20px;
+ font-size: 14px;
+ font-weight: 600;
+}
+
+a .requests_table_title {
+ color: #1e88e5;
+}
+
+#gdpr_additional_info input[type=text],
+#gdpr_data_settings input[type=text] {
+ padding: 2px;
+ width: 250px;
+}
+#gdpr_additional_info input.line_text,
+#gdpr_data_settings input.line_text {
+ margin: 2px 0 2px 10px;
+}
+#gdpr_additional_info input.line_text.long,
+#gdpr_data_settings input.line_text.long {
+ width: 400px;
+}
+#gdpr_additional_info textarea,
+#gdpr_data_settings textarea {
+ padding: 5px;
+}
+
+fieldset#gdpr_export_individual a,
+fieldset#gdpr_export_activity a {
+ line-height: 22px;
+}
+fieldset#gdpr_export_individual a .faicon,
+fieldset#gdpr_export_activity a .faicon {
+ margin-right: 5px;
+}
+fieldset#gdpr_export_individual a .faicon.preview,
+fieldset#gdpr_export_activity a .faicon.preview {
+ margin-right: 2px;
+}
+fieldset#gdpr_export_individual a .faicon:before,
+fieldset#gdpr_export_activity a .faicon:before {
+ font-size: 16px !important;
+}
+
+#preview_gdpr_export {
+ height: auto;
+ max-height: 530px;
+}
+#preview_gdpr_export h2 {
+ color: #333 !important;
+}
+#preview_gdpr_export .content {
+ max-height: 450px;
+ padding: 10px 20px 20px 20px;
+ margin-top: 40px;
+ line-height: 18px;
+ overflow-x: hidden;
+ overflow-y: auto;
+ background-color: #efefef;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 14:35:25
+ Author : podkrizniku
+*/
+#form_profile_user_settings div.setting {
+ min-height: 25px;
+}
+#form_profile_user_settings div.data {
+ margin-top: 6px;
+ font-size: 13px;
+}
+#form_profile_user_settings span.setting_title {
+ float: left;
+ width: 150px;
+}
+#form_profile_user_settings input[type=text] {
+ padding: 3px 8px;
+}
+#form_profile_user_settings input[type=radio] {
+ vertical-align: 0;
+}
+#form_profile_user_settings input[type=password] {
+ padding: 3px 8px;
+}
+#form_profile_user_settings .settings-2fa-code {
+ display: block;
+ width: 390px;
+ padding-left: 150px;
+ padding-top: 20px;
+}
+#form_profile_user_settings .google-2fa-validate,
+#form_profile_user_settings .google-2fa-deactivate {
+ display: block;
+ width: 225px;
+ padding-left: 150px;
+}
+#form_profile_user_settings #google-2fa-bvestilo {
+ display: none;
+ clear: both;
+ padding: 10px;
+ color: #ffa608;
+}
+
+table.login_tracking {
+ max-width: 1200px;
+ padding: 0px;
+ margin: 20px 0 5px 10px;
+ font-size: 13px;
+ color: #404040;
+ border-collapse: collapse;
+}
+table.login_tracking tr th {
+ padding: 5px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ text-align: center;
+ font-weight: 600;
+ background-color: #c8e3f8;
+}
+table.login_tracking tr td {
+ padding: 5px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ background-color: #f5fafe;
+ text-align: center;
+}
+table.login_tracking tr.hide {
+ display: none;
+}
+
+.login_tracking_more {
+ cursor: pointer;
+ padding-left: 10px;
+ color: #1e88e5;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 13:04:34
+ Author : podkrizniku
+*/
+#survey_list_settings {
+ border: 1px solid #990000;
+ background: white;
+ height: 570px;
+ overflow: auto;
+ width: 810px;
+}
+
+#survey_ListQickInfo {
+ position: fixed;
+ width: auto;
+ z-index: 90;
+ background-color: #f8f8f8;
+ padding: 10px;
+ border: 1px solid #c8e3f8;
+ top: 50px;
+ right: 100px;
+ font-size: 12px;
+ border-radius: 7px;
+ -moz-border-radius: 7px;
+ -webkit-border-radius: 7px;
+ box-shadow: 0 0 15px grey;
+ -moz-box-shadow: 0 0 15px grey;
+ -webkit-box-shadow: 0 0 15px grey;
+}
+
+#sortable {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 350px;
+}
+#sortable li.sortable_noGroup {
+ margin: 0 3px 3px 3px;
+ padding: 3px 5px;
+ font-size: 13px;
+ height: 16px;
+ border: 1px solid grey;
+ background-color: #efefef;
+ color: grey;
+ font-weight: bold;
+ width: 300px;
+}
+#sortable li.sortable_noGroup:hover {
+ border: 1px solid #6cb1ee;
+}
+#sortable li.sortable_group {
+ margin: 0 3px 3px 3px;
+ padding: 3px 5px;
+ font-size: 13px;
+ height: auto;
+ border: 1px dashed grey;
+ background-color: white;
+ color: grey;
+ font-weight: bold;
+ width: 300px;
+}
+#sortable li.sortable_group:hover {
+ border: 1px solid #c8e3f8;
+}
+#sortable li.sortable_group div#group_holder #sortableGroup li.sortable_noGroup {
+ float: left;
+ width: 260px;
+}
+
+#sortableGroup {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+ width: 200px;
+}
+#sortableGroup li.sortable_noGroup {
+ padding: 3px 5px;
+ font-size: 13px;
+ height: 17px;
+ border: 1px solid grey;
+ background-color: #efefef;
+ color: grey;
+ font-weight: bold;
+}
+
+li.sortable_noGroup {
+ margin: 0 3px 3px 3px;
+ padding: 4px 5px;
+ font-size: 13px;
+ height: 17px;
+ border: 1px solid grey;
+ background-color: #efefef;
+ color: grey;
+ font-weight: bold;
+}
+
+#success_save {
+ color: #ffa608;
+ width: auto;
+ padding: 5px;
+ margin: 5px 0px;
+ display: none;
+}
+
+.no-cookie {
+ visibility: hidden;
+ display: inline;
+}
+
+/* Edit user popup */
+#vrednost_edit.edit_user {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ width: 700px;
+}
+#vrednost_edit.edit_user .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#vrednost_edit.edit_user .popup_close:hover {
+ color: #1e88e5;
+}
+#vrednost_edit.edit_user .popup_close a {
+ color: lightgrey;
+}
+#vrednost_edit.edit_user .popup_close a:hover {
+ color: #1e88e5;
+}
+#vrednost_edit.edit_user h2,
+#vrednost_edit.edit_user .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#vrednost_edit.edit_user p {
+ line-height: 20px;
+}
+#vrednost_edit.edit_user.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#vrednost_edit.edit_user.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#vrednost_edit.edit_user.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#vrednost_edit.edit_user.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#vrednost_edit.edit_user.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#vrednost_edit.edit_user.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#vrednost_edit.edit_user.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#vrednost_edit.edit_user.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#vrednost_edit.edit_user.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#vrednost_edit.edit_user.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#vrednost_edit.edit_user.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#vrednost_edit.edit_user.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#vrednost_edit.edit_user.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#vrednost_edit.edit_user.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#vrednost_edit.edit_user.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#vrednost_edit.edit_user .edit_user_content {
+ display: flex;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings {
+ width: 450px;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment {
+ margin-bottom: 20px;
+ padding: 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment p {
+ margin: 5px 0;
+ line-height: 16px;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment label {
+ width: 140px;
+ font-weight: 500;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=text],
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=password] {
+ width: 200px;
+ padding: 2px 5px;
+ color: #333;
+ border: 1px solid #c6c6c6;
+}
+#vrednost_edit.edit_user .edit_user_content .user_settings .segment input[type=radio] {
+ margin-left: 0;
+}
+#vrednost_edit.edit_user .edit_user_content .survey_list {
+ width: 230px;
+ max-height: 400px;
+ overflow-y: auto;
+ margin-top: 45px;
+ margin-left: 20px;
+ padding: 0 10px 10px 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#vrednost_edit.edit_user .edit_user_content .survey_list ul {
+ padding-left: 15px;
+ list-style-type: none;
+ line-height: 18px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Aug-2018, 10:36:23
+ Author : podkrizniku
+*/
+#globalSetingsLinks {
+ float: left;
+ z-index: 78;
+ display: inline-block;
+ width: 220px;
+ font-size: 13px;
+ padding: 0px;
+ margin: 0 20px 0 0;
+}
+#globalSetingsLinks h2 {
+ padding: 0px;
+ margin: 0 20px 0 0;
+ padding: 2px;
+ font-size: 14px;
+ font-weight: 600;
+}
+#globalSetingsLinks ul {
+ padding: 5px;
+ margin: 0px;
+ list-style: none;
+}
+#globalSetingsLinks ul li {
+ padding: 4px 0px 4px 20px;
+ border-bottom: 1px #efefef solid;
+ color: #ffa608;
+ font-weight: normal;
+}
+#globalSetingsLinks ul li a {
+ color: #1e88e5;
+}
+#globalSetingsLinks ul li.highlightLineTab {
+ color: #ffa608;
+ font-weight: normal;
+ /*background-image: url("../../../admin/survey/img_new/arrow1_orange.png");
+ background-position: 200px 9px;
+ background-repeat: no-repeat;*/
+}
+#globalSetingsLinks ul li.highlightLineTab a {
+ color: #ffa608;
+ font-weight: normal;
+}
+#globalSetingsLinks ul li.highlightLineTab a span {
+ color: #ffa608;
+ font-weight: 500;
+}
+#globalSetingsLinks ul li.nonhighlight a:hover {
+ color: #ffa608;
+ font-weight: normal;
+}
+#globalSetingsLinks ul li.nonhighlight a:hover span {
+ color: #ffa608;
+ font-weight: normal;
+}
+#globalSetingsLinks ul li.nonhighlight a span.extended {
+ color: #ffa608;
+ font-weight: 500;
+}
+#globalSetingsLinks ul li.highlightLineTab.navi_tracking {
+ background-image: none !important;
+}
+#globalSetingsLinks ul#sub_navi_alert li {
+ padding-left: 30px;
+}
+#globalSetingsLinks ul#sub_navi_tracking li {
+ padding-left: 30px;
+}
+
+/* sub settings (under second navigation) */
+#topSettingsHolder {
+ position: relative;
+ box-sizing: border-box;
+ width: 100%;
+ height: 42px;
+ margin: 0;
+ padding: 6px 15px 5px 40px;
+ color: #1e88e5;
+ border-bottom: 1px #c8e3f8 solid;
+}
+#topSettingsHolder .borderLeft {
+ padding-left: 20px;
+ border-left: 1px dotted #c8e3f8;
+}
+
+#additional_navigation {
+ position: relative;
+ display: inline-block;
+ float: left;
+ width: auto;
+ margin: 9px 0px 0 0;
+ background: 0;
+}
+#additional_navigation a span {
+ padding: 2px 50px 2px 0;
+ font-size: 12px;
+ font-weight: 500;
+ color: #1e88e5;
+}
+#additional_navigation a:hover span {
+ color: #ffa608;
+}
+#additional_navigation a span.active {
+ color: #ffa608;
+ background: 0;
+}
+#additional_navigation a span.faicon.arrow_back {
+ padding: 0;
+ line-height: 0px;
+ margin-right: 40px;
+}
+
+/*checkboxes dropdown*/
+#toggleDataCheckboxes {
+ cursor: pointer;
+ position: relative;
+ display: inline-block;
+ width: auto;
+ padding: 2px 40px !important;
+ margin: 0 0 0 0;
+ font-weight: 500;
+}
+#toggleDataCheckboxes:hover {
+ color: #ffa608 !important;
+}
+#toggleDataCheckboxes span {
+ margin-right: 3px;
+}
+
+#toggleDataCheckboxes2 {
+ cursor: pointer;
+ margin: 0 0 10px 10px;
+ color: #1e88e5;
+}
+#toggleDataCheckboxes2:hover {
+ color: #ffa608 !important;
+}
+#toggleDataCheckboxes2 .faicon {
+ vertical-align: -2px;
+ padding-right: 5px;
+}
+
+#dataSettingsCheckboxes {
+ width: calc(100% + 50px);
+ padding: 10px 10px 18px 20px;
+ margin: -30px 0 20px -40px;
+ background-color: #f5fafe;
+ border-bottom: 1px solid #c8e3f8;
+}
+#dataSettingsCheckboxes #toggleDataCheckboxes {
+ clear: both;
+ float: none;
+ margin: 0 0 10px 0;
+}
+#dataSettingsCheckboxes #toggleDataCheckboxes span {
+ margin-bottom: 2px;
+}
+#dataSettingsCheckboxes:not(.paraAnalysisGraph) {
+ height: 80px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 12:55:46
+ Author : podkrizniku
+*/
+#notifications {
+ min-height: 500px;
+}
+#notifications .sent_list {
+ display: inline;
+ float: left;
+ width: 470px;
+ min-height: 200px;
+ margin-right: 60px;
+}
+#notifications .sent_list ul {
+ padding-left: 0;
+}
+#notifications .sent_list ul li {
+ list-style-type: none;
+ margin: 5px 0;
+ padding: 5px 8px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#notifications .sent_list ul li.unread {
+ border: 1px #ffa608 solid;
+ background-color: #ffdda1;
+}
+#notifications .recieved_list {
+ display: inline;
+ float: left;
+ width: 470px;
+ min-height: 200px;
+ margin-right: 60px;
+}
+#notifications .recieved_list ul {
+ padding-left: 0;
+}
+#notifications .recieved_list ul li {
+ list-style-type: none;
+ margin: 5px 0;
+ padding: 5px 8px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#notifications .recieved_list ul li:hover {
+ cursor: pointer;
+ background-color: #c8e3f8;
+ border: 1px #1e88e5 solid;
+}
+#notifications .recieved_list ul li.unread {
+ border: 1px #ffa608 solid;
+ background-color: #ffdda1;
+}
+#notifications .recieved_list ul li.active {
+ cursor: pointer;
+ border: 1px #1e88e5 solid;
+}
+#notifications #message {
+ display: inline;
+ float: left;
+ margin-top: 30px;
+ padding: 20px;
+ width: 415px;
+ background-color: #f5fafe;
+ border: 1px lightgrey solid;
+}
+#notifications .send_form {
+ display: inline;
+ float: left;
+ margin-top: 30px;
+ padding: 20px;
+ width: 415px;
+ background-color: #f5fafe;
+ border: 1px lightgrey solid;
+ color: #404040 !important;
+}
+#notifications .send_form input[type=text] {
+ width: 400px;
+ padding: 3px 5px;
+ border: 1px solid lightgrey !important;
+ color: #333 !important;
+}
+#notifications .send_form textarea {
+ width: 400px;
+ padding: 3px 5px;
+ border: 1px solid lightgrey !important;
+ color: #333 !important;
+}
+
+#new_notification_alert {
+ cursor: pointer;
+ position: absolute;
+ top: 15px;
+ left: 0;
+ right: 0;
+ margin: 0 auto;
+ padding: 5px 8px;
+ width: 300px;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ vertical-align: middle;
+ font-weight: 600;
+ font-size: 13px;
+ color: white;
+ background-color: #ffa608;
+}
+
+#unread_notifications {
+ display: none;
+ height: auto;
+ width: 500px;
+ margin: 0 auto;
+}
+#unread_notifications ul {
+ padding-left: 0;
+ margin-bottom: 50px;
+ line-height: 18px;
+}
+#unread_notifications ul li {
+ list-style-type: none;
+ margin: 5px 0;
+ padding: 5px 8px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#unread_notifications a {
+ color: #1e88e5;
+}
+#unread_notifications .gdpr_popup_radio {
+ padding-top: 6px;
+}
+#unread_notifications .gdpr_popup_radio input {
+ vertical-align: top;
+ margin-top: 2px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 30-Jul-2018, 14:55:58
+ Author : podkrizniku
+*/
+/* font awesom za admin */
+#variable_holder input[type=checkbox].enka-admin-custom,
+#variable_holder input[type=radio].enka-admin-custom {
+ display: none !important;
+}
+
+#variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
+#variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
+ font-family: "Font Awesome 5 Free";
+ display: inline-block;
+ font-size: 14px;
+ color: #aaa;
+ font-weight: 400;
+}
+
+#variable_holder input[type=checkbox].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before,
+#variable_holder input[type=radio].enka-admin-custom.enka-inline + span.enka-checkbox-radio:before {
+ display: inline-block;
+ float: left;
+ padding-top: 4px;
+ padding-left: 4px;
+ font-weight: 400;
+}
+
+#variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
+ /*content: "\f096";*/
+ content: "";
+ letter-spacing: 10px;
+}
+
+#variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
+ /*content: "\f10c";*/
+ content: "";
+ letter-spacing: 8px;
+}
+
+/* select, checked */
+#variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
+ /*content: "\f046";*/
+ content: "";
+ color: #333;
+ letter-spacing: 8px;
+}
+
+#variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
+ /*content: "\f192";*/
+ content: "";
+ color: #333;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 01-Aug-2018, 12:52:20
+ Author : podkrizniku
+*/
+#toolbox_basic {
+ position: fixed;
+ z-index: 50;
+ top: 255px;
+ left: 1px;
+ height: 335px;
+ width: 50px;
+ background-color: #1e88e5;
+ border: 0;
+}
+#toolbox_basic div.new_adv {
+ cursor: default;
+ cursor: pointer;
+ margin: 0px 1px;
+ padding: 8px 4px;
+ text-align: center;
+ background-color: #ee9800;
+ background-repeat: repeat-y;
+}
+#toolbox_basic p {
+ margin: 10px 3px 3px;
+}
+#toolbox_basic p img {
+ cursor: move;
+}
+#toolbox_basic p span.sprites {
+ margin-right: 2px;
+}
+#toolbox_basic .handle {
+ color: #990000;
+ font-weight: bold;
+}
+#toolbox_basic p.left {
+ overflow: hidden;
+ margin-left: 0;
+ margin-right: 0;
+ padding-left: 9px;
+ padding-right: 2px;
+}
+#toolbox_basic p.right {
+ overflow: hidden;
+ margin-left: 0;
+ margin-right: 0;
+ padding-left: 9px;
+ padding-right: 2px;
+}
+#toolbox_basic p.whole {
+ overflow: hidden;
+ margin-left: 0;
+ margin-right: 0;
+ padding-left: 2%;
+ padding-right: 2%;
+ margin-top: 6px;
+}
+#toolbox_basic p.new_spr {
+ cursor: pointer;
+ margin: 0px 1px;
+ padding: 8px 4px;
+ text-align: center;
+}
+#toolbox_basic p.new_spr:hover {
+ background-color: #1775c8;
+}
+#toolbox_basic p.new_if {
+ cursor: pointer;
+ margin: 0px 1px;
+ padding: 8px 4px;
+ text-align: center;
+}
+#toolbox_basic p.new_if:hover {
+ background-color: #1775c8;
+}
+#toolbox_basic p.new_pb {
+ cursor: pointer;
+ margin: 0px 1px;
+ padding: 8px 4px;
+ text-align: center;
+}
+#toolbox_basic p.new_pb:hover {
+ background-color: #1775c8;
+}
+#toolbox_basic p.new_block {
+ cursor: pointer;
+ margin: 0px 1px;
+ padding: 8px 4px;
+ text-align: center;
+}
+#toolbox_basic p.new_block:hover {
+ background-color: #1775c8;
+}
+
+#toolbox_add_advanced {
+ display: none;
+ cursor: auto;
+ z-index: -1;
+ position: fixed;
+ top: 218px;
+ left: 55px;
+ width: 495px;
+ height: auto;
+ min-height: 100px;
+ padding: 0px 10px 10px 10px;
+ background-color: #f5fafe;
+ text-align: left;
+ border: 1px solid #c8e3f8;
+}
+#toolbox_add_advanced p.toolbox_add_title {
+ color: #1e88e5;
+ font-weight: 600;
+ font-size: 14px;
+}
+#toolbox_add_advanced p.new_spr {
+ float: left;
+ cursor: pointer;
+ width: 150px;
+ margin: 1px 0px 1px 1px;
+ padding: 4px 7px;
+ text-align: left;
+}
+#toolbox_add_advanced p.new_spr:hover {
+ background-color: #dfeffb;
+}
+#toolbox_add_advanced p.new_loop {
+ float: left;
+ cursor: pointer;
+ width: 150px;
+ margin: 1px 0px 1px 1px;
+ padding: 4px 7px;
+ text-align: left;
+}
+#toolbox_add_advanced p.new_loop:hover {
+ background-color: #dfeffb;
+}
+#toolbox_add_advanced .holder {
+ width: 33%;
+ float: left;
+ border: 0;
+ background: 0;
+}
+#toolbox_add_advanced p.new_question {
+ text-align: left;
+}
+#toolbox_add_advanced .new_spr_spacer {
+ float: left;
+ cursor: pointer;
+ width: 150px;
+ margin: 1px 0px 1px 1px;
+ padding: 4px 7px;
+ text-align: left;
+ cursor: auto;
+ height: 18px;
+}
+#toolbox_add_advanced p.naslov {
+ float: left;
+ width: 150px;
+ margin: 10px 0 3px 0;
+ padding: 0 5px 0px 2px;
+ font-size: 13px;
+ font-weight: 600;
+ text-align: left;
+}
+#toolbox_add_advanced p span {
+ display: none;
+}
+
+#toolbox_advanced_settings {
+ position: fixed;
+ cursor: pointer;
+ top: 218px;
+ left: 1px;
+ width: 18px;
+ height: 19px;
+ padding: 5px 15px 6px;
+ background-color: #f5fafe;
+ border: 1px #c8e3f8 solid;
+}
+#toolbox_advanced_settings #toolbox_advanced_settings_holder {
+ display: none;
+ cursor: auto;
+ z-index: 99;
+ position: fixed;
+ top: 218px;
+ left: 55px;
+ width: auto;
+ height: auto;
+ min-height: 100px;
+ padding: 10px 20px 0 10px;
+ text-align: left;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#toolbox_advanced_settings #toolbox_advanced_settings_holder span.advanced_settings_title {
+ vertical-align: middle;
+ padding: 0 0 0 2px;
+ color: #1e88e5;
+ font-weight: 600;
+ font-size: 12px;
+}
+#toolbox_advanced_settings #toolbox_advanced_settings_holder span.advanced_setting {
+ display: inline-block;
+ text-align: center;
+ width: 20px;
+ padding: 3px 5px 0 0;
+}
+
+#locked_toolbar {
+ position: absolute;
+ top: 1px;
+ left: 1px;
+ width: 45px;
+ height: 194px;
+ padding: 140px 0 0 3px;
+ background: rgba(22, 109, 186, 0.85);
+}
+#locked_toolbar span.lock_big {
+ margin-left: 13px;
+}
+
+#toolbox_basic.forma {
+ height: 266px;
+ top: 235px;
+}
+#toolbox_basic.forma #locked_toolbar {
+ height: 199px;
+ padding-top: 85px;
+}
+
+.mobile_add_question {
+ display: none;
+}
+
+.mobile_add_question_popup {
+ display: none;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 11:04:39
+ Author : podkrizniku
+*/
+.nastavitveSpan4 {
+ display: table-cell;
+ float: left;
+ font-weight: 500;
+ width: 55%;
+ clear: both;
+}
+
+.nastavitveSpan5 {
+ display: table-cell;
+ float: left;
+ font-weight: 500;
+ width: 25%;
+ clear: both;
+}
+
+select#skin_anketa {
+ max-width: 120px;
+ margin-bottom: 2px;
+}
+
+select#skin {
+ max-width: 120px;
+ margin: 4px 0 2px 0;
+}
+
+#anketa_edit.glasovanje .anketa_edit_main {
+ display: flex;
+ /* Leve nastavitve */
+ /* Srednji del */
+ /* Desne nastavitve */
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings {
+ width: 330px;
+ margin: 20px 0 0 0;
+ padding: 0;
+ line-height: 18px;
+ background-color: white;
+ border: 1px solid #c8e3f8;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings .more {
+ float: right;
+ margin: 5px 20px 10px 0;
+ font-weight: 500;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings .less {
+ float: right;
+ margin: 5px 20px 10px 0;
+ font-weight: 500;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_holder {
+ height: 35px;
+ font-size: 16px;
+ font-weight: 500;
+ background-color: #c8e3f8;
+ width: 100%;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_content {
+ padding: 8px 0px 7px 0px;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings .header_content .header_left {
+ color: #1e88e5;
+ font-size: 16px;
+ font-weight: 500;
+ width: auto;
+ float: left;
+ padding-left: 10px;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings fieldset {
+ margin: 11px 10px;
+ padding: 3px 5px;
+ border: 0;
+ border-top: 1px solid #1e88e5;
+}
+#anketa_edit.glasovanje .anketa_edit_main #glas_settings legend {
+ margin: 0;
+ padding: 0 10px 0 5px;
+ background-color: rgba(0, 0, 0, 0);
+ color: #1e88e5;
+ font-weight: 500;
+}
+#anketa_edit.glasovanje .anketa_edit_main #placeholder {
+ margin: 85px 0 0 20px;
+ max-width: 1100px;
+}
+#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje {
+ padding: 3px;
+ min-height: 400px;
+ width: calc(96% - 315px);
+}
+#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul.first {
+ margin: 1px 0 0 0 !important;
+}
+#anketa_edit.glasovanje .anketa_edit_main #placeholder #branching.branching_glasovanje ul li {
+ margin-left: 0px !important;
+}
+#anketa_edit.glasovanje .anketa_edit_main #placeholder #vprasanje_float_editing {
+ margin-top: 45px !important;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder {
+ position: absolute;
+ right: calc(3% + 5px);
+ margin-left: -5px;
+ top: 222px;
+ height: auto;
+ width: 310px;
+ border: 0;
+ background-color: transparent;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings {
+ padding: 5px 15px;
+ width: 315px;
+ box-sizing: border-box;
+ float: right;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings fieldset {
+ border: 1px #606060 solid;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings .form_bottom_settings {
+ margin: 0 8px 10px 8px;
+ padding: 0 0 5px 10px;
+ background-color: inherit;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje {
+ padding: 1px 0 10px 10px;
+}
+#anketa_edit.glasovanje .anketa_edit_main #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
+ padding: 2px;
+ border: 0;
+ background-color: #ffdda1;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 13:34:26
+ Author : podkrizniku
+*/
+#branching.expanded.branching_forma ul.first {
+ margin-top: 59px !important;
+}
+#branching.expanded.branching_forma ul.first li.empty_vrivanje {
+ margin-top: -45px !important;
+}
+
+#branching.collapsed.branching_forma ul.first {
+ margin-top: 66px !important;
+}
+
+#anketa_edit.forma #quick_settings_holder {
+ position: absolute;
+ right: 5%;
+ top: 235px;
+ height: auto;
+ width: 310px;
+ border: 0;
+ background-color: transparent;
+}
+#anketa_edit.forma #quick_settings_holder #quick_settings {
+ padding: 5px 15px;
+ width: 315px;
+ box-sizing: border-box;
+ float: right;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#anketa_edit.forma #quick_settings_holder #quick_settings fieldset {
+ border: 1px #606060 solid;
+}
+#anketa_edit.forma #quick_settings_holder #quick_settings .form_bottom_settings {
+ margin: 0 8px 10px 8px;
+ padding: 0 0 5px 10px;
+ background-color: inherit;
+}
+#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje {
+ padding: 1px 0 10px 10px;
+}
+#anketa_edit.forma #quick_settings_holder #quick_settings #form_settings_obvescanje textarea#alert_finish_other_emails:focus {
+ padding: 2px;
+ border: 0;
+ background-color: #ffdda1;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 13:12:19
+ Author : podkrizniku
+*/
+/* Okno za drop vprasanja, ko je anketa prazna */
+.empty_vrivanje {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start;
+ margin: 20px 0px 20px 45px !important;
+ padding: 60px 0 !important;
+ text-align: center;
+ font-weight: 600;
+ border: 1px solid #dfeffb;
+}
+.empty_vrivanje .empty_vrivanje_title {
+ margin: 0 auto;
+ padding: 8px 20px;
+ font-size: 16px;
+ font-weight: 500;
+ color: #1e88e5;
+ background-color: #f0f7fd;
+ border: 1px solid #1e88e5;
+}
+.empty_vrivanje .empty_vrivanje_subtitle {
+ margin: 15px auto 0 auto;
+ font-size: 14px;
+ font-weight: 400;
+}
+.empty_vrivanje .empty_vrivanje_subtitle a {
+ font-weight: 500;
+}
+
+.empty_vrivanje.branchinghover {
+ color: white;
+ background: 0 !important;
+ background-color: #ffa608;
+}
+.empty_vrivanje.branchinghover a {
+ display: inline !important;
+ color: white;
+}
+.empty_vrivanje.branchinghover .empty_vrivanje_title {
+ color: white;
+ background-color: #ffa608;
+ border-color: white;
+}
+
+.editmenu {
+ float: right;
+ margin: 2px 0px 0px 0px;
+ padding: 2px;
+ padding-right: 10px;
+ border: 0;
+ position: static;
+}
+
+.extra_opt {
+ margin-right: 10px;
+}
+.extra_opt a {
+ color: black;
+ text-decoration: none;
+ vertical-align: bottom;
+}
+
+.intro_concl {
+ float: left;
+ font-size: 12px;
+ color: grey;
+ padding: 4px;
+}
+
+.save_button {
+ float: right;
+ margin: 10px 0px;
+ padding-right: 10px;
+ z-index: 50;
+}
+
+li.spr div.edit_mode {
+ display: none;
+}
+li.spr div.preview_mode {
+ display: block;
+}
+li.spr thead.edit_mode {
+ display: none;
+}
+li.spr .editingOnly {
+ visibility: hidden;
+}
+li.spr span.inline_other {
+ display: none;
+}
+li.spr #variabla_new span.inline_other {
+ display: inline;
+ margin: 0 10px;
+}
+
+div[contenteditable][default="1"][vre_id=new] {
+ color: #aaa;
+}
+
+div.stolpci {
+ float: left;
+}
+div.stolpci span.inline_delete {
+ display: none;
+}
+div.stolpci span.inline_edit {
+ display: none;
+}
+
+div#variabla_new span.inline_move {
+ visibility: hidden;
+}
+div#variabla_new span.inline_edit {
+ visibility: hidden;
+}
+div#variabla_new span.inline_delete {
+ visibility: hidden;
+}
+div#variabla_new span.inline_if_follow {
+ visibility: hidden;
+}
+div#variabla_new span.inline_if_not {
+ visibility: hidden;
+}
+div#variabla_new span.inline_hidden {
+ visibility: hidden;
+}
+div#variabla_new span.correct {
+ visibility: hidden;
+}
+
+.show-hidden {
+ visibility: visible !important;
+}
+
+.show-disable {
+ visibility: visible !important;
+}
+
+.show-correct {
+ visibility: visible !important;
+ color: #1e88e5 !important;
+}
+
+.show-correct:before {
+ visibility: visible !important;
+ color: #33cc33 !important;
+}
+
+#vprasanje {
+ display: none;
+ position: fixed;
+ top: 5%;
+ bottom: 5%;
+ right: 3%;
+ width: 80%;
+ z-index: 80;
+ padding: 10px;
+}
+
+.branch {
+ margin: 0px 0px 0px 0px;
+ padding: 0px 0px 0px 0px;
+}
+
+#div_status_values {
+ display: none;
+ position: fixed;
+ z-index: 90;
+ top: 20px;
+ right: 30px;
+ width: 720px;
+ padding: 10px;
+ border: 1px solid #990000;
+ background-color: #f8f8f8;
+}
+#div_status_values fieldset {
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+#div_status_values legend {
+ background-color: #f5fafe;
+}
+
+._branch {
+ padding: 0px !important;
+ margin: 0px !important;
+}
+
+/*question 5_2 - chat*/
+.tawk-chat-activation.button {
+ margin: 8px 10px;
+ padding: 6px 8px;
+ float: left;
+ color: white;
+ font-size: 13px;
+ font-weight: 500;
+ text-align: center;
+ background-color: #1e88e5;
+ border: 1px solid #1e88e5;
+ border-radius: 4px;
+}
+.tawk-chat-activation.button:hover {
+ background-color: #ffa608;
+ border: 1px solid #ffa608;
+}
+
+/*bottom links*/
+.forma_bottom {
+ box-sizing: border-box;
+ width: 100%;
+ height: 30px;
+ padding: 40px 10px 20px 45px;
+ font-size: 12px;
+}
+
+.forma_bottom_inner {
+ display: inline-block;
+}
+
+.forma_bottom_inner.changes {
+ float: left;
+ width: 220px;
+}
+.forma_bottom_inner.changes table tr td {
+ padding: 0 5px 0 0;
+}
+
+.forma_bottom_inner.links {
+ float: right;
+ font-size: 12px;
+}
+.forma_bottom_inner.links a {
+ padding-left: 25px;
+}
+
+.kviz-editing-correct::before {
+ color: #33cc33 !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 09:43:11
+ Author : podkrizniku
+*/
+#placeholder {
+ display: flex;
+ width: 98%;
+ max-width: 1450px;
+ margin: 5px 0 0 30px;
+}
+
+#branching {
+ min-height: 400px;
+ width: calc(96% - 315px);
+ margin: 0;
+ background-color: white;
+}
+#branching ul {
+ padding: 0;
+ margin: 0;
+}
+#branching li {
+ list-style: none;
+}
+#branching li div.if_remove {
+ display: none;
+}
+#branching li.spr {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.spr div.spr_edit {
+ display: none;
+}
+#branching li.spr:hover div.spr_edit {
+ display: block;
+}
+#branching li.if {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.if:hover span.conditions_display {
+ background-color: #dfeffb;
+ cursor: pointer;
+}
+#branching li.if:hover div.if_remove {
+ display: block;
+}
+#branching li.block {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.block:hover span.conditions_display {
+ background-color: #f1f1ff;
+ cursor: pointer;
+}
+#branching li.block:hover div.if_remove {
+ display: block;
+}
+#branching li.loop {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.loop:hover span.conditions_display {
+ background-color: #eef9ff;
+ cursor: pointer;
+}
+#branching li.loop:hover div.if_remove {
+ display: block;
+}
+#branching li.endif {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.endif:hover {
+ background-color: #dfeffb;
+ cursor: pointer;
+}
+#branching li.endblock {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.endblock:hover {
+ background-color: #f1f1ff;
+ cursor: pointer;
+}
+#branching li.endloop {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.endloop:hover {
+ background-color: #eef9ff;
+ cursor: pointer;
+}
+#branching li.inout {
+ margin-left: 40px;
+ position: relative;
+ border-left: 2.5px solid transparent;
+}
+#branching li.inout:hover {
+ background-color: #f1f1ff;
+ cursor: pointer;
+}
+#branching li.if.if_editing {
+ border-color: #1e88e5;
+ background-color: #dfeffb;
+}
+#branching li.if.if_editing div.if_remove {
+ display: block;
+}
+#branching li.block.if_editing {
+ border-color: #1e88e5;
+ background-color: #f1f1ff;
+}
+#branching li.block.if_editing div.if_remove {
+ display: block;
+}
+#branching li.loop.if_editing {
+ border-color: #1e88e5;
+ background-color: #eef9ff;
+}
+#branching li.loop.if_editing div.if_remove {
+ display: block;
+}
+#branching ul.if_editing li.spr {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.if {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.block {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.loop {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.endif {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.endblock {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.endloop {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.inout {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.drop {
+ border-color: #1e88e5;
+}
+#branching ul.if_editing li.nodrop {
+ border-color: #1e88e5;
+}
+#branching li.if.if_hovering {
+ border-color: #1e88e5;
+ background-color: #dfeffb;
+}
+#branching li.block.if_hovering {
+ border-color: #1e88e5;
+ background-color: #f1f1ff;
+}
+#branching li.loop.if_hovering {
+ border-color: #1e88e5;
+ background-color: #eef9ff;
+}
+#branching ul.if_hovering li.spr {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.if {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.block {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.loop {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.endif {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.endblock {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.endloop {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.inout {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.drop {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.nodrop {
+ border-color: #1e88e5;
+}
+#branching ul.if_hovering li.endloop {
+ background-color: #eef9ff;
+}
+#branching ul.if_hovering li.endblock {
+ background-color: #f1f1ff;
+}
+#branching ul.if_hovering li.endif {
+ background-color: #dfeffb;
+}
+#branching li.spr.ui-draggable-dragging {
+ z-index: 99999;
+}
+#branching div.spr_edit {
+ cursor: pointer;
+ color: grey;
+ cursor: pointer;
+ display: inline-block;
+ height: 26px;
+}
+#branching div.spr_edit a.arhiv {
+ background-position: -16px -30px;
+}
+#branching div.spr_edit a {
+ cursor: pointer;
+ display: inline-block;
+ margin-left: 9px;
+ width: 20px;
+ height: 20px;
+}
+#branching div.spr_edit span.scale_ordnom {
+ vertical-align: 2px;
+ margin-right: 20px;
+ color: #1e88e5;
+}
+#branching div.spr_edit span.scale_ordnom a {
+ cursor: pointer;
+ display: inline-block;
+ height: 20px;
+ width: auto;
+ margin: 0;
+ background-image: none;
+ color: #1e88e5;
+}
+#branching div.spr_edit span.scale_ordnom a:hover {
+ color: #ffa608;
+}
+#branching div.spr_edit a.hide {
+ cursor: pointer;
+ display: inline-block;
+ margin-right: 5px;
+ width: 20px;
+ height: 20px;
+}
+#branching li.spr.spr_editing div.spr_edit {
+ display: block;
+ padding-top: 9px;
+}
+#branching li.drop.branchinghover {
+ background-color: #ffb83b !important;
+}
+#branching li.drop.branchinghover a {
+ display: none;
+}
+#branching li.nodrop.branchinghover {
+ background-color: #ffb83b !important;
+}
+#branching li.nodrop.branchinghover a {
+ display: none;
+}
+#branching a.pm {
+ position: absolute;
+ left: auto;
+ float: none;
+ margin: 9px 0 0 -15px;
+ cursor: pointer;
+}
+#branching a.pm.minus {
+ margin-top: 12px;
+}
+#branching .spr_editing .spremenljivka_content {
+ background-color: white;
+ border: 1px solid transparent;
+}
+#branching .spr_editing .spremenljivka_content .spremenljivka_settings {
+ background-color: #ffa608 !important;
+ border: 1px solid #ffa608;
+}
+#branching .spr_editing .spremenljivka_content .spremenljivka_settings .spr_settings span.red {
+ color: white !important;
+}
+#branching .spr_editing .spremenljivka_content .spremenljivka_settings #spr_settings_intro_concl div.red {
+ color: white !important;
+}
+#branching .spr_editing .spremenljivka_content .content_div_normalmode {
+ border: 1px solid #ffa608;
+}
+#branching .spr_editing .spremenljivka_content .comment_container_inline {
+ border-top: none;
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #c8e3f8;
+ border-bottom: 1px solid #c8e3f8;
+}
+#branching .spr_editing .spremenljivka_content .spremenljivka_tekst_form {
+ border: 1px solid #ffa608;
+}
+#branching .spr_editing .variable_name {
+ color: white;
+}
+#branching .variable_name {
+ cursor: move;
+}
+#branching div.if_remove {
+ padding-top: 0px;
+ margin-top: 4px;
+}
+#branching div.if_remove a {
+ cursor: pointer;
+ display: inline-block;
+ margin-left: 9px;
+ width: 20px;
+ height: 20px;
+ /*background-image: url(../../../admin/survey/img_new/sprites.png);
+ background-repeat: no-repeat;*/
+}
+#branching li.spr_editing div.spr_edit span.scale_ordnom {
+ color: white;
+}
+#branching li.spr_editing div.spr_edit span.scale_ordnom a {
+ color: white;
+}
+#branching li.spr_editing div.spr_edit a.faicon {
+ color: white !important;
+}
+
+#branching.expanded li.spr {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+#branching.expanded li.if {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+#branching.expanded li.block {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+#branching.expanded li.loop {
+ padding-top: 1px;
+ padding-bottom: 1px;
+}
+#branching.expanded li.drop {
+ min-height: 16px;
+ margin: 2px 0 2px 50px;
+ margin: 0px 0 0px 40px;
+ padding: 2px 0px 2px 10px;
+}
+#branching.expanded li.drop span.pb_on {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;
+ color: grey;
+ font-size: 14px;
+ font-weight: 600;
+ height: 20px;
+ line-height: 20px;
+ margin-top: 0;
+}
+#branching.expanded li.drop span.pb_off {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+}
+#branching.expanded li.drop span.pb_new {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+}
+#branching.expanded li.drop:hover span.pb_on {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px -52px;
+ cursor: pointer;
+}
+#branching.expanded li.drop:hover span.pb_new {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0px -23px;
+ cursor: pointer;
+}
+#branching.expanded li.nodrop {
+ min-height: 16px;
+ margin: 2px 0 2px 50px;
+ margin: 0px 0 0px 40px;
+ padding: 2px 0px 2px 0px;
+ border-left: 2.5px solid transparent;
+}
+#branching.expanded li.nodrop span.pb_on {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;
+ color: grey;
+ font-size: 14px;
+ font-weight: 600;
+ height: 20px;
+ line-height: 20px;
+ margin-top: 0;
+}
+#branching.expanded li.nodrop span.pb_off {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+}
+#branching.expanded li.nodrop span.pb_new {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+}
+#branching.expanded li.nodrop:hover span.pb_on {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px -52px;
+ cursor: pointer;
+}
+#branching.expanded li.nodrop:hover span.pb_new {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0px -23px;
+ cursor: pointer;
+}
+#branching.expanded li.nodrop:hover span.permanent {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;
+ cursor: default;
+}
+#branching.expanded span.pb_on span {
+ background-color: white;
+ padding-right: 20px;
+ pointer-events: none;
+}
+
+.branchinghover {
+ background: url("../../../admin/survey/img_0/hover_background.png") repeat-x top left !important;
+}
+
+.blockSwitch {
+ position: relative;
+ margin: 10px auto 0;
+ text-align: center;
+}
+.blockSwitch p {
+ display: inline;
+ font-size: 14px;
+}
+
+#spremenljivka_content_-1 {
+ position: relative;
+}
+#spremenljivka_content_-1 span.display_editor {
+ top: 40px;
+}
+
+#spremenljivka_content_-2 {
+ position: relative;
+}
+#spremenljivka_content_-2 span.display_editor {
+ top: 40px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 06-Aug-2018, 11:37:12
+ Author : podkrizniku
+*/
+#branching.collapsed {
+ min-height: 317px;
+ margin-top: 10px;
+}
+#branching.collapsed li.spr {
+ line-height: 28px;
+}
+#branching.collapsed li.spr:hover {
+ background-color: #dfeffb;
+ cursor: pointer;
+}
+#branching.collapsed li.spr div.spr_edit {
+ padding-top: 0px;
+ margin-top: 0px;
+ margin-right: 10px;
+}
+#branching.collapsed li.spr.spr_editing {
+ line-height: inherit;
+}
+#branching.collapsed li.spr.spr_editing:hover {
+ background: none;
+ cursor: auto;
+}
+#branching.collapsed li.spr.spr_editing div.spr_edit {
+ padding-top: 2px;
+ margin-top: 5px;
+ margin-right: 30px;
+}
+#branching.collapsed li.drop {
+ height: 6px;
+ margin: 2px 0px 2px 50px;
+ margin: 0px 0 0px 40px;
+ padding: 2px 0px 2px 10px;
+ border-left: 2.5px solid transparent;
+}
+#branching.collapsed li.drop span.pb_on {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
+ text-align: right;
+ font-size: 10px;
+ color: #aaa;
+}
+#branching.collapsed li.drop span.pb_off {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+}
+#branching.collapsed li.drop span.pb_new {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+}
+#branching.collapsed li.drop:hover span.pb_on {
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
+ cursor: pointer;
+}
+#branching.collapsed li.drop:hover span.pb_new {
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
+ cursor: pointer;
+}
+#branching.collapsed li.nodrop {
+ height: 6px;
+ margin: 2px 0px 2px 50px;
+ margin: 0px 0 0px 40px;
+ padding: 2px 0px 2px 0px;
+ border-left: 2.5px solid transparent;
+}
+#branching.collapsed li.nodrop span.pb_on {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
+ text-align: right;
+ font-size: 10px;
+ color: #aaa;
+}
+#branching.collapsed li.nodrop span.pb_off {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+}
+#branching.collapsed li.nodrop span.pb_new {
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+}
+#branching.collapsed li.nodrop:hover span.pb_on {
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -62px;
+ cursor: pointer;
+}
+#branching.collapsed li.nodrop:hover span.pb_new {
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px -31px;
+ cursor: pointer;
+}
+#branching.collapsed li.nodrop:hover span.permanent {
+ background: url("../../../admin/survey/img_0/sprites_pb.png") no-repeat 0px 0px;
+ cursor: default;
+}
+#branching.collapsed div.if_remove {
+ padding-top: 0px;
+ margin-top: 3px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 02-Aug-2018, 13:40:52
+ Author : podkrizniku
+*/
+.texteditor {
+ width: 98% !important;
+ height: 50px;
+ margin-top: 0;
+ border: 1px solid #cccccc;
+}
+
+.texteditor.info {
+ height: 14px;
+ line-height: 14px;
+ width: 100%;
+}
+
+#vprasanje_edit {
+ margin: 0px 0px;
+ position: relative;
+ top: -54px;
+ background-color: white;
+}
+#vprasanje_edit h2 {
+ padding: 10px;
+ border: 1px solid #c8e3f8;
+ border-bottom: 0;
+ margin: 15px -11px 42px -11px;
+ background-color: #c8e3f8;
+}
+#vprasanje_edit h2 span.content {
+ position: absolute;
+ font-weight: normal;
+ right: 10px;
+ top: 10px;
+}
+#vprasanje_edit fieldset {
+ margin: 20px 0 20px 0;
+ padding: 0;
+ border: 0;
+ border-top: 1px solid #1e88e5;
+}
+#vprasanje_edit legend {
+ background-color: transparent;
+ color: #1e88e5;
+ font-weight: 500;
+ margin: 0;
+ padding: 0 10px 0 5px;
+}
+#vprasanje_edit .jquery-selectbox {
+ background-color: white;
+}
+#vprasanje_edit form[name=vprasanje_edit] {
+ padding: 0 10px;
+}
+#vprasanje_edit p {
+ padding: 1px 3px;
+ line-height: 18px;
+}
+#vprasanje_edit p input[type=radio] {
+ vertical-align: middle;
+ margin: 0px 3px 0px 10px;
+}
+#vprasanje_edit p label.title {
+ cursor: pointer;
+ max-width: 270px;
+}
+#vprasanje_edit p span.content {
+ float: right;
+ display: inline-block;
+}
+#vprasanje_edit p span.content select {
+ margin-top: -4px;
+}
+#vprasanje_edit p span.content select.no-margin {
+ margin-top: 0;
+}
+#vprasanje_edit p span.content input[type=checkbox] {
+ vertical-align: middle;
+ margin: 0px 3px 0px 3px;
+}
+#vprasanje_edit div {
+ padding: -10px;
+}
+#vprasanje_edit p.heading {
+ border: 0;
+ background: none;
+ padding: 0;
+ margin-bottom: -7px;
+ margin-top: -2px;
+}
+#vprasanje_edit textarea[name=naslov] {
+ width: 99%;
+ height: 60px;
+}
+#vprasanje_edit textarea[name=introduction] {
+ width: 99%;
+ height: 60px;
+}
+#vprasanje_edit textarea[name=conclusion] {
+ width: 99%;
+ height: 60px;
+}
+#vprasanje_edit textarea[name=statistics] {
+ width: 99%;
+ height: 60px;
+}
+#vprasanje_edit textarea[name=info] {
+ width: 98%;
+ height: 12px;
+}
+#vprasanje_edit li textarea {
+ height: 12px;
+}
+#vprasanje_edit span#vprasanje_edit_mv select {
+ width: 100%;
+}
+
+#vprasanje_buttons {
+ position: absolute;
+ bottom: 15px;
+}
+
+#vprasanje_tabs {
+ margin-top: -1px;
+ position: absolute;
+ background-color: #c8e3f8;
+ width: 100%;
+ z-index: 100;
+}
+#vprasanje_tabs select {
+ float: right;
+ margin: 5px 10px 0 0;
+ width: 100px;
+}
+#vprasanje_tabs a.tab_link {
+ float: left;
+ display: block;
+ height: 19px;
+ padding: 7px 4px;
+ margin: 0 1px 0 0;
+ font-size: 12px;
+ border-bottom: 1px solid #c8e3f8;
+ color: #606060;
+ background-color: #f5fafe;
+}
+#vprasanje_tabs a.tab_link.active {
+ border-bottom: 1px solid white;
+ margin: 0 1px 0 0;
+ color: #606060;
+ background-color: white;
+}
+#vprasanje_tabs .tab_link_tracking {
+ position: absolute;
+ right: 0;
+ top: -59px;
+ width: 30px;
+}
+#vprasanje_tabs .tab_link_tracking a.tab_link {
+ background-color: white;
+ color: #c8e3f8;
+ padding: 0;
+}
+#vprasanje_tabs .tab_link_tracking a.tab_link.active {
+ background-color: white;
+ color: white;
+}
+
+#vrednost_edit {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ z-index: 89;
+ min-height: 130px;
+ width: 600px;
+}
+#vrednost_edit .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#vrednost_edit .popup_close:hover {
+ color: #1e88e5;
+}
+#vrednost_edit .popup_close a {
+ color: lightgrey;
+}
+#vrednost_edit .popup_close a:hover {
+ color: #1e88e5;
+}
+#vrednost_edit h2,
+#vrednost_edit .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#vrednost_edit p {
+ line-height: 20px;
+}
+#vrednost_edit.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#vrednost_edit.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#vrednost_edit.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#vrednost_edit.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#vrednost_edit.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#vrednost_edit.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#vrednost_edit.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#vrednost_edit.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#vrednost_edit.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#vrednost_edit.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#vrednost_edit.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#vrednost_edit.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#vrednost_edit.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#vrednost_edit.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#vrednost_edit.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#vrednost_edit p {
+ padding: 1px 3px;
+}
+#vrednost_edit div {
+ padding: -10px;
+}
+#vrednost_edit textarea[name=naslov] {
+ width: 99%;
+ height: 60px;
+}
+
+#vprasanje_float_editing {
+ display: none;
+ position: relative;
+ z-index: 70;
+ align-self: flex-start;
+ width: 315px;
+ margin-left: 20px;
+ border: 1px solid #c8e3f8;
+ background-color: white;
+ box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.07);
+}
+
+#vprasanje_edit_bottom_placeholder {
+ display: block;
+ height: 1px;
+ margin: 0 10px;
+ border-top: 1px solid #c8e3f8;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:54:23
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 09:55:43
+ Author : podkrizniku
+*/
+.editor_display {
+ width: 98%;
+ background-color: #eee;
+ border: 1px solid #cccccc;
+ border-bottom: 0;
+}
+
+.editor_display_small {
+ padding-left: 5px;
+}
+
+.spremenljivka {
+ width: 100%;
+}
+
+.add-variable-mobile {
+ display: none;
+}
+
+.add-variable {
+ display: none;
+ position: absolute;
+ left: 59px;
+ bottom: 4px;
+}
+.add-variable span {
+ position: relative;
+ top: 1px;
+ margin-right: 5px !important;
+}
+.add-variable a {
+ color: #1e88e5;
+}
+.add-variable a:hover {
+ color: #ffa608;
+}
+.add-variable .tip_6 {
+ left: 52px;
+}
+.add-variable .tip_16 {
+ left: 52px;
+}
+.add-variable .tip_19 {
+ left: 52px;
+}
+.add-variable .tip_20 {
+ left: 52px;
+}
+
+.locked .add-variable {
+ display: none !important;
+}
+
+.spremenljivka_content {
+ margin: 2px 0px 10px 0px;
+ padding: 0px;
+ color: #333;
+ background-color: white;
+ border: 1px solid #c8e3f8;
+}
+.spremenljivka_content:hover {
+ background-color: white;
+}
+.spremenljivka_content:hover .add-variable {
+ display: block;
+}
+.spremenljivka_content h3 {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+.spremenljivka_content h3 p {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+.spremenljivka_content form {
+ margin: 0;
+ padding: 0;
+ border: 0;
+}
+.spremenljivka_content p {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ padding: 3px;
+}
+.spremenljivka_content input {
+ vertical-align: text-top;
+}
+.spremenljivka_content div[contenteditable] {
+ cursor: text;
+ min-height: 16px;
+}
+.spremenljivka_content div[contenteditable] p {
+ margin: 0 0;
+ padding: 3px 0;
+}
+.spremenljivka_content div[contenteditable=true] {
+ border: 1px solid transparent;
+}
+.spremenljivka_content div[contenteditable=true]:hover {
+ background-color: #f5fafe;
+ border: 1px solid #dfeffb;
+}
+.spremenljivka_content div[contenteditable=true]:focus {
+ background-color: #f5fafe;
+ border: 1px dashed silver;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.spr_editing .spremenljivka_content .add-variable {
+ display: none;
+}
+.spr_editing .content_div_normalmode {
+ padding-bottom: 10px;
+}
+.spr_editing .grid-plus-minus {
+ visibility: visible;
+}
+.spr_editing .sub-table {
+ display: table-row;
+}
+.spr_editing div[contenteditable][default="1"] {
+ color: #aaa;
+}
+
+.spremenljivka_tekst_form {
+ padding: 10px 5px 5px 10px;
+}
+
+.spremenljivka_tip_content {
+ padding: 5px 5px 5px 10px;
+}
+
+.content_div_normalmode {
+ position: relative;
+ padding: 10px 5px 20px;
+ overflow: hidden;
+}
+
+.naslov {
+ width: auto;
+ min-width: 100px;
+ display: block;
+ padding-top: 3px;
+}
+
+#variable_holder .variabla_limit {
+ width: auto !important;
+ color: #ee9800;
+ margin-top: 6px;
+ display: inline-block;
+}
+
+.variable_holder {
+ padding: 0px 0px 0px 30px;
+ vertical-align: top;
+ margin: 0px;
+ display: block;
+ clear: both;
+}
+.variable_holder select {
+ margin-top: 5px;
+}
+
+.variable_holder.clr {
+ height: auto;
+}
+
+div.spremenljivka_content.orientation_ob .variable_holder {
+ clear: none;
+}
+div.spremenljivka_content.orientation_ob div.variabla {
+ clear: none;
+}
+
+div.spremenljivka_content h3 p {
+ padding: 3px 3px 3px 3px;
+ margin: 0;
+ padding-top: 3px;
+ padding-bottom: 3px;
+ margin: 0;
+}
+div.spremenljivka_content span.inline {
+ visibility: hidden;
+ cursor: pointer;
+ float: left;
+}
+div.spremenljivka_content div.variabla {
+ clear: both;
+ padding: 2px 5px;
+ min-height: 22px;
+}
+div.spremenljivka_content div.variabla input {
+ float: left;
+ margin-top: 5px;
+}
+div.spremenljivka_content div.variabla .move_updown_orange {
+ margin-top: 5px;
+}
+div.spremenljivka_content span.inline_edit {
+ float: right;
+ margin: 0 3px;
+}
+div.spremenljivka_content span.inline_delete {
+ float: right;
+ margin: 0 3px;
+}
+div.spremenljivka_content span.inline_if_not {
+ float: right;
+ margin: -2px 3px 0 3px;
+}
+div.spremenljivka_content span.inline_if_follow {
+ float: right;
+ margin: -3px 3px 0 3px;
+}
+div.spremenljivka_content span.inline_hidden {
+ float: right;
+ margin: 0 3px;
+}
+div.spremenljivka_content span.correct {
+ float: right;
+ margin: 0 3px;
+}
+
+li.spr.spr_editing div.spremenljivka_content.orientation_ob .variable_holder {
+ clear: both;
+}
+li.spr.spr_editing div.spremenljivka_content.orientation_ob div.variabla {
+ clear: both;
+}
+li.spr.spr_editing div.preview_mode {
+ display: none;
+}
+li.spr.spr_editing div.edit_mode {
+ display: block;
+}
+li.spr.spr_editing td.preview_mode {
+ display: none;
+}
+li.spr.spr_editing thead.edit_mode {
+ display: table-header-group;
+}
+li.spr.spr_editing .editingOnly {
+ visibility: visible;
+}
+li.spr.spr_editing div.spremenljivka_content.orientation_pod div.variabla {
+ clear: both;
+}
+li.spr.spr_editing div.stolpci {
+ float: none;
+ width: auto !important;
+}
+li.spr.spr_editing div.stolpci span.inline_delete {
+ display: block;
+}
+li.spr.spr_editing div.stolpci span.inline_edit {
+ display: block;
+}
+
+.spremenljivka_info {
+ font-size: 9px;
+ color: #666666;
+ padding: 2px;
+ clear: both;
+ padding: 2px 15px;
+}
+
+div.naslov_inline {
+ min-width: 50px;
+ padding: 2px 15px;
+ margin-bottom: 2px;
+}
+
+div.variable_inline {
+ display: none;
+ float: left;
+ width: 30px;
+ padding: 2px 15px;
+ font-weight: bold;
+}
+
+span.display_editor {
+ position: absolute;
+ right: 10px;
+ top: 11px;
+ cursor: pointer;
+ visibility: hidden;
+}
+
+.spr.spr_editing span.display_editor {
+ visibility: visible;
+}
+
+.spr span.display_editor.show {
+ visibility: visible;
+}
+
+/*div.naslov {
+ textarea.inline {
+ width: 99%;
+ }
+}
+div.variabla {
+ textarea.inline {
+ min-height: 11px;
+ min-width: 50%;
+ }
+}
+td.grid_question {
+ textarea.inline {
+ height: 11px;
+ width: 90%;
+ }
+}
+td.grid_header {
+ textarea.inline {
+ width: 99%;
+ height: 22px;
+ text-align: center;
+ }
+}*/
+div.spremenljivka_content.orientation_pod div.variabla {
+ clear: none;
+}
+
+li.spr_editing div.spremenljivka_content div.variabla span.inline {
+ visibility: visible;
+}
+li.spr_editing table.grid_header_table span.inline {
+ visibility: visible;
+}
+
+li div.spremenljivka_content div.variabla span.inline.show {
+ visibility: visible;
+}
+li div.spremenljivka_content span.inline_move {
+ margin: 2px 8px 0 3px;
+}
+li div.spremenljivka_content span.image_upload {
+ margin-top: 4px;
+ margin-left: 8px;
+ margin-right: 4px;
+ float: left;
+}
+
+/*settings marks of question in top left corner (reminders, system,...)*/
+#spr_settings {
+ float: left;
+ width: auto;
+ padding-top: 4px;
+ vertical-align: bottom;
+}
+#spr_settings .lock_holder {
+ position: absolute;
+ right: 15px;
+ top: 6px;
+}
+#spr_settings span {
+ vertical-align: bottom;
+}
+#spr_settings span img {
+ padding-left: 5px;
+ vertical-align: bottom;
+}
+
+#spr_settings_intro_concl {
+ float: left;
+ width: auto;
+ vertical-align: bottom;
+ padding-left: 10px;
+}
+#spr_settings_intro_concl img {
+ padding-left: 10px;
+ padding-top: 3px;
+}
+
+table.text_vrednost {
+ text-align: center;
+ font-size: 10px;
+}
+
+div.vrednost_inline {
+ float: left;
+ max-width: 80%;
+ min-width: 160px;
+ padding: 2px 15px;
+}
+
+.spremenljivka_settings {
+ padding: 3px 5px 3px 5px;
+ background-color: #f5fafe;
+ min-height: 24px;
+}
+
+.spremenljivka_settings.movable {
+ cursor: pointer;
+}
+
+.spremenljivka_settings_active {
+ background-color: #f5fafe;
+}
+
+.variable_name {
+ float: left;
+ font-size: 14px;
+ padding: 2px 10px 2px 5px;
+ color: grey;
+ font-weight: 500;
+}
+
+.variable {
+ color: grey;
+ font-weight: 500;
+}
+
+.spr_edit {
+ z-index: 5;
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin-right: 10px;
+ padding-top: 7px;
+}
+
+.comment_container_inline {
+ margin: 0px;
+ padding: 4px 15px;
+ background-color: #f5fafe;
+ border-top: 1px solid #c8e3f8;
+}
+.comment_container_inline a.surveycomment {
+ font-size: 10px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:52:29
+ Author : podkrizniku
+*/
+.slider {
+ display: inline-block;
+ width: 84.5%;
+ background-color: #efefef !important;
+}
+.slider .ui-state-default {
+ border: 1px solid #aaa !important;
+}
+.slider .ui-state-hover {
+ border: 1px solid grey !important;
+}
+
+.sliderText {
+ visibility: hidden;
+ position: relative;
+ text-align: center;
+ color: #333;
+ width: 30px;
+ height: 15px;
+ padding: 3px;
+ margin-top: 7px;
+ background: #efefef;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border: #aaa solid 1px;
+}
+.sliderText:after {
+ content: "";
+ position: absolute;
+ border-style: solid;
+ border-width: 9px 7px 0;
+ border-color: #efefef transparent;
+ display: block;
+ width: 0;
+ z-index: 1;
+ bottom: -9px;
+ left: 11px;
+}
+.sliderText:before {
+ content: "";
+ position: absolute;
+ border-style: solid;
+ border-width: 9px 7px 0;
+ border-color: #aaa transparent;
+ display: block;
+ width: 0;
+ z-index: 0;
+ bottom: -10px;
+ left: 11px;
+}
+
+.classic_slider .ui-slider-handle {
+ width: 9px !important;
+ height: 14px !important;
+ padding: 5px 0;
+ margin-left: -5px !important;
+ top: -7px !important;
+ border-bottom-right-radius: 10px 30px !important;
+ border-bottom-left-radius: 10px 30px !important;
+}
+
+.special_slider .ui-slider-handle {
+ width: 15px !important;
+ height: 15px !important;
+ margin-left: -8px !important;
+ top: -3px !important;
+ border-radius: 10px 10px !important;
+ background-color: red !important;
+}
+
+.circle_slider .ui-slider-pip .ui-slider-line {
+ width: 15px !important;
+ height: 15px !important;
+ border-radius: 10px 10px !important;
+ margin-left: -8px !important;
+ background: #efefef !important;
+ top: -23px !important;
+ border: 1px solid #aaa !important;
+}
+
+.elipse_slider .ui-slider-pip .ui-slider-line {
+ width: 13px !important;
+ height: 30px !important;
+ border-radius: 10px 10px !important;
+ margin-left: -7px !important;
+ background: #efefef !important;
+ top: -31px !important;
+ border: 1px solid #aaa !important;
+}
+.elipse_slider .ui-slider-handle {
+ width: 9px !important;
+ height: 14px !important;
+ padding: 5px 0;
+ margin-left: -5px !important;
+ top: -7px !important;
+ border-bottom-right-radius: 10px 30px !important;
+ border-bottom-left-radius: 10px 30px !important;
+}
+
+.label_podrocje_prikaz {
+ border-bottom: 1px solid black !important;
+ border-left: 1px solid black !important;
+ border-right: 1px solid black !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:58:50
+ Author : podkrizniku
+*/
+.naslov.calculation {
+ padding-left: 15px;
+}
+
+#arrows_more_calculation {
+ position: absolute;
+ bottom: 40px;
+ padding: 5px 0;
+ margin-left: 43%;
+ width: 10%;
+ cursor: pointer;
+ background-color: #f5fafe;
+ border: 1px solid #f8f8f8;
+ display: none;
+ text-align: center;
+}
+
+#bottom_space {
+ padding: 0;
+}
+
+#calculation_editing_calculations {
+ /*min-height: 40px;*/
+ padding: 0 0 10px 0;
+}
+#calculation_editing_calculations span.calculations_display {
+ font-size: 20px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:59:20
+ Author : podkrizniku
+*/
+.naslov.quota {
+ padding-left: 15px;
+}
+
+/*popup edit*/
+#quota {
+ display: none;
+ position: relative;
+ z-index: 91;
+ height: auto;
+ width: 600px;
+}
+#quota #quota_editing_inner {
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ margin-bottom: 50px;
+ overflow: auto;
+}
+#quota #condition_editing_close {
+ float: right;
+ margin-right: 20px;
+ margin-bottom: 20px;
+}
+#quota #bottom_space {
+ bottom: 0;
+ left: 0;
+ position: absolute;
+ right: 0;
+ padding: 0;
+}
+
+#quota_editing_quotas {
+ min-height: 40px;
+ padding: 10px;
+}
+#quota_editing_quotas span.quota_display {
+ font-size: 20px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 13:00:32
+ Author : podkrizniku
+*/
+.spremenljivka_content[tip="24"] .variable_holder {
+ overflow-x: auto;
+}
+
+.grid_header_table {
+ width: 100%;
+ text-align: center;
+ border-collapse: collapse;
+}
+.grid_header_table td.grid_header {
+ height: 18px;
+}
+.grid_header_table tbody tr td {
+ padding-top: 3px;
+ padding-bottom: 3px;
+}
+.grid_header_table tbody tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+.grid_header_table tbody tr:nth-child(odd) td {
+ background-color: #f5fafe;
+}
+.grid_header_table tbody tr:nth-child(odd) td div[contenteditable=true] {
+ border: 1px solid transparent;
+}
+
+.grid_header {
+ font-weight: 500;
+}
+
+.grid_question {
+ width: 20%;
+ text-align: left;
+ padding-right: 1%;
+}
+
+.col_border {
+ border-left: 1px solid #606060;
+}
+
+.grid-plus-minus {
+ text-align: right;
+ visibility: hidden;
+}
+
+.sub-table {
+ display: none;
+}
+
+div.grid_inline {
+ min-width: 20px;
+ padding: 2px 0;
+}
+
+div.grid_inline_droppable_title {
+ height: 15px !important;
+ width: 230px;
+ padding: 2px 0 5 0;
+ margin: 0px auto 0px auto;
+ border-top: 1px black dashed !important;
+ border-left: 1px black dashed !important;
+ border-right: 1px black dashed !important;
+ text-align: center;
+}
+
+div.grid_inline_droppable_title_box {
+ height: 15px !important;
+ width: 230px;
+ padding: 2px 0 5 0;
+ margin: 0px auto 0px auto;
+ text-align: center;
+}
+
+li table.grid_header_table span.inline.show {
+ visibility: visible;
+}
+
+div.spremenljivka_content[tip="6"] span.inline_move {
+ position: absolute;
+ left: 30px;
+}
+
+div.spremenljivka_content[tip="16"] span.inline_move {
+ position: absolute;
+ left: 30px;
+}
+
+div.spremenljivka_content[tip="19"] span.inline_move {
+ position: absolute;
+ left: 30px;
+}
+
+div.spremenljivka_content[tip="20"] span.inline_move {
+ position: absolute;
+ left: 30px;
+}
+
+div.spremenljivka_content[tip="24"] span.inline_move {
+ position: absolute;
+ left: 30px;
+}
+
+table.grid_header_table span.inline_delete {
+ position: absolute;
+ visibility: hidden;
+ right: 5px;
+ margin-right: 57px;
+ margin-right: 0px;
+}
+table.grid_header_table span.inline_edit {
+ position: absolute;
+ visibility: hidden;
+ right: 7px;
+ margin-right: 57px;
+}
+table.grid_header_table span.inline_if_not {
+ position: absolute;
+ visibility: hidden;
+ right: 7px;
+ margin-right: 57px;
+ margin-right: 32px;
+}
+table.grid_header_table span.inline_if_follow {
+ position: absolute;
+ visibility: hidden;
+ right: 7px;
+ margin-right: 57px;
+}
+table.grid_header_table span.inline_hidden {
+ position: absolute;
+ visibility: hidden;
+ right: 7px;
+ margin-right: 57px;
+ margin-right: 14px;
+}
+table.grid_header_table span.correct {
+ position: absolute;
+ visibility: hidden;
+ right: 7px;
+ margin-right: 57px;
+}
+
+.trak_class {
+ border: 1px solid lightgrey;
+ cursor: pointer;
+ background: white !important;
+}
+
+.trak_class_input {
+ visibility: hidden !important;
+ display: block;
+ z-index: -1;
+}
+
+.radio-button-label {
+ cursor: pointer !important;
+ z-index: -2;
+}
+
+.trak_container_bg {
+ background-color: lightgrey !important;
+}
+
+table.trak_inline_nadnaslov td {
+ text-align: center !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 13:02:29
+ Author : podkrizniku
+*/
+.variabla_vsota {
+ padding: 0px 5px;
+ width: 25%;
+ text-align: right;
+}
+.variabla_vsota input {
+ margin-left: 10px;
+ margin-top: 2px !important;
+}
+
+.vrednost_inline_vsota {
+ float: left;
+ box-sizing: border-box;
+ width: 200px;
+ max-width: 80%;
+ min-width: 160px;
+ padding: 2px 15px 2px 18px !important;
+ margin-left: 12px;
+ word-break: break-all;
+}
+
+.variabla_vsota_inline {
+ float: left;
+ max-width: 80%;
+ min-width: 160px;
+ padding: 2px 15px;
+ word-break: break-all;
+}
+
+/* Zadnja vrsticas pri urejanju vsote - "skupaj" */
+table.variabla_vsota {
+ clear: both;
+ border-spacing: 0;
+ border-collapse: collapse;
+ display: block;
+ width: auto;
+}
+table.variabla_vsota tr td.text {
+ border-top: 1px black solid;
+}
+table.variabla_vsota tr td.text .variabla_vsota_sum {
+ margin-left: 18px;
+}
+table.variabla_vsota tr td.text .variabla_vsota_sum div {
+ width: 100%;
+ max-width: 100%;
+ box-sizing: border-box;
+}
+table.variabla_vsota tr td.input {
+ border-top: 1px black solid;
+}
+table.variabla_vsota tr td.input input {
+ margin-left: 8px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 13:07:51
+ Author : podkrizniku
+*/
+span.display_editor_image_hotspot {
+ position: absolute;
+ right: 100px;
+ top: 11px;
+ cursor: pointer;
+ visibility: visible;
+}
+
+.hotspot span.inline_delete_hotspot {
+ position: absolute !important;
+ right: 3px;
+ margin-right: 0px;
+ cursor: pointer !important;
+ margin-right: 485px !important;
+}
+.hotspot span.inline_edit_hotspot {
+ position: absolute !important;
+ right: 3px;
+ margin-right: 0px;
+ cursor: pointer !important;
+}
+.hotspot span.inline_if_not_hotspot {
+ position: absolute !important;
+ right: 3px;
+ margin-right: 0px;
+ cursor: pointer !important;
+ margin-right: 535px !important;
+}
+.hotspot span.inline_if_follow_hotspot {
+ position: absolute !important;
+ right: 3px;
+ margin-right: 0px;
+ cursor: pointer !important;
+}
+.hotspot span.inline_hidden_hotspot {
+ position: absolute !important;
+ right: 3px;
+ margin-right: 0px;
+ cursor: pointer !important;
+ margin-right: 510px !important;
+}
+
+.inline_edit_hotspot {
+ display: inline-block;
+ width: 32px;
+ height: 32px;
+ background-image: url(../../../admin/survey/img_new/icons_hidpi.png);
+ background-position: 0px -1874px;
+}
+
+canvas.hotspot_canvas {
+ position: absolute;
+ top: 15px !important;
+ left: 10px;
+ z-index: 2;
+}
+
+.hotspot_image_editor {
+ position: relative;
+ top: 15px !important;
+ z-index: 1;
+}
+
+div.hotspot_vrednost_inline {
+ float: left;
+ max-width: 80%;
+ min-width: 160px;
+ padding: 2px 2px;
+ border: 1px solid grey;
+ margin: 2px;
+ background: white;
+}
+
+.inline_hotspot_edit_region {
+ margin-top: 4px !important;
+ margin-bottom: 4px !important;
+}
+
+.inline_hotspot_delete_region {
+ margin-top: 3px !important;
+ margin-bottom: 3px !important;
+}
+
+div.vrednost_inline_hotspot {
+ float: left;
+}
+div.vrednost_inline_hotspot img {
+ float: left;
+}
+
+#hotspot_edit {
+ display: none;
+ position: absolute;
+ top: 40%;
+ left: 50%;
+ z-index: 89;
+ min-height: 130px;
+ margin-top: -100px;
+ margin-left: -300px;
+ padding: 0 10px 10px 10px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 12:30:57
+ Author : podkrizniku
+*/
+.razvrscanje_preview {
+ border: 1px solid grey;
+ background-color: silver;
+ padding: 4px;
+ margin: 5px 0px;
+ width: 350px;
+ display: block;
+}
+
+.razvrscanje_preview_frame {
+ border: 1px dashed grey;
+ background-color: lightgrey;
+ padding: 4px;
+ margin: 5px 0px;
+ width: 350px;
+ height: 13px;
+ display: block;
+ text-indent: -20px;
+}
+
+.dragdrop_preview_frame {
+ border: 1px dashed grey;
+ background-color: lightgrey;
+ padding: 4px;
+ margin: 5px 0px;
+ width: 350px;
+ height: 90px;
+ display: block;
+ text-indent: -20px;
+}
+
+.dragdrop_preview_frame_grid {
+ font-size: 14px;
+ width: 150px !important;
+ height: 25px;
+ padding: 0 0 2px 0;
+ margin: 0px auto 10px auto;
+ border: 1px black dashed;
+ background-color: lightgrey;
+ text-indent: -20px;
+ text-align: left;
+}
+
+.dragdrop_preview_frame_grid_title {
+ height: 15px !important;
+ width: 150px !important;
+ padding: 2px 0 5 0;
+ margin: 0px auto 0px auto;
+ border-top: 1px black dashed !important;
+ border-left: 1px black dashed !important;
+ border-right: 1px black dashed !important;
+ text-align: center;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 13:19:50
+ Author : podkrizniku
+*/
+.ranking {
+ font-size: 14px;
+ width: 220px;
+ height: 25px;
+ padding: 5px 0 0 0;
+ margin: 15px auto 0 auto;
+ border: 1px solid #000;
+ background-color: lightgrey;
+ text-align: center;
+ overflow: hidden;
+}
+.ranking img {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.ranking_long {
+ font-size: 14px;
+ width: 220px;
+ height: 25px;
+ padding: 5px 0 0 0;
+ margin: 15px auto 0 auto;
+ border: 1px solid #000;
+ background-color: lightgrey;
+ text-align: center;
+ overflow: hidden;
+ font-size: 11px;
+}
+
+.ranking_frame {
+ font-size: 14px;
+ width: 230px;
+ height: 29px;
+ padding: 5px 0 0 0;
+ margin: 10px auto 0 auto;
+ border: 1px black dashed;
+ background-color: #efefef;
+ text-indent: -20px;
+ text-align: left;
+}
+
+.dragdrop_frame {
+ font-size: 14px;
+ width: 230px;
+ height: 100px;
+ padding: 5px 0 0 0;
+ margin: 10px auto 0 auto;
+ border: 1px black dashed;
+ background-color: #efefef;
+ text-indent: -20px;
+ text-align: left;
+}
+
+.dragdrop_frame_grid {
+ font-size: 14px;
+ width: 230px;
+ height: 25px;
+ padding: 0 0 2px 0;
+ margin: 0px auto 10px auto;
+ border: 1px black dashed;
+ background-color: #efefef;
+ text-indent: -20px;
+ text-align: left;
+}
+
+.dragdrop_frame_grid_box {
+ font-size: 14px;
+ width: 230px;
+ height: 30px;
+ padding: 0 0 2px 0;
+ margin: 10px auto 0px auto;
+ border-left: 1px black dashed !important;
+ border-right: 1px black dashed !important;
+ border-bottom: 1px black dashed !important;
+ text-indent: -20px;
+ text-align: left;
+}
+
+.drag_and_drop_box {
+ cursor: pointer;
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px solid #000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ background-color: white;
+ cursor: pointer;
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px solid #000;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ background-color: white;
+}
+.drag_and_drop_box img {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.drag_and_drop {
+ top: -6px;
+ left: -6px;
+}
+
+.drag_and_drop_right {
+ top: -6px !important;
+ left: -6px !important;
+}
+
+.drag_and_drop_box_right {
+ top: 15px !important;
+ left: -6px !important;
+}
+
+.drag_and_drop_box_right_after_refresh {
+ left: -6px !important;
+}
+
+.drag_and_drop_box_right_over {
+ left: -6px !important;
+}
+
+.inline_labele_podrocij {
+ text-align: center !important;
+}
+
+table.inline_labele_podrocij td {
+ text-align: center !important;
+}
+
+/*radio with image*/
+.custom_radio .custom_radio_answer {
+ padding: 0 1px;
+}
+
+.custom_radio.visual-radio-scale .custom_radio_answer {
+ padding: 0 3px;
+}
+.custom_radio.visual-radio-scale.checked .enka-vizualna-skala:before {
+ color: #166dba;
+}
+
+.enka-vizualna-skala {
+ display: inline-block;
+ height: 20px;
+ width: 20px;
+ float: left;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 11:13:15
+ Author : podkrizniku
+*/
+/*GOOGLE MAPS*/
+.pac-input {
+ background-color: white;
+ font-family: Roboto;
+ font-size: 1.2em;
+ font-weight: 300;
+ margin-left: 0 px;
+ padding: 0 11px 0 13px;
+ text-overflow: ellipsis;
+ width: 17em;
+ border: 1px solid transparent;
+ border-radius: 2px 0 0 2px;
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
+ box-sizing: border-box;
+ height: 30px;
+ margin-top: 10px;
+ outline: medium none;
+}
+
+.boxsizingBorder {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+.maps-delete-menu {
+ position: absolute;
+ background: white;
+ padding: 3px;
+ color: #606060;
+ font-weight: bold;
+ border: 1px solid #aaa;
+ font-family: sans-serif;
+ font-size: 12px;
+ box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.3);
+ margin-top: -10px;
+ margin-left: 10px;
+ cursor: pointer;
+}
+.maps-delete-menu:hover {
+ background: #f8f8f8;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 11:15:47
+ Author : podkrizniku
+*/
+.fotoresults_div {
+ float: right;
+}
+
+.my_camera_div {
+ float: left;
+}
+
+.my_camera {
+ border: 1px solid;
+}
+
+.record_foto {
+ display: block;
+ float: right;
+ margin-top: -30px;
+ margin-right: -12px;
+ position: relative;
+}
+
+.upload_foto_result {
+ display: none;
+ height: 240px;
+ border: 1px solid;
+ padding-right: 0px !important;
+ margin-top: 10px !important;
+ margin-left: 20px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 13-Aug-2018, 12:32:48
+ Author : podkrizniku
+*/
+.endif_editing {
+ background-color: #dfeffb;
+}
+
+li.if_editing div.if_content:before {
+ background-color: #dfeffb;
+ content: "";
+ display: block;
+ height: 15px;
+ left: 0;
+ position: absolute;
+ top: 0;
+ width: 100%;
+ z-index: -1;
+}
+
+span.conditions_display {
+ display: block;
+ line-height: 28px;
+}
+
+/*if condition variable select*/
+select.spremenljivka_select option {
+ max-width: 500px;
+}
+
+.condition {
+ position: relative;
+ left: -21px;
+}
+
+span.endif {
+ position: relative;
+ left: -29px;
+ font-weight: bold;
+}
+
+.block > div > #div_condition_editing_container {
+ background-color: #f1f1ff;
+ line-height: 28px;
+}
+
+.loop > div > #div_condition_editing_container {
+ padding-top: 6px;
+}
+
+#div_condition_editing_inner > .condition_editing_preview {
+ background-color: #dfeffb;
+ padding-left: 6px;
+}
+
+#div_condition_editing_operators {
+ padding: 5px 0;
+}
+
+#div_condition_editing {
+ display: none;
+ height: auto;
+ width: 800px;
+}
+#div_condition_editing div#div_condition_editing_container {
+ margin-bottom: 44px;
+}
+#div_condition_editing .error_display {
+ background-color: transparent;
+}
+#div_condition_editing .condition_editing_vrednost_title {
+ margin: -5px 0 15px 5px;
+ font-size: 14px;
+ font-weight: 600;
+}
+
+#div_condition_editing_float {
+ position: absolute;
+ top: 0;
+ right: -335px;
+ width: 290px;
+ padding: 0 10px 15px 10px;
+ background-color: white;
+ border: 1px solid #c8e3f8;
+}
+#div_condition_editing_float h2 {
+ margin-top: 0;
+ padding: 10px;
+ border-bottom: 0;
+ margin: 0 -10px 0 -10px;
+ background-color: #c8e3f8;
+}
+#div_condition_editing_float p {
+ padding: 3px;
+ margin: 10px 0;
+}
+#div_condition_editing_float p.heading {
+ border: 0;
+ background: none;
+ padding: 0;
+}
+#div_condition_editing_float span.content {
+ float: right;
+}
+#div_condition_editing_float fieldset {
+ margin: 11px 0;
+ padding: 0;
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+#div_condition_editing_float legend {
+ background-color: transparent;
+ color: #1e88e5;
+ font-weight: 500;
+ margin: 0;
+ padding: 0 10px 0 5px;
+}
+
+.error_display {
+ display: block;
+ line-height: 24px;
+}
+
+.tbl_ce_bck_blue {
+ background-color: #f0f7fd;
+}
+
+.tbl_ce_lol {
+ border-top: 1px solid lightgrey;
+ border-bottom: 1px solid lightgrey;
+ border-left: 1px solid lightgrey;
+}
+
+.tbl_ce_tb {
+ border-top: 1px solid lightgrey;
+ border-bottom: 1px solid lightgrey;
+}
+
+.tbl_ce_lor {
+ border-top: 1px solid lightgrey;
+ border-bottom: 1px solid lightgrey;
+ border-right: 1px solid lightgrey;
+}
+
+.if_remove {
+ z-index: 5;
+ position: absolute;
+ top: 0;
+ right: 0;
+ margin-right: 20px;
+ padding-top: 9px;
+}
+
+.endif a.surveycomment {
+ padding-right: 15px;
+ font-size: 10px;
+}
+
+.endblock a.surveycomment {
+ padding-right: 15px;
+ font-size: 10px;
+}
+
+#condition_editing_bottom_placeholder {
+ display: block;
+ height: 1px;
+ margin-bottom: 15px;
+ border-top: 1px solid #c8e3f8;
+}
+
+.tbl_condition_editing {
+ width: 98%;
+ border-spacing: 0px;
+ margin: 0px 1% 0px 1%;
+ border-collapse: collapse;
+}
+.tbl_condition_editing th {
+ color: grey;
+ font-weight: normal;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 11:24:57
+ Author : podkrizniku
+*/
+#toolbox_library {
+ z-index: 0;
+ position: fixed;
+ top: 225px;
+ left: 35px;
+ width: 315px;
+ height: auto;
+ left: auto;
+ right: 30px;
+ color: #1e88e5;
+ background-color: white;
+ border: 0;
+ box-shadow: 0 0 31px 0 rgba(0, 0, 0, 0.07);
+}
+#toolbox_library #library_holder {
+ background-color: #c8e3f8;
+ border: 1px #c8e3f8 solid;
+}
+#toolbox_library #library_holder #library_title {
+ padding: 10px;
+ font-size: 18px;
+ font-weight: bold;
+}
+#toolbox_library #library_holder #library_title span.library {
+ margin: 0 5px 2px 0;
+}
+#toolbox_library #library_holder p.display_tabs {
+ font-size: 14px;
+ font-weight: 500;
+ margin: 0;
+ padding: 0;
+}
+#toolbox_library #library_holder p.display_tabs > span {
+ width: 50%;
+ box-sizing: border-box;
+ display: inline-block;
+ padding: 7px 10px;
+ text-align: center;
+ transition: 0.2s;
+}
+#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft {
+ background-color: white;
+}
+#toolbox_library #library_holder p.display_tabs span.highlightTabBlackLeft a {
+ color: #1e88e5;
+}
+#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight {
+ background-color: white;
+}
+#toolbox_library #library_holder p.display_tabs span.highlightTabBlackRight a {
+ color: #1e88e5;
+}
+#toolbox_library #library_holder p.display_tabs span.nohighlight:hover {
+ background-color: #d6eafa;
+}
+#toolbox_library #library_holder p.display_tabs a {
+ display: block;
+ color: #1e88e5;
+}
+#toolbox_library #library_holder #library {
+ background-color: white;
+ height: 400px;
+ overflow-y: auto;
+ /* Ankete */
+}
+#toolbox_library #library_holder #library #libraryInner {
+ padding: 5px 10px;
+ bottom: 0;
+ overflow: auto;
+}
+#toolbox_library #library_holder #library .lib_tab {
+ width: auto;
+ cursor: pointer;
+}
+#toolbox_library #library_holder #library ul {
+ list-style: none;
+ margin: 0;
+ margin-top: 4px;
+ padding-left: 18px;
+}
+#toolbox_library #library_holder #library li .anketa.tip0 {
+ margin: 0;
+ padding-left: 14px;
+}
+#toolbox_library #library_holder #library li .anketa.tip1 {
+ margin: 0;
+ margin-left: -3px;
+}
+#toolbox_library #library_holder #library .new_folder {
+ visibility: hidden;
+}
+#toolbox_library #library_holder #library .delete_folder {
+ visibility: hidden;
+}
+#toolbox_library #library_holder #library span.folderdrop {
+ margin-bottom: 2px;
+}
+#toolbox_library #library_holder #library span.folderdrop:hover .new_folder {
+ visibility: visible;
+}
+#toolbox_library #library_holder #library span.folderdrop:hover .delete_folder {
+ visibility: visible;
+}
+#toolbox_library #library_holder #library span.faicon.folder {
+ vertical-align: 3px;
+ margin-right: 3px;
+}
+#toolbox_library #library_holder #library span.faicon.folder::before {
+ font-size: 20px;
+}
+#toolbox_library #library_holder #library .tip0 .folder_container {
+ display: block;
+ height: 20px;
+ overflow: hidden;
+ padding: 1px 3px;
+}
+#toolbox_library #library_holder #library .tip1 {
+ padding-left: 10px;
+}
+#toolbox_library #library_holder #library .tip1 .folder_container {
+ display: block;
+ overflow: show;
+ height: auto;
+ min-height: 20px;
+ padding: 0px 3px;
+}
+#toolbox_library #library_holder #library .tip1 .mapca {
+ display: none !important;
+}
+#toolbox_library #library_holder #library .tip1 .new_spr {
+ padding: 0 3px;
+}
+#toolbox_library #library_holder #library .tip1 .new_spr:hover {
+ background-color: #badcf6;
+}
+#toolbox_library #library_holder #library .tip1 .new_spr .faicon {
+ line-height: 22px;
+}
+#toolbox_library #library_holder #library .tip1 .faicon.plus,
+#toolbox_library #library_holder #library .tip1 .faicon.minus {
+ opacity: 1 !important;
+ margin-right: 3px;
+}
+#toolbox_library #library_holder #library div .folder_right {
+ width: 15px;
+ float: right;
+ text-align: left;
+}
+#toolbox_library #library_holder #library div .tip1 .folder_right {
+ width: 18px;
+}
+#toolbox_library #library_holder #library div .folder_container:hover {
+ background-color: #f5fafe;
+ cursor: pointer;
+}
+#toolbox_library #library_holder #library div.folder_left {
+ width: 80%;
+ float: none;
+}
+#toolbox_library #library_holder #library div.folder_left.indent {
+ display: block;
+ height: 22px;
+ line-height: 22px;
+ overflow: hidden;
+ position: relative;
+}
+#toolbox_library #library_holder #library .folder strong:hover {
+ background-color: transparent;
+ cursor: pointer;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 13:49:25
+ Author : podkrizniku
+*/
+#all_users_list td:nth-child(n+6),
+#deleted_users_list td:nth-child(n+4),
+#unconfirmed_mail_user_list td:nth-child(n+4),
+#unsigned_users_list td:nth-child(n+4) {
+ text-align: center;
+}
+
+/* datatables popravki */
+table.dataTable.no-footer {
+ border-bottom: none !important;
+}
+table.dataTable thead th {
+ color: gray;
+ background-color: #f5fafe !important;
+ border-bottom: none !important;
+}
+table.dataTable thead th.sorting, table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting_desc {
+ background-position: right 8px;
+}
+table.dataTable tbody td {
+ border-top: 1px solid #ddd;
+}
+
+.dataTables_wrapper .dataTables_paginate .paginate_button.current,
+.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
+ color: #3d5f95 !important;
+ border: 1px solid #3d5f95 !important;
+ background: white !important;
+}
+
+.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
+ color: white !important;
+ background: #3d5f95 !important;
+}
+
+.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
+ border: 1px solid transparent !important;
+ background: transparent !important;
+}
+
+form.manager_add_user p {
+ padding: 0 !important;
+}
+form.manager_add_user label {
+ width: 100px;
+ display: inline-block;
+}
+
+.dt-buttons {
+ margin-bottom: 10px;
+}
+
+.dataTables_length {
+ padding: 5px 0 15px 0;
+}
+
+button.dt-button {
+ cursor: pointer;
+ padding: 5px 12px 6px;
+ background-color: #1e88e5;
+ border-radius: 20px;
+ color: white;
+ border-image: none;
+ border: 0;
+ font-size: 11px;
+}
+button.dt-button:hover, button.dt-button .active {
+ background: #ffa608;
+}
+
+.dt-button-collection {
+ padding-top: 22px;
+}
+.dt-button-collection > .buttons-columnVisibility {
+ color: #1e88e5;
+ background: white;
+}
+.dt-button-collection > .buttons-columnVisibility:hover {
+ color: white;
+ background: #ffa608;
+}
+
+button.buttons-columnVisibility {
+ background-color: white;
+ color: #1e88e5;
+ border: 1px solid #1e88e5;
+}
+button.buttons-columnVisibility.active {
+ background-color: #1e88e5;
+ color: white;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 02-Aug-2018, 11:03:48
+ Author : podkrizniku
+*/
+/*for test user*/
+body.test_user {
+ margin-top: 20px;
+ position: relative;
+}
+
+.grupa h3 {
+ border: 0;
+ margin: 0;
+ padding: 0;
+}
+.grupa h3 a {
+ color: grey;
+ text-decoration: none;
+}
+.grupa h3 a:HOVER {
+ color: grey;
+ text-decoration: none;
+}
+.grupa h3 a:VISITED {
+ color: grey;
+ text-decoration: none;
+}
+
+.page_edit {
+ padding: 0px 10px;
+ width: auto;
+}
+.page_edit img {
+ vertical-align: top;
+}
+
+.google_yellow {
+ box-sizing: border-box;
+ padding: 10px !important;
+ color: white;
+ background-color: #ffa608 !important;
+}
+
+.counter {
+ float: left;
+ width: auto;
+ padding-top: 5px;
+ display: block;
+}
+
+/*share on social networks*/
+.anketa_img_icons {
+ margin-left: 6px;
+ width: auto !important;
+}
+
+.conjunction {
+ color: #606060;
+}
+
+#s1 {
+ position: relative;
+ left: 32px;
+}
+
+#s2 {
+ position: relative;
+ left: -9px;
+}
+
+fieldset.grupa {
+ margin: 5px;
+ padding: 5px;
+ width: auto;
+ border: 1px solid silver;
+}
+fieldset.grupa legend {
+ color: #1e88e5;
+}
+fieldset.grupa:hover {
+ background: white;
+}
+
+/*links*/
+li.highlightLineTab a {
+ background-color: white;
+ border-bottom: medium none;
+ padding-bottom: 2px;
+}
+li.highlightLineTab a span {
+ font-weight: bold;
+ color: #990000;
+}
+
+input.respondent {
+ width: 99%;
+ height: 20px;
+ border: none;
+ vertical-align: middle;
+}
+input.respondent:hover {
+ background-color: #f8f8f8;
+}
+input.respondent:focus {
+ background-color: #f5fafe;
+}
+
+.top-left {
+ display: none;
+ background-image: url("../../../admin/survey/img_0/corners1280x18.gif");
+ height: 9px;
+ font-size: 2px;
+ margin-right: 9px;
+}
+
+.top-right {
+ display: none;
+ background-image: url("../../../admin/survey/img_0/corners1280x18.gif");
+ height: 9px;
+ font-size: 2px;
+ margin-left: 9px;
+ margin-top: -9px;
+ background-position: 100% 0;
+}
+
+.bottom-left {
+ display: none;
+ background-image: url("../../../admin/survey/img_0/corners1280x18.gif");
+ height: 9px;
+ font-size: 2px;
+ margin-right: 9px;
+ background-position: 0 -9px;
+}
+
+.bottom-right {
+ display: none;
+ background-image: url("../../../admin/survey/img_0/corners1280x18.gif");
+ height: 9px;
+ font-size: 2px;
+ margin-left: 9px;
+ margin-top: -9px;
+ background-position: 100% -9px;
+}
+
+.vprasanje {
+ border: 1px solid #999;
+ width: 90%;
+ margin: 10px auto 10px auto;
+ padding: 10px 0 10px 10px;
+ text-align: left;
+}
+.vprasanje h3 {
+ border: 0;
+ margin: 0;
+ padding: 0;
+ font-size: 11px;
+}
+.vprasanje img {
+ float: left;
+ margin: 0 10px 0 0px;
+}
+.vprasanje:hover {
+ background-color: lightgrey;
+ cursor: pointer;
+}
+
+.ime {
+ font-size: 14px;
+ width: 220px;
+ height: 25px;
+ padding: 5px 0 0 0;
+ margin: 15px auto 0 auto;
+ border: 1px solid #000;
+ background-color: lightgrey;
+ text-align: center;
+ overflow: hidden;
+}
+
+.izbran {
+ font-size: 14px;
+ width: 220px;
+ height: 25px;
+ padding: 5px 0 0 0;
+ margin: 15px auto 0 auto;
+ border: 1px solid #000;
+ background-color: lightgrey;
+ text-align: center;
+ overflow: hidden;
+}
+
+#change_survey_type {
+ padding: 15px;
+ border: 1px solid #990000;
+ background: white;
+}
+
+#change_survey_type_note {
+ margin-bottom: 10px;
+ float: left;
+ width: 100%;
+}
+
+#preview_page {
+ padding: 15px;
+ border: 1px solid #990000;
+ background: #f8f8f8;
+}
+
+#page_preview {
+ margin: 10px 10px 10px 10px;
+ padding: 0px 2px 10px 12px;
+ background-color: #efefef;
+ width: auto;
+ display: block;
+}
+
+.hidden_plus {
+ display: none;
+}
+
+#test_user_alert {
+ background-color: #fff0d4;
+ color: #ffa608;
+ border-bottom: 1px solid #d48800;
+ padding: 5px 10px;
+ font-weight: bold;
+ position: fixed;
+ top: 0px;
+ text-align: center;
+ width: 100%;
+ z-index: 51;
+}
+
+span.square {
+ display: inline-block;
+ width: 14px;
+ height: 14px;
+ vertical-align: text-bottom;
+ background-color: green;
+ opacity: 0.8;
+}
+
+.floatingHeader {
+ position: fixed;
+ visibility: hidden;
+ top: 0px;
+}
+
+.frame_dropping_box {
+ width: 230px;
+ padding: 5px;
+ margin: 10px auto 0px auto;
+ height: 15px;
+ text-indent: -25px;
+ border-left: 4px solid #b9c5d9;
+ border-right: 4px solid #b9c5d9;
+ border-bottom: 4px solid #b9c5d9;
+}
+
+.frame_dropping_titles_box {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 0px auto;
+ height: 15px;
+ text-align: center;
+ background-color: white;
+}
+
+.moving {
+ cursor: pointer;
+ margin-left: auto;
+ margin-right: auto;
+ width: 230px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.handle {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ background-color: white;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 12:12:02
+ Author : podkrizniku
+*/
+.grupahover {
+ background-color: #fff0d4 !important;
+ border: 1px solid #ffa608;
+ border-radius: 3px 3px 3px 3px;
+ padding: 5px;
+}
+
+span.library_on a {
+ color: #990000;
+}
+
+div .folder_container:hover {
+ background-color: #f5fafe;
+}
+div .folder_left {
+ float: left;
+}
+div .folder_left img.mapca {
+ cursor: move;
+}
+div .folder_left span.mapca {
+ cursor: move;
+}
+
+.folder strong:hover {
+ background-color: lightgrey;
+}
+
+#anketa_knjiznica {
+ min-height: 500px;
+ background-color: white;
+}
+#anketa_knjiznica ul {
+ list-style: none;
+ margin: 0;
+ padding-left: 18px;
+}
+#anketa_knjiznica li {
+ margin-bottom: 5px;
+}
+#anketa_knjiznica li .anketa {
+ margin: 0;
+ padding-left: 0;
+}
+#anketa_knjiznica .new_folder {
+ visibility: hidden;
+}
+#anketa_knjiznica .delete_folder {
+ visibility: hidden;
+}
+#anketa_knjiznica .sprites.mapa {
+ margin-bottom: 3px;
+}
+#anketa_knjiznica span.folderdrop:hover .new_folder {
+ visibility: visible;
+}
+#anketa_knjiznica span.folderdrop:hover .delete_folder {
+ visibility: visible;
+}
+#anketa_knjiznica span.folderdrop span {
+ vertical-align: middle;
+}
+#anketa_knjiznica .folder_container {
+ display: block;
+ height: 20px;
+ overflow: hidden;
+ padding: 2px 3px;
+ display: block;
+ min-height: 16px;
+ overflow: hidden;
+ padding: 2px 3px;
+}
+#anketa_knjiznica div .folder_right {
+ width: auto;
+ float: right;
+ text-align: left;
+}
+#anketa_knjiznica div .folder_right a {
+ padding-left: 15px;
+}
+#anketa_knjiznica div .folder_right .faicon {
+ vertical-align: -2px;
+}
+#anketa_knjiznica div .folder_right .faicon.library::before {
+ font-size: 18px;
+}
+#anketa_knjiznica div.folder_left {
+ width: 80%;
+ float: none;
+ max-width: 400px;
+ width: auto;
+}
+#anketa_knjiznica #library div.folder_left {
+ width: 400px;
+}
+#anketa_knjiznica div.folder_left.indent {
+ display: block;
+ height: 22px;
+ overflow: hidden;
+ position: relative;
+}
+#anketa_knjiznica .folder strong:hover {
+ background-color: #f5fafe;
+ cursor: pointer;
+}
+#anketa_knjiznica #libraryInner {
+ bottom: 0;
+ overflow: auto;
+}
+#anketa_knjiznica #libraryInner #searchLibrarySurveys {
+ clear: both;
+ display: block;
+ float: left;
+ margin: 0px 0 10px 0;
+ padding: 0 10px 10px 0px;
+}
+#anketa_knjiznica #libraryInner #searchLibrarySurveys input[type=text] {
+ width: 200px;
+ padding: 4px 0 4px 7px;
+ font-size: 12px;
+ border: 1px solid #c8e3f8;
+}
+#anketa_knjiznica #libraryInner #searchLibrarySurveys .buttonwrapper {
+ margin: -2px 0 0 2px;
+ padding: 1px 3px;
+}
+
+#copy_library_alert {
+ padding: 5px;
+ border: 1px solid #990000;
+ background: white;
+}
+
+div.anketa_vprasanja {
+ display: none;
+ padding-left: 33px;
+}
+div.anketa_vprasanja span.new_spr {
+ display: block;
+ overflow: hidden;
+ height: 22px;
+}
+div.anketa_vprasanja span:hover {
+ background-color: white;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 04-Aug-2018, 11:12:56
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 08-Aug-2018, 12:25:26
+ Author : podkrizniku
+*/
+.lbl_email_setting {
+ vertical-align: top;
+ line-height: 16px;
+ display: inline-block;
+}
+.lbl_email_setting #usercode_skip_0 {
+ margin: 5px 0 0 2px;
+}
+
+#srv_invitation_note {
+ display: inline-block;
+ padding: 3px 5px;
+ width: auto;
+ margin-left: 10px;
+ margin-bottom: 5px;
+}
+
+.ank_edit_inv H2 {
+ margin: 8px 0px 10px 0px;
+ padding: 0px;
+ font-size: 14px;
+ font-weight: 500;
+}
+.ank_edit_inv H2 strong {
+ color: black;
+}
+
+#inv_send_mail {
+ width: 100%;
+ display: block;
+}
+#inv_send_mail label {
+ vertical-align: text-bottom;
+}
+#inv_send_mail label input {
+ vertical-align: top;
+}
+#inv_send_mail table {
+ vertical-align: top;
+}
+#inv_send_mail table td {
+ vertical-align: top;
+}
+
+#inv_recipient_edit {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ /*span.h2 {
+ float: left;
+ display: inline-block;
+ padding: 5px 0 10px 0;
+ font-size: 14px;
+ font-weight: 600;
+ color: $strong_blue;
+ }*/
+ height: auto;
+}
+#inv_recipient_edit .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#inv_recipient_edit .popup_close:hover {
+ color: #1e88e5;
+}
+#inv_recipient_edit .popup_close a {
+ color: lightgrey;
+}
+#inv_recipient_edit .popup_close a:hover {
+ color: #1e88e5;
+}
+#inv_recipient_edit h2,
+#inv_recipient_edit .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#inv_recipient_edit p {
+ line-height: 20px;
+}
+#inv_recipient_edit.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#inv_recipient_edit.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#inv_recipient_edit.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#inv_recipient_edit.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#inv_recipient_edit.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#inv_recipient_edit.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#inv_recipient_edit.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#inv_recipient_edit.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#inv_recipient_edit.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#inv_recipient_edit.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#inv_recipient_edit.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#inv_recipient_edit.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#inv_recipient_edit.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#inv_recipient_edit.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#inv_recipient_edit.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#inv_recipient_edit div#inv_error_note {
+ color: #ee9800;
+ max-width: 330px;
+ overflow: visible;
+}
+
+#inv_msg_preview_hld {
+ padding: 10px 10px 15px;
+ margin-left: 10px;
+ min-height: 365px;
+ width: 650px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#inv_msg_preview_hld span.h2 {
+ font-size: 14px;
+ font-weight: 500;
+}
+#inv_msg_preview_hld table tr th {
+ width: 100px;
+ padding: 4px 2px;
+}
+#inv_msg_preview_hld table tr td {
+ padding: 4px 2px;
+}
+
+#tbl_recipients_list {
+ padding: 0px;
+ margin: 0px;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ clear: both;
+}
+#tbl_recipients_list th {
+ color: #333;
+ padding: 2px 5px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 27px;
+ vertical-align: middle;
+ background-color: #efefef;
+ border-top: 1px solid #efefef;
+ border-bottom: 1px solid #efefef;
+ width: auto;
+ min-width: 100px;
+ max-width: 128px;
+ overflow: hidden;
+ text-align: left;
+}
+#tbl_recipients_list td {
+ padding: 5px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #efefef;
+}
+#tbl_recipients_list tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+#tbl_recipients_list tr:nth-child(even) {
+ background-color: white;
+}
+
+#tbl_archive_list {
+ padding: 0px;
+ margin: 0px;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+}
+#tbl_archive_list th {
+ color: #333;
+ padding: 2px 5px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 27px;
+ vertical-align: middle;
+ background-color: #efefef;
+ border-top: 1px solid #efefef;
+ border-bottom: 1px solid #efefef;
+ width: auto;
+ min-width: 100px;
+ max-width: 128px;
+ overflow: hidden;
+ text-align: left;
+}
+#tbl_archive_list td {
+ padding: 5px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #efefef;
+}
+#tbl_archive_list tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+#tbl_archive_list tr:nth-child(even) {
+ background-color: white;
+}
+
+#tbl_recipients_send_list {
+ padding: 0px;
+ margin: 0px;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ clear: both;
+ border: 1px solid #c8e3f8;
+}
+#tbl_recipients_send_list th {
+ color: #333;
+ padding: 2px 5px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 27px;
+ vertical-align: middle;
+ background-color: #efefef;
+ border-top: 1px solid #efefef;
+ border-bottom: 1px solid #efefef;
+ width: auto;
+ min-width: 100px;
+ max-width: 128px;
+ overflow: hidden;
+ text-align: left;
+}
+#tbl_recipients_send_list td {
+ padding: 5px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #efefef;
+}
+#tbl_recipients_send_list tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+#tbl_recipients_send_list tr:nth-child(even) {
+ background-color: white;
+}
+#tbl_recipients_send_list th {
+ background-color: #dfeffb;
+ padding-left: 1px;
+ padding-right: 15px;
+ border-top: 1px solid #c8e3f8;
+ border-bottom: 1px solid #c8e3f8;
+}
+#tbl_recipients_send_list td {
+ padding: 2px 1px;
+ padding-left: 1px;
+ padding-right: 15px;
+ border-bottom: 1px solid #c8e3f8;
+}
+
+#tbl_recipients_source_list {
+ padding: 0px;
+ margin: 0px;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ clear: both;
+}
+#tbl_recipients_source_list th {
+ color: #333;
+ padding: 2px 5px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 27px;
+ vertical-align: middle;
+ background-color: #efefef;
+ border-top: 1px solid #efefef;
+ border-bottom: 1px solid #efefef;
+ width: auto;
+ min-width: 100px;
+ max-width: 128px;
+ overflow: hidden;
+ text-align: left;
+}
+#tbl_recipients_source_list td {
+ padding: 5px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #efefef;
+}
+#tbl_recipients_source_list tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+#tbl_recipients_source_list tr:nth-child(even) {
+ background-color: white;
+}
+#tbl_recipients_source_list td {
+ padding: 2px 1px;
+ padding-left: 2px;
+}
+
+.tbl_icon {
+ min-width: 20px !important;
+ max-width: 25px !important;
+ width: 20px !important;
+}
+
+.tbl_icon_sent {
+ min-width: 22px !important;
+ text-align: center !important;
+}
+
+.tbl_icon_responded {
+ min-width: 22px !important;
+ text-align: center !important;
+}
+
+.tbl_icon_unsubscribed {
+ min-width: 22px !important;
+ text-align: center !important;
+}
+
+.tbl_inv_left {
+ text-align: left !important;
+}
+
+.tbl_inv_center {
+ text-align: center !important;
+}
+
+.inv_note {
+ display: inline-block;
+ text-align: justify;
+ color: #333;
+ font-size: 11px;
+ max-width: 630px;
+ padding: 2px 10px;
+ margin-bottom: 10px;
+}
+
+#inv_field_container {
+ display: block !important;
+ margin: 0px !important;
+ padding: 0px !important;
+ clear: both;
+ font-size: 11px;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+}
+#inv_field_container ul {
+ display: flex !important;
+ flex-wrap: wrap;
+ margin: 0px !important;
+ padding: 0px !important;
+ clear: both;
+ list-style-type: none;
+ font-size: 11px;
+ border: grey;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+}
+#inv_field_container ul li {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ min-height: 24px;
+ width: 30%;
+ box-sizing: border-box;
+ padding-left: 5px;
+ margin: 5px;
+ color: #1e88e5;
+ text-align: left;
+ vertical-align: middle;
+ background-color: #f0f7fd;
+ border: 1px solid #1e88e5;
+ border-radius: 5px 5px 5px 5px;
+ -moz-border-radius: 5px 5px 5px 5px;
+ -webkit-border-radius: 5px 5px 5px 5px;
+ box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+}
+#inv_field_container ul li label {
+ width: 100%;
+ box-sizing: border-box;
+ padding: 8px 0;
+}
+#inv_field_container label {
+ padding: 5px;
+}
+#inv_field_container ul.noedit li.inv_field_enabled {
+ color: #1e88e5 !important;
+ border: 1px solid #efefef !important;
+ background-color: #efefef !important;
+ cursor: text !important;
+}
+
+#inv_sys_container {
+ display: block !important;
+ margin: 0px !important;
+ padding: 0px !important;
+ clear: both;
+ font-size: 11px;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+}
+#inv_sys_container ul {
+ display: flex !important;
+ flex-wrap: wrap;
+ margin: 0px !important;
+ padding: 0px !important;
+ clear: both;
+ list-style-type: none;
+ font-size: 11px;
+ border: grey;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+}
+#inv_sys_container ul li {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ min-height: 24px;
+ width: 30%;
+ box-sizing: border-box;
+ padding-left: 5px;
+ margin: 5px;
+ color: #1e88e5;
+ text-align: left;
+ vertical-align: middle;
+ background-color: #f0f7fd;
+ border: 1px solid #1e88e5;
+ border-radius: 5px 5px 5px 5px;
+ -moz-border-radius: 5px 5px 5px 5px;
+ -webkit-border-radius: 5px 5px 5px 5px;
+ box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+}
+#inv_sys_container ul li label {
+ width: 100%;
+ box-sizing: border-box;
+ padding: 8px 0;
+}
+#inv_sys_container label {
+ padding: 5px;
+}
+#inv_sys_container ul.noedit li.inv_field_enabled {
+ color: #1e88e5 !important;
+ border: 1px solid #efefef !important;
+ background-color: #efefef !important;
+ cursor: text !important;
+}
+#inv_sys_container ul li {
+ overflow: hidden;
+ white-space: nowrap;
+ width: 85px;
+}
+
+ul#merge {
+ font-size: 11px;
+ display: block !important;
+ margin: 0px !important;
+ padding: 0px !important;
+ clear: both;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+ min-height: 25px;
+ list-style-type: none;
+ margin: 0px;
+ width: auto;
+ border: gray;
+}
+ul#merge input {
+ margin-bottom: 3px;
+}
+ul#merge li {
+ cursor: pointer;
+ height: 18px;
+ width: 80px;
+ width: auto;
+ display: inline-block;
+ padding: 1px 0px 2px 0px;
+ margin: 5px;
+ color: #1e88e5;
+ background-color: #f0f7fd;
+ border: 1px solid #1e88e5;
+ text-align: center;
+ vertical-align: middle;
+ border-radius: 5px 5px 5px 5px;
+ -moz-border-radius: 5px 5px 5px 5px;
+ -webkit-border-radius: 5px 5px 5px 5px;
+ box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+ -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
+}
+
+ul#merger label {
+ margin-top: 2px;
+}
+
+#inv_field_container.from_system ul li {
+ width: 85px;
+}
+
+.inv_field_enabled {
+ color: white !important;
+ border: 1px solid #1e88e5 !important;
+ background-color: #1e88e5 !important;
+}
+
+textarea#inv_recipients_list {
+ margin-top: 4px;
+ width: 635px;
+ border: none;
+ min-height: 100px;
+ padding: 0px;
+ outline: 1px solid grey;
+ font-size: 11px;
+ max-height: 200px;
+ overflow: auto;
+}
+
+#merge label {
+ padding: 5px;
+}
+
+#inv_field_list {
+ color: #606060;
+ font-style: italic;
+}
+
+#inv_recipiens_added {
+ font-size: 12px;
+ color: #409ee7;
+ width: 620px;
+ padding: 10px;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+ line-height: 1.2em;
+}
+
+#inv_recipiens_rejected {
+ font-size: 12px;
+ color: black;
+ width: 620px;
+ padding: 10px;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ line-height: 1.5em;
+ border: 1px solid lightgrey;
+}
+
+.inv_count {
+ padding-left: 5px;
+ font-weight: bold;
+}
+
+.inv_sample {
+ float: left;
+ display: inline-block;
+ color: #606060;
+ font-style: italic;
+}
+
+#inv_messages_holder_noEmailing {
+ padding: 10px;
+ margin: 0 0 15px 10px;
+ width: 883px;
+ background: #f5fafe;
+}
+
+#inv_msg_preview {
+ max-width: 680px;
+ margin-top: 10px;
+ background-color: #f5fafe !important;
+}
+
+#inv_send_mail_preview {
+ width: auto;
+}
+#inv_send_mail_preview th {
+ font-weight: normal;
+ margin: 3px;
+ padding: 3px;
+}
+#inv_send_mail_preview td {
+ margin: 3px;
+ padding: 3px;
+ display: inline-block;
+ font-weight: normal;
+ text-align: left;
+ width: 100%;
+}
+
+.inv_bt {
+ border-bottom: 1px solid #efefef;
+}
+
+input#inv_message_subject {
+ font-size: 12px;
+ width: 380px;
+ border: 1px solid lightgrey;
+ padding: 5px;
+ font-family: Tahoma, sans-serif;
+}
+input#inv_message_subject:focus {
+ background-color: #fff0d4;
+}
+
+textarea#inv_message_body {
+ font-size: 12px;
+ width: 380px;
+ border: 1px solid lightgrey;
+ padding: 5px;
+ font-family: Tahoma, sans-serif;
+ height: 120px;
+ min-height: 200px;
+}
+textarea#inv_message_body:focus {
+ background-color: #fff0d4;
+}
+
+input#inv_message_replyto {
+ font-size: 12px;
+ width: 380px;
+ border: 1px solid lightgrey;
+ padding: 5px;
+ font-family: Tahoma, sans-serif;
+}
+input#inv_message_replyto:focus {
+ background-color: #fff0d4;
+}
+
+input#inv_message_comment {
+ font-size: 12px;
+ width: 380px;
+ border: 1px solid lightgrey;
+ padding: 5px;
+ font-family: Tahoma, sans-serif;
+}
+input#inv_message_comment:focus {
+ background-color: #fff0d4;
+}
+
+.inv_message_errors {
+ float: left;
+ width: 600px;
+ height: auto;
+ margin: 0px;
+ padding: 10px;
+ line-height: 15px;
+ font-size: 11px;
+ background-color: #efefef;
+ color: #990000;
+ font-weight: bold;
+ border: 1px solid #990000;
+}
+
+.inv_error_note {
+ color: #990000;
+ margin-left: 10px;
+ line-height: 18px;
+ line-height: 1.5em;
+ font-size: 11px;
+ font-weight: bold;
+ padding: 5px 0px;
+ width: auto;
+}
+
+#inv_error_note {
+ color: #990000;
+ margin-left: 10px;
+ line-height: 18px;
+ line-height: 1.5em;
+ font-size: 11px;
+ font-weight: bold;
+ padding: 5px 0px;
+ width: auto;
+}
+
+.inv_msg_note {
+ color: #990000;
+ margin-left: 10px;
+ line-height: 18px;
+ line-height: 1.5em;
+ font-size: 11px;
+ font-weight: bold;
+ padding: 5px 0px;
+ width: auto;
+ color: #409ee7;
+}
+
+#inv_import_list_container {
+ margin-right: 5px;
+ padding: 8px;
+ min-height: 355px;
+ width: 670px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ float: left;
+ display: inline-block;
+ width: auto;
+}
+#inv_import_list_container span label {
+ vertical-align: bottom;
+}
+
+#inv_recipients_profiles_holder {
+ margin-right: 5px;
+ padding: 8px;
+ min-height: 355px;
+ width: 670px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ float: left;
+ margin-left: 10px;
+ display: inline-block;
+ width: auto;
+ overflow: hidden;
+}
+#inv_recipients_profiles_holder span {
+ line-height: 24px;
+ font-size: 13px;
+}
+
+#inv_messages_profiles_holder {
+ margin-right: 5px;
+ padding: 8px;
+ min-height: 355px;
+ width: 670px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ float: left;
+ margin-left: 10px;
+ display: inline-block;
+ width: auto;
+ overflow: hidden;
+}
+#inv_messages_profiles_holder span {
+ line-height: 24px;
+ font-size: 13px;
+}
+
+#inv_import_list {
+ float: left;
+ display: inline-block;
+ width: auto;
+}
+
+.append-merge #inv_import_list {
+ float: none;
+ display: block;
+}
+
+#inv_step_nav {
+ clear: both;
+ display: inline-block;
+ width: auto;
+ padding: 0px 3px;
+ margin: 0 20px 10px 0;
+ font-size: 14px;
+ font-weight: 600;
+ color: #1e88e5;
+}
+
+.inv_space {
+ clear: both;
+ display: inline-block;
+ padding: 0px;
+ margin: 0px;
+ width: 40px;
+}
+
+div.inv_step {
+ height: 15px;
+ cursor: pointer;
+ float: left;
+ width: auto;
+ margin: 3px 5px;
+ padding: 0px;
+}
+div.inv_step span.circle {
+ display: inline-block;
+ margin: 0px 0px;
+ width: 24px;
+ height: 24px;
+ font-size: 13px;
+ line-height: 24px;
+ text-align: center;
+ color: #6cb1ee;
+ border: 1px solid #6cb1ee;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+div.inv_step span.label {
+ display: inline-block;
+ padding: 0px 5px;
+ line-height: 24px;
+ text-align: center;
+ color: #6cb1ee;
+ line-height: 18px;
+}
+div.inv_step a:hover span {
+ color: #1e88e5;
+}
+div.inv_step a:hover span.circle {
+ color: white;
+ background-color: #ffa608;
+ border: 1px solid #ffa608;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+div.inv_step .yellow {
+ height: 10px;
+}
+
+div.inv_step.active {
+ background-color: white;
+}
+div.inv_step.active a span {
+ color: #1e88e5;
+}
+div.inv_step.active a span.circle {
+ color: white;
+ background-color: #ffa608;
+ border: 1px solid #ffa608;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+
+.inv_step_space {
+ display: block;
+ float: left;
+ margin: 0px;
+ padding: 0px;
+ height: 24px;
+ width: 13px;
+}
+
+#invitation_profile_notes {
+ display: inline-block;
+ float: left;
+ width: 255px;
+ height: auto;
+ min-height: 365px;
+ margin: 0px 0px 0px 15px !important;
+ padding: 10px;
+ line-height: 14px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#invitation_profile_notes ul {
+ list-style: square inside;
+ margin: 0px;
+ padding: 0px;
+}
+#invitation_profile_notes li {
+ padding-bottom: 5px;
+}
+
+#inv_select_mail_to {
+ display: block;
+ float: left;
+ margin-right: 20px;
+ padding: 7px;
+ min-height: 250px;
+ min-width: 450px;
+ font-size: 12px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#inv_select_mail_to_respondents {
+ font-size: 12px;
+ margin: auto;
+ margin-top: 10px;
+ padding: 7px;
+ min-height: 250px;
+ max-height: auto;
+ float: left;
+}
+#inv_select_mail_to_respondents ol {
+ margin: 0px;
+ padding: 0px;
+ list-style: none;
+}
+#inv_select_mail_to_respondents ol li {
+ margin: 0px;
+ padding: 0px;
+ list-style: none;
+}
+
+#inv_select_mail_preview {
+ float: left;
+ padding: 7px;
+ margin-left: 7px;
+ width: 428px;
+ font-size: 12px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+.inv_send_span {
+ display: inline-block;
+ margin-top: 7px;
+}
+.inv_send_span label {
+ vertical-align: middle !important;
+}
+.inv_send_span input {
+ vertical-align: middle !important;
+ margin-bottom: 3px;
+}
+
+.inv_send_span.shift {
+ padding-left: 100px;
+}
+
+#inv_view_arch_recipients {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ height: auto;
+ width: auto;
+}
+#inv_view_arch_recipients .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#inv_view_arch_recipients .popup_close:hover {
+ color: #1e88e5;
+}
+#inv_view_arch_recipients .popup_close a {
+ color: lightgrey;
+}
+#inv_view_arch_recipients .popup_close a:hover {
+ color: #1e88e5;
+}
+#inv_view_arch_recipients h2,
+#inv_view_arch_recipients .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#inv_view_arch_recipients p {
+ line-height: 20px;
+}
+#inv_view_arch_recipients.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#inv_view_arch_recipients.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#inv_view_arch_recipients.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#inv_view_arch_recipients.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#inv_view_arch_recipients.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#inv_view_arch_recipients.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#inv_view_arch_recipients.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#inv_view_arch_recipients.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#inv_view_arch_recipients.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#inv_view_arch_recipients.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#inv_view_arch_recipients.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#inv_view_arch_recipients.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#inv_view_arch_recipients.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#inv_view_arch_recipients.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#inv_view_arch_recipients.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+.inv_arch_subject {
+ max-width: 200px;
+}
+
+#inv_import_list_profiles {
+ margin: 0px;
+ padding: 0px;
+ min-width: 100px;
+ max-width: 400px;
+ min-height: 100px;
+ max-height: 600px;
+ overflow: auto !important;
+ display: inline-block;
+ border: 1px solid lightgrey;
+ background-color: white;
+ width: 200px !important;
+ height: 237px !important;
+}
+#inv_import_list_profiles ol {
+ margin: 0px;
+ padding: 0px;
+ display: block;
+ border-bottom: 1px solid lightgrey;
+}
+#inv_import_list_profiles ol li {
+ display: block;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+ line-height: 20px;
+ border-top: 1px solid lightgrey;
+ padding: 0px 5px;
+ cursor: pointer;
+}
+#inv_import_list_profiles ol li.active {
+ background-color: #1e88e5;
+ color: white;
+}
+
+#invitation_messages {
+ margin: 0px;
+ padding: 0px;
+ min-width: 100px;
+ max-width: 400px;
+ min-height: 100px;
+ max-height: 600px;
+ overflow: auto !important;
+ display: inline-block;
+ border: 1px solid lightgrey;
+ background-color: white;
+ width: 200px !important;
+ height: 237px !important;
+}
+#invitation_messages ol {
+ margin: 0px;
+ padding: 0px;
+ display: block;
+ border-bottom: 1px solid lightgrey;
+}
+#invitation_messages ol li {
+ display: block;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+ line-height: 20px;
+ border-top: 1px solid lightgrey;
+ padding: 0px 5px;
+ cursor: pointer;
+}
+#invitation_messages ol li.active {
+ background-color: #1e88e5;
+ color: white;
+}
+
+#inv_recipients_profile_name {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ height: auto;
+ width: 300px;
+}
+#inv_recipients_profile_name .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#inv_recipients_profile_name .popup_close:hover {
+ color: #1e88e5;
+}
+#inv_recipients_profile_name .popup_close a {
+ color: lightgrey;
+}
+#inv_recipients_profile_name .popup_close a:hover {
+ color: #1e88e5;
+}
+#inv_recipients_profile_name h2,
+#inv_recipients_profile_name .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#inv_recipients_profile_name p {
+ line-height: 20px;
+}
+#inv_recipients_profile_name.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#inv_recipients_profile_name.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#inv_recipients_profile_name.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#inv_recipients_profile_name.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#inv_recipients_profile_name.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#inv_recipients_profile_name.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#inv_recipients_profile_name.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#inv_recipients_profile_name.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#inv_recipients_profile_name.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#inv_recipients_profile_name.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#inv_recipients_profile_name.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#inv_recipients_profile_name.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#inv_recipients_profile_name.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#inv_recipients_profile_name.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#inv_recipients_profile_name.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#inv_recipients_profile_name.access {
+ min-width: 350px;
+}
+
+#rec_profile_name {
+ width: 150px;
+}
+
+#rec_profile_comment {
+ width: 250px;
+}
+
+#inv_edit_recipient {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+}
+#inv_edit_recipient th {
+ text-align: right;
+ font-weight: normal;
+ padding: 3px;
+}
+#inv_edit_recipient td {
+ padding: 3px;
+}
+#inv_edit_recipient input {
+ width: 300px;
+}
+
+.inv_input_error {
+ border: 1px solid #990000;
+}
+
+#inv_rec_filter {
+ float: left;
+ width: auto;
+ margin-right: 5px;
+ margin-bottom: 10px;
+ padding: 8px;
+ border: 1px solid #efefef;
+}
+
+#inv_rec_cehckboxes {
+ float: left;
+ width: auto !important;
+}
+#inv_rec_cehckboxes span {
+ display: inline-block;
+ padding: 3px !important;
+}
+
+.inv_high {
+ display: inline-block;
+ line-height: 13px;
+ background: #fff0d4;
+ color: #d48800;
+ font-weight: bold;
+}
+
+.inv_high_i {
+ display: inline-block;
+ line-height: 13px;
+ background: #fff0d4;
+ color: #d48800;
+ font-weight: bold;
+}
+
+#inv_delete_rec_confirm {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ height: auto;
+}
+#inv_delete_rec_confirm .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#inv_delete_rec_confirm .popup_close:hover {
+ color: #1e88e5;
+}
+#inv_delete_rec_confirm .popup_close a {
+ color: lightgrey;
+}
+#inv_delete_rec_confirm .popup_close a:hover {
+ color: #1e88e5;
+}
+#inv_delete_rec_confirm h2,
+#inv_delete_rec_confirm .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#inv_delete_rec_confirm p {
+ line-height: 20px;
+}
+#inv_delete_rec_confirm.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#inv_delete_rec_confirm.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#inv_delete_rec_confirm.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#inv_delete_rec_confirm.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#inv_delete_rec_confirm.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#inv_delete_rec_confirm.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#inv_delete_rec_confirm.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#inv_delete_rec_confirm.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#inv_delete_rec_confirm.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#inv_delete_rec_confirm.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#inv_delete_rec_confirm.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#inv_delete_rec_confirm.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#inv_delete_rec_confirm.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#inv_delete_rec_confirm.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#inv_delete_rec_confirm.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+.inv_send_message {
+ padding: 15px;
+ height: auto;
+ background-color: #f5fafe;
+ max-width: 600px;
+}
+
+.inv_new_list_note {
+ font-style: italic;
+ color: grey;
+ font-size: 95%;
+}
+
+#inv_bottom_edit {
+ width: auto;
+ margin: 7px 0 0 11px;
+}
+#inv_bottom_edit a {
+ padding-right: 10px;
+}
+
+#inv_arch_mail_preview {
+ font-size: 12px;
+ margin: 5px auto;
+ overflow: auto;
+ max-height: 500px;
+}
+#inv_arch_mail_preview table#inv_arch_mail_preview td {
+ padding-top: 5px;
+ padding-bottom: 10px;
+}
+
+fieldset.inv_fieldset {
+ display: block;
+ width: 98%;
+ margin: -5px 0 0 5px;
+}
+fieldset.inv_fieldset > div {
+ margin: 0px 0px;
+}
+fieldset.inv_fieldset span.legend {
+ color: grey;
+ font-weight: 500;
+}
+
+table.inv_dashboard_table {
+ width: 530px !important;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ font-size: 12px;
+}
+table.inv_dashboard_table th {
+ padding: 3px;
+ border-bottom: 1px solid #efefef;
+ font-weight: normal;
+ text-align: left;
+}
+table.inv_dashboard_table td {
+ padding: 3px;
+}
+table.inv_dashboard_table th + th {
+ width: 70px !important;
+ text-align: center;
+}
+table.inv_dashboard_table th + th + th {
+ width: 70px !important;
+ text-align: center;
+}
+table.inv_dashboard_table td + td {
+ width: 70px !important;
+ text-align: center;
+}
+table.inv_dashboard_table td + td + td {
+ width: 70px !important;
+ text-align: center;
+}
+
+table.inv_dashboard_table.sub {
+ margin-left: 20px;
+ width: 510px !important;
+ margin-bottom: 25px;
+}
+
+span.inv_dashboard_sub_title {
+ display: inline-block;
+ margin-left: 5px;
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ margin-bottom: 5px;
+}
+span.inv_dashboard_sub_title span {
+ margin-left: 5px;
+ color: grey;
+ font-size: 13px;
+ font-weight: 600;
+ margin-bottom: 5px;
+}
+
+span.inv_dashboard_sub_detail {
+ display: inline-block;
+ margin: 0px 5px 5px 5px;
+ font-size: 13px;
+}
+
+#inv_send_note {
+ position: absolute;
+ z-index: 9999;
+ display: none;
+ width: 200px;
+ height: auto;
+ margin: auto auto;
+ margin-top: -100px;
+ padding: 20px 50px;
+ text-align: center;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+}
+
+div#inv_edit_rec_list {
+ margin: 0px;
+ padding: 0px;
+ overflow: auto !important;
+ background-color: white;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ user-select: none;
+ -ms-user-select: none;
+}
+
+table.inv_edit_rec_list {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ border: 1px solid lightgrey;
+ border-top: none;
+ max-width: 800px;
+}
+table.inv_edit_rec_list tr {
+ border-top: 1px solid lightgrey;
+ cursor: pointer;
+}
+table.inv_edit_rec_list tr.active {
+ background-color: #061d31;
+ color: white;
+}
+table.inv_edit_rec_list td {
+ padding: 3px 5px;
+}
+table.inv_edit_rec_list th {
+ padding: 3px 5px;
+}
+
+#invListAccess {
+ max-width: 600px;
+}
+
+div.listAccess_uid {
+ min-width: 147px;
+ height: 19px;
+}
+
+#inv_upload_list {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ height: auto;
+ padding-bottom: 45px;
+}
+#inv_upload_list .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#inv_upload_list .popup_close:hover {
+ color: #1e88e5;
+}
+#inv_upload_list .popup_close a {
+ color: lightgrey;
+}
+#inv_upload_list .popup_close a:hover {
+ color: #1e88e5;
+}
+#inv_upload_list h2,
+#inv_upload_list .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#inv_upload_list p {
+ line-height: 20px;
+}
+#inv_upload_list.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#inv_upload_list.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#inv_upload_list.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#inv_upload_list.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#inv_upload_list.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#inv_upload_list.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#inv_upload_list.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#inv_upload_list.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#inv_upload_list.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#inv_upload_list.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#inv_upload_list.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#inv_upload_list.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#inv_upload_list.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#inv_upload_list.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#inv_upload_list.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#tbl_respondentArchive {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ clear: both;
+}
+#tbl_respondentArchive th {
+ color: #333;
+ padding: 3px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 24px;
+ vertical-align: middle;
+ background-color: #efefef;
+ border-top: 1px solid #efefef;
+ border-bottom: 1px solid #efefef;
+ text-align: left;
+ width: 150px;
+}
+#tbl_respondentArchive td {
+ padding: 5px 3px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #efefef;
+}
+#tbl_respondentArchive tr:nth-child(odd) {
+ background-color: #f5fafe;
+}
+#tbl_respondentArchive tr:nth-child(even) {
+ background-color: white;
+}
+
+span.span_list_archive {
+ display: inline-block;
+ padding-top: 10px;
+}
+
+span.inv_sort_ascending {
+ /*background-repeat: no-repeat;
+ background-image: url(../../../admin/survey/img_0/sprites.png);*/
+ display: inline-block;
+ height: 5px;
+ width: 9px;
+ margin: auto 50%;
+ float: right;
+ bottom: 0px;
+ background-position: -225px -98px;
+}
+
+span.inv_sort_descending {
+ /*background-repeat: no-repeat;
+ background-image: url(../../../admin/survey/img_0/sprites.png);*/
+ display: inline-block;
+ height: 5px;
+ width: 9px;
+ margin: auto 50%;
+ float: right;
+ bottom: 0px;
+ background-position: -225px -108px;
+}
+
+#email_server_warning {
+ box-sizing: border-box;
+ margin: 0 0 20px 10px;
+ padding: 10px;
+ line-height: 15px;
+ color: #d48800;
+ background-color: #fff0d4;
+ border: 1px solid #d48800;
+}
+
+.append_step {
+ padding: 0 0 10px 30px;
+}
+.append_step input[type=file] {
+ font-weight: 600;
+ color: #ffa608;
+ font-size: 11px;
+}
+
+#invRecipiensList1 {
+ padding: 2px 0 0 10px;
+}
+
+#invRecipiensList2 {
+ padding: 2px 0 0 10px;
+}
+
+#invRecipiensList3 {
+ padding: 2px 0 0 10px;
+}
+
+#invRecipiensList4 {
+ padding: 2px 0 0 10px;
+}
+
+#invRecipiensList5 {
+ padding: 2px 0 0 10px;
+}
+
+.inv_send_mail_send_type {
+ margin-bottom: 20px;
+ padding: 7px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#inv_send_mail_btn {
+ height: 30px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Aug-2018, 11:14:22
+ Author : podkrizniku
+*/
+.publish_url_holder {
+ padding: 5px 0 13px 0;
+ line-height: 20px;
+}
+
+.url_box_active {
+ padding: 5px;
+ border: 1px solid #1e88e5;
+ background: none repeat scroll 0 0 #f0f7fd;
+}
+.url_box_active b {
+ font-weight: 500;
+}
+
+#vabila {
+ min-height: 250px;
+ background-color: white;
+}
+#vabila span#anketa_aktivacija_note {
+ display: inline-block;
+ box-sizing: border-box;
+ width: 100%;
+ padding: 10px;
+ margin-bottom: 15px;
+ font-size: 15px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#vabila span#anketa_aktivacija_note #vabila_anketa_aktivacija a {
+ color: #ffa608;
+ padding-left: 10px;
+}
+#vabila span#anketa_aktivacija_note .sprites.star_off {
+ vertical-align: -5%;
+}
+#vabila span#anketa_aktivacija_note .sprites.star_on {
+ vertical-align: -5%;
+}
+#vabila span#anketa_aktivacija_note.google_yellow {
+ color: #333;
+ background-color: #fff0d4 !important;
+ border: 1px solid #ffa608;
+}
+#vabila span#anketa_aktivacija_note.google_yellow #vabila_anketa_aktivacija a {
+ font-weight: 500;
+ color: #d48800;
+}
+#vabila span#anketa_diagnostika_note {
+ display: inline-block;
+ width: auto;
+ margin-bottom: 10px;
+ margin-left: 2px;
+ margin-bottom: 5px;
+ padding: 5px;
+ font-size: 15px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#vabila #anketa_diagnostika_note2 {
+ padding: 10px;
+ margin: 10px 0 15px 0;
+ font-size: 15px;
+ color: #d48800;
+ border: 1px solid #ffa608;
+ background-color: #fff0d4;
+}
+
+.shift {
+ margin: 0px 0px 0px 20px;
+}
+
+.labelSpan {
+ width: 60px;
+ display: table-cell;
+ float: left;
+ text-align: left;
+}
+
+.labelSpanWide {
+ width: 60px;
+ display: table-cell;
+ float: left;
+ text-align: left;
+ width: 100px;
+}
+
+.qs_data {
+ margin-left: 5px;
+ display: inline-block;
+ font-weight: normal !important;
+}
+
+#tbl_inv_setting td {
+ vertical-align: top;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+}
+#tbl_inv_setting td fieldset {
+ padding: 5px 15px;
+ margin: 3px;
+}
+#tbl_inv_setting p {
+ margin: 7px 0px;
+}
+#tbl_inv_setting textarea:focus {
+ border: none;
+ background-color: #fff0d4;
+ border: 1px dashed darkgray;
+ padding: 2px;
+}
+
+#surveyInvitationSettingServer {
+ min-width: 440px;
+ max-width: 700px;
+ margin: 15px 10px 10px 5px;
+ display: inline-block;
+ padding: 0 10px 10px 10px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#surveyInvitationSetting {
+ min-width: 440px;
+ margin: 15px 10px 10px 5px;
+ display: inline-block;
+ padding: 0 10px 10px 10px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Aug-2018, 11:16:37
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Aug-2018, 11:24:43
+ Author : podkrizniku
+*/
+#simpleMailInvitation_div {
+ min-width: 500px;
+}
+#simpleMailInvitation_div div.profile_holder {
+ float: left;
+ width: 210px;
+ border: 1px solid grey;
+ height: 250px;
+}
+#simpleMailInvitation_div div.profile_holder div.option {
+ cursor: pointer;
+ display: block;
+ border-bottom: 1px solid grey;
+ padding: 1px;
+}
+#simpleMailInvitation_div div.profile_holder div.active {
+ background-color: #061d31;
+ color: white;
+}
+
+#simpleMailInvitation_div.wide {
+ min-width: 995px;
+ margin-left: -200px;
+}
+
+#simpleMailInvitationCoverDiv {
+ position: absolute;
+ left: 0px;
+ width: 100%;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ height: 100%;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ opacity: 0.4;
+ z-index: 10;
+ display: none;
+}
+
+#simpleMailInvitationPreviewDiv {
+ display: none;
+ position: absolute;
+ width: 550px;
+ top: 25px;
+ left: 200px;
+ z-index: 20;
+ border: 1px solid #990000;
+ background-color: #f8f8f8;
+ padding: 10px;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ box-shadow: 0 0 8px grey;
+ -moz-box-shadow: 0 0 8px grey;
+ -webkit-box-shadow: 0 0 8px grey;
+}
+
+#simpleMailSubject {
+ width: 500px;
+}
+
+#simpleMailBody {
+ width: 500px;
+ height: 200px;
+ resize: none;
+}
+
+#simpleMailRecipients {
+ width: 250px;
+ height: 235px;
+ resize: none;
+}
+
+.simpleMailError {
+ border: 1px solid #ffa608;
+ background-color: #fff0d4;
+ padding: 5px;
+ width: auto;
+ margin-bottom: 5px;
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+}
+
+#insert_email_respondents {
+ padding: 5px;
+ border: 1px solid #990000;
+ background: white;
+}
+#insert_email_respondents fieldset {
+ border: 1px solid grey;
+ padding: 8px;
+}
+
+#survey_invitation {
+ width: auto;
+ height: 350px;
+ padding: 10px;
+}
+
+#invitation_profiles {
+ height: 290px;
+ overflow: auto;
+ cursor: pointer;
+}
+#invitation_profiles .option {
+ padding: 1px;
+}
+#invitation_profiles .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+#invitation_profile_values {
+ float: left;
+ width: 550px;
+ margin: 0px;
+ display: block;
+ height: 330px;
+ margin-left: 10px;
+}
+
+#invitation_profile_content {
+ width: 473px;
+ height: 220px;
+ border: 1px solid #c8e3f8;
+ overflow: auto;
+}
+
+#invitation_profile_title {
+ width: 420px;
+}
+
+#invitation_new_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+#invitation_rename_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+#invitation_delete_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+.email_invitations_holder {
+ float: right;
+ width: 135px;
+ border: 1px solid #c8e3f8;
+ height: 260px;
+ margin: 0px;
+}
+
+#email_invitations {
+ height: 260px;
+ overflow: auto;
+ cursor: pointer;
+}
+#email_invitations .option {
+ padding: 1px;
+}
+#email_invitations .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+#email_invitations_values {
+ float: left;
+ width: 425px;
+ margin: 0px;
+ display: block;
+}
+
+#email_invitation_value_text {
+ width: 360px;
+ height: 193px;
+ border: 1px solid #c8e3f8;
+ overflow: auto;
+}
+
+#conditionProfileNote.simple {
+ margin-left: 10px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 04-Aug-2018, 11:33:01
+ Author : podkrizniku
+*/
+#placeholder.komentarji {
+ margin: 0px;
+}
+
+.comment {
+ font-style: italic;
+ color: #d48800;
+ width: auto;
+ padding-right: 10px;
+ padding-top: 3px;
+ display: block;
+ float: left;
+}
+
+.if_comment {
+ font-style: italic;
+ color: #aaa;
+ width: auto;
+ margin: 0px 3px;
+}
+
+.spr_comment {
+ font-style: italic;
+ color: #aaa;
+ width: auto;
+ margin: 0px 3px;
+}
+
+#quick_comments_link {
+ margin-bottom: 1px !important;
+ margin-left: 3px !important;
+ padding-bottom: 3px !important;
+}
+#quick_comments_link a span.link {
+ display: inline-block;
+ padding: 3px !important;
+ padding-bottom: 5px !important;
+ font-size: 11px;
+ vertical-align: top;
+}
+
+#quick_comments_link.newCss {
+ height: 20px !important;
+ line-height: 20px !important;
+ text-align: center;
+ margin-top: 8px !important;
+}
+#quick_comments_link.newCss img {
+ vertical-align: middle;
+}
+
+.comments_on_alert {
+ margin-bottom: 10px;
+}
+.comments_on_alert a {
+ font-weight: 500;
+}
+.comments_on_alert a:hover {
+ color: #166dba;
+}
+
+.comment_qtip_title_secondLine {
+ color: grey;
+ font-weight: normal !important;
+ padding-top: 5px;
+}
+
+#comment_question_note {
+ display: block;
+ width: auto;
+ margin-bottom: 15px;
+ margin-left: 5px;
+ padding: 5px 10px;
+ font-size: 15px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+#topSettingsHolder.komentarji #additional_navigation a span,
+#topSettingsHolder.komentarji_anketa #additional_navigation a span {
+ padding: 2px 0px 2px 0;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 04-Aug-2018, 13:45:34
+ Author : podkrizniku
+*/
+#analiza_data {
+ margin-bottom: 10px;
+ background-color: white;
+}
+#analiza_data #tableContainer {
+ margin-bottom: 20px;
+ clear: both;
+}
+
+.data_spr_editing {
+ background-color: #eafada;
+}
+
+#vnosi_paginacija {
+ float: right;
+}
+#vnosi_paginacija div {
+ padding: 1px 3px;
+ font-size: 100%;
+ line-height: 10px;
+}
+#vnosi_paginacija div a {
+ vertical-align: middle;
+}
+#vnosi_paginacija div label {
+ text-align: right;
+ display: inline-block;
+ cursor: auto;
+ margin: 0 5px 0 20px;
+ padding-bottom: 2px;
+}
+#vnosi_paginacija div select {
+ display: inline-block;
+ width: 50px;
+ margin: 0 5px;
+ text-align: center;
+}
+
+.top_paginacija {
+ float: right;
+ margin: 30px 0 10px 0;
+}
+
+#div_paginacija_vnosov {
+ display: inline;
+ float: right;
+ padding: 5px;
+ margin-left: 0px;
+}
+
+#div_paginacija_vprasanj {
+ display: inline;
+ float: left;
+ padding: 5px;
+}
+
+#bottom_edit {
+ width: auto;
+ margin: -12px 10px 0 28px;
+}
+
+#bottom_edit.shifted {
+ margin-left: 5px;
+}
+
+.headerCell {
+ max-width: 250px;
+ max-height: 1.1em;
+ overflow: hidden;
+}
+
+#dataTable {
+ table-layout: fixed;
+ width: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ border-spacing: 0px;
+ outline: 1px solid #c8e3f8;
+ border-top: 1px solid #c8e3f8;
+ border-left: 1px solid #c8e3f8;
+ border-bottom: 1px solid #c8e3f8;
+}
+#dataTable .dataCell {
+ position: relative;
+ white-space: nowrap;
+ overflow: hidden;
+ width: 100%;
+ min-width: 20px;
+ max-height: 1.1em;
+ padding: 3px 0;
+ text-indent: 3px;
+}
+#dataTable .headerCell {
+ white-space: nowrap;
+ padding: 3px;
+}
+#dataTable th {
+ border-right: 1px solid #c8e3f8;
+ border-bottom: 1px solid #c8e3f8;
+ font-weight: normal;
+ text-align: left;
+ background-color: #f5fafe;
+ cursor: pointer;
+}
+#dataTable col {
+ width: 100px;
+}
+#dataTable col.data_edit {
+ width: 23px;
+}
+#dataTable td {
+ border-right: 1px solid #c8e3f8;
+ border-bottom: 1px solid lightgrey;
+ padding: 3px;
+ font-weight: normal;
+ text-align: left;
+ max-width: 200px;
+ overflow: hidden;
+ line-height: 18px;
+}
+#dataTable td .highlighted {
+ font-weight: bold;
+ color: red;
+ background-color: yellow;
+}
+#dataTable td.data_edit .pdf {
+ cursor: pointer;
+}
+#dataTable td.data_edit .rtf {
+ cursor: pointer;
+}
+#dataTable td.data_edit .evoli {
+ cursor: pointer;
+}
+#dataTable td.data_edit .evoli2 {
+ cursor: pointer;
+}
+#dataTable td.data_edit .evoli3 {
+ cursor: pointer;
+}
+#dataTable td.data_edit .mfdps {
+ cursor: pointer;
+}
+#dataTable select {
+ font-size: 11px !important;
+ width: 100%;
+}
+#dataTable th.hover {
+ background-color: #f5fafe;
+}
+#dataTable tbody .active {
+ background-color: lightgrey !important;
+}
+#dataTable tbody tr:nth-child(odd) {
+ background-color: #feffff;
+}
+#dataTable tbody tr:nth-child(even) {
+ background-color: #f8f8f8;
+}
+#dataTable .delete_data_row {
+ margin: 0;
+}
+#dataTable .scrollContent.coding td:hover {
+ background-color: lightgrey;
+ cursor: pointer;
+}
+#dataTable .scrollContent.coding td.enkaIcon:hover {
+ background-color: white;
+}
+#dataTable .scrollContent.coding td.cellGreen:hover {
+ background-color: #E6FFCC;
+ cursor: auto;
+}
+
+.dataCell:hover .tableResize {
+ background-color: #1e88e5;
+}
+
+.no_data_alert {
+ font-weight: 500;
+ font-size: 13px;
+}
+
+#collect_data_popup {
+ display: none;
+ z-index: 9999;
+ position: fixed;
+ top: 45%;
+ left: 50%;
+ transform: translateX(-50%);
+ padding: 20px;
+ font-weight: 500;
+ font-size: 13px;
+ background-color: white;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 04-Aug-2018, 13:45:54
+ Author : podkrizniku
+*/
+#vprasanje_recode_new {
+ position: absolute;
+ top: 40% !important;
+ height: auto;
+ min-height: 100px;
+ width: 350px;
+ padding: 10px;
+ font-size: 13px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ border-radius: 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px;
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+}
+
+.coding-refresh {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ z-index: 1000;
+ left: calc(50% - 150px);
+ top: 20px;
+ text-align: center;
+ width: 300px;
+}
+.coding-refresh .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+.coding-refresh .popup_close:hover {
+ color: #1e88e5;
+}
+.coding-refresh .popup_close a {
+ color: lightgrey;
+}
+.coding-refresh .popup_close a:hover {
+ color: #1e88e5;
+}
+.coding-refresh h2,
+.coding-refresh .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+.coding-refresh p {
+ line-height: 20px;
+}
+.coding-refresh.popup_violet, .coding-refresh#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+.coding-refresh.popup_violet div.buttonwrapper a, .coding-refresh#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.coding-refresh.popup_violet div.buttonwrapper a:hover, .coding-refresh#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+.coding-refresh.popup_violet div.buttonwrapper a.ovalbutton_gray, .coding-refresh#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+.coding-refresh.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, .coding-refresh#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+.coding-refresh.popup_orange, .coding-refresh#surveyTrajanje, .coding-refresh#check_pogoji, .coding-refresh#dropped_alert {
+ border-left: 6px #ffa608 solid !important;
+}
+.coding-refresh.popup_orange div.buttonwrapper a, .coding-refresh#surveyTrajanje div.buttonwrapper a, .coding-refresh#check_pogoji div.buttonwrapper a, .coding-refresh#dropped_alert div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+.coding-refresh.popup_orange div.buttonwrapper a:hover, .coding-refresh#surveyTrajanje div.buttonwrapper a:hover, .coding-refresh#check_pogoji div.buttonwrapper a:hover, .coding-refresh#dropped_alert div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+.coding-refresh.popup_orange div.buttonwrapper a.ovalbutton_gray, .coding-refresh#surveyTrajanje div.buttonwrapper a.ovalbutton_gray, .coding-refresh#check_pogoji div.buttonwrapper a.ovalbutton_gray, .coding-refresh#dropped_alert div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+.coding-refresh.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, .coding-refresh#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover, .coding-refresh#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover, .coding-refresh#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+.coding-refresh.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+.coding-refresh.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+.coding-refresh.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+.coding-refresh.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+.coding-refresh.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#coding {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ position: absolute;
+ min-width: 500px;
+ min-height: 100px;
+ display: none;
+}
+#coding .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#coding .popup_close:hover {
+ color: #1e88e5;
+}
+#coding .popup_close a {
+ color: lightgrey;
+}
+#coding .popup_close a:hover {
+ color: #1e88e5;
+}
+#coding h2,
+#coding .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#coding p {
+ line-height: 20px;
+}
+#coding.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#coding.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#coding.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#coding.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#coding.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#coding.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#coding.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#coding.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#coding.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#coding.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#coding.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#coding.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#coding.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#coding.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#coding.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#coding .new-spr {
+ position: absolute;
+ top: 3px;
+ right: 3px;
+ background-color: white;
+ padding: 5px;
+ text-align: right;
+}
+
+ul.recode_number_sort {
+ padding: 0px;
+ margin: 0px;
+}
+ul.recode_number_sort li {
+ list-style: none;
+ border: 1px solid #c8e3f8;
+ margin: 7px 10px 7px 0px;
+ padding: 3px 0px;
+ width: 100%;
+}
+
+.recoding_variable_div {
+ padding: 8px 3px;
+}
+
+.ui-recode-placeholder {
+ background: #fff0d4;
+ border: 1px dashed #ffa608;
+}
+
+.floatRecodeSpremenljivka {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ position: fixed;
+ min-height: 50px;
+ height: auto;
+ top: 40vh;
+ left: calc(50% + 360px);
+ min-width: 200px;
+ width: auto;
+ z-index: 1000;
+}
+.floatRecodeSpremenljivka .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+.floatRecodeSpremenljivka .popup_close:hover {
+ color: #1e88e5;
+}
+.floatRecodeSpremenljivka .popup_close a {
+ color: lightgrey;
+}
+.floatRecodeSpremenljivka .popup_close a:hover {
+ color: #1e88e5;
+}
+.floatRecodeSpremenljivka h2,
+.floatRecodeSpremenljivka .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+.floatRecodeSpremenljivka p {
+ line-height: 20px;
+}
+.floatRecodeSpremenljivka.popup_violet, .floatRecodeSpremenljivka#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a, .floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a:hover, .floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray, .floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+.floatRecodeSpremenljivka.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, .floatRecodeSpremenljivka#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+.floatRecodeSpremenljivka.popup_orange, .floatRecodeSpremenljivka#surveyTrajanje, .floatRecodeSpremenljivka#check_pogoji, .floatRecodeSpremenljivka#dropped_alert {
+ border-left: 6px #ffa608 solid !important;
+}
+.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a, .floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a, .floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a, .floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a:hover, .floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a:hover, .floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a:hover, .floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray, .floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a.ovalbutton_gray, .floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a.ovalbutton_gray, .floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+.floatRecodeSpremenljivka.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, .floatRecodeSpremenljivka#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover, .floatRecodeSpremenljivka#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover, .floatRecodeSpremenljivka#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+.floatRecodeSpremenljivka.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+.floatRecodeSpremenljivka.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+.floatRecodeSpremenljivka.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+.floatRecodeSpremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+.floatRecodeSpremenljivka.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+table#recode_table {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ border: 1px solid #c8e3f8;
+}
+table#recode_table th {
+ padding: 3px;
+ font-weight: 600;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+table#recode_table th:nth-child(1) {
+ border-right: 1px solid #efefef;
+}
+table#recode_table td {
+ padding: 5px 3px;
+}
+table#recode_table td:nth-child(4) {
+ border-right: 1px solid #efefef;
+}
+table#recode_table tr.even {
+ background: #f8f8f8;
+}
+table#recode_table tr.odd {
+ background: white;
+}
+table#recode_table tr.border_top {
+ border-top: 1px solid #c8e3f8;
+}
+table#recode_table tr.border_top_lite {
+ border-top: 1px solid #efefef;
+}
+
+#recode_number_sort select {
+ max-width: 200px;
+}
+
+#question_recode {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ max-height: 450px;
+ overflow-y: scroll;
+ min-height: 200px;
+ height: auto;
+ width: 650px;
+}
+#question_recode .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#question_recode .popup_close:hover {
+ color: #1e88e5;
+}
+#question_recode .popup_close a {
+ color: lightgrey;
+}
+#question_recode .popup_close a:hover {
+ color: #1e88e5;
+}
+#question_recode h2,
+#question_recode .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#question_recode p {
+ line-height: 20px;
+}
+#question_recode.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#question_recode.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#question_recode.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#question_recode.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#question_recode.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#question_recode.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#question_recode.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#question_recode.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#question_recode.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#question_recode.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#question_recode.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#question_recode.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#question_recode.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#question_recode.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#question_recode.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+#question_recode label {
+ display: inline-block;
+ vertical-align: middle;
+}
+#question_recode label input {
+ display: inline-block;
+ vertical-align: middle;
+ vertical-align: top;
+}
+#question_recode input {
+ display: inline-block;
+ vertical-align: middle;
+ vertical-align: top;
+}
+#question_recode .recodeButtonHolder .buttonwrapper a.ovalbutton_gray {
+ padding: 5px 12px 6px;
+}
+#question_recode .recodeButtonHolder .buttonwrapper a.ovalbutton_gray:hover span {
+ color: white !important;
+}
+#question_recode table.question_recode_table tr td select {
+ max-width: 250px;
+}
+
+#question_recode_run_note {
+ display: none;
+}
+
+#recodeToNewSpr {
+ padding: 5px 15px 15px 15px;
+ margin-bottom: 40px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 11:06:58
+ Author : podkrizniku
+*/
+#conditionProfileNote {
+ display: inline-block;
+ width: auto;
+ padding: 3px 10px;
+ margin-bottom: 4px;
+ margin-top: 4px;
+ line-height: 2em;
+ vertical-align: middle;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#conditionProfileNote span.conditions_display {
+ line-height: inherit;
+}
+#conditionProfileNote div.if_content {
+ display: inline-block;
+}
+
+#div_condition_editing_conditions {
+ min-height: 28px;
+ line-height: 28px;
+}
+#div_condition_editing_conditions .error_display {
+ margin-top: 5px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 14-Aug-2018, 11:37:08
+ Author : podkrizniku
+*/
+dl.dl_spss {
+ margin-bottom: 30px;
+ font-size: 12px;
+}
+dl.dl_spss dt {
+ font-weight: 600;
+ min-width: 80px;
+ float: left;
+}
+dl.dl_spss dd {
+ margin: 0px 0 2px 85px;
+ padding: 0px;
+}
+
+.tableResize {
+ position: absolute;
+ right: 0;
+ top: 0;
+ height: 100%;
+ width: 5px;
+ cursor: e-resize;
+}
+
+.pbLabel {
+ height: 20px;
+ width: 160px;
+ vertical-align: middle;
+ padding: auto 0;
+}
+
+#pbAllPercent {
+ width: 500px;
+ height: 20px;
+ margin: 0 0 5px 0;
+ padding: 3px;
+ display: block;
+ background-color: white;
+ background: -webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));
+ background: -moz-linear-gradient(top, #f6fbff, #fff);
+ border: 1px solid #c8e3f8;
+}
+#pbAllPercent div {
+ background-color: #84D700;
+ height: 100%;
+ width: 0;
+ border: none;
+ -moz-box-shadow: 2px 0 5px #aaa;
+ -webkit-box-shadow: 2px 0 5px #aaa;
+ box-shadow: 2px 0 5px #aaa;
+}
+
+#pbCurrPercent {
+ width: 500px;
+ height: 20px;
+ margin: 0 0 5px 0;
+ padding: 3px;
+ display: block;
+ background-color: white;
+ background: -webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));
+ background: -moz-linear-gradient(top, #f6fbff, #fff);
+ border: 1px solid #c8e3f8;
+}
+#pbCurrPercent div {
+ background-color: #c8e3f8;
+ height: 100%;
+ width: 0;
+ border: none;
+ -moz-box-shadow: 2px 0 5px #aaa;
+ -webkit-box-shadow: 2px 0 5px #aaa;
+ box-shadow: 2px 0 5px #aaa;
+}
+
+#pbRowPercent {
+ width: 500px;
+ height: 20px;
+ margin: 0 0 5px 0;
+ padding: 3px;
+ display: block;
+ background-color: white;
+ background: -webkit-gradient(linear, 0 0, 0 100%, from(#f6fbff), to(#fff));
+ background: -moz-linear-gradient(top, #f6fbff, #fff);
+ border: 1px solid #c8e3f8;
+}
+#pbRowPercent div {
+ background-color: #C7ED8B;
+ height: 100%;
+ width: 0;
+ border: none;
+ -moz-box-shadow: 2px 0 5px #aaa;
+ -webkit-box-shadow: 2px 0 5px #aaa;
+ box-shadow: 2px 0 5px #aaa;
+}
+
+#actionLabel {
+ position: absolute;
+ z-index: 1px;
+ padding: 3px;
+}
+
+#pbCurrPercentLabel {
+ position: absolute;
+ z-index: 1px;
+ padding: 3px;
+}
+
+#pbRowPercentLabel {
+ position: absolute;
+ z-index: 1px;
+ padding: 3px;
+}
+
+#hpbRowPercent {
+ visibility: hidden;
+}
+
+#dataTable.editData td {
+ cursor: pointer;
+}
+#dataTable.editData td.hover {
+ background-color: #f5fafe;
+}
+
+td.enkaIcon {
+ cursor: pointer;
+}
+
+.data_uid {
+ visibility: hidden;
+ display: none;
+}
+
+tr:nth-child(1) .data_edit {
+ width: 18px;
+}
+
+#data_search_filter {
+ float: left;
+ width: auto;
+ margin: 0 0 10px 0;
+ padding: 8px;
+ border: 1px solid #c8e3f8;
+}
+
+.dataSettingsBasic {
+ float: left;
+ width: auto;
+ margin: 0 0 10px 20px;
+ padding: 8px;
+}
+.dataSettingsBasic #toggleDataCheckboxes {
+ padding: 0px 20px !important;
+ color: #1e88e5;
+}
+.dataSettingsBasic #toggleDataCheckboxes .faicon {
+ vertical-align: -1px;
+}
+
+table.scrollTable img.pdf {
+ cursor: pointer;
+}
+table.scrollTable img.rtf {
+ cursor: pointer;
+}
+table.scrollTable img.edit {
+ cursor: pointer;
+}
+table.scrollTable img.delete {
+ cursor: pointer;
+}
+
+table.no_wrap_td td {
+ white-space: nowrap;
+}
+
+#vnosi_file_status {
+ width: auto;
+ display: inline-block;
+ clear: both;
+}
+
+#bottom_data_legend {
+ width: auto;
+ margin: 0px 10px 0 10px;
+ padding: 8px 15px 8px 12px;
+ background-color: #efefef;
+ border: 1px solid lightgrey;
+}
+#bottom_data_legend ul {
+ margin-top: 6px;
+ padding-left: 30px !important;
+}
+#bottom_data_legend ul li {
+ height: 20px;
+}
+
+#bottom_data_legend.bg_blue {
+ background-color: #D7F4FA;
+ border-color: lightgrey;
+}
+
+#bottom_data_legend.test {
+ background-color: #E6FFCC;
+ border-color: lightgrey;
+}
+
+#incremental_progress {
+ margin-top: 60px;
+ position: absolute;
+}
+
+#incremental_details {
+ width: auto;
+ margin-top: 10px;
+ display: inline-block;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+ padding: 5px;
+}
+#incremental_details span {
+ margin-left: 10px;
+ display: inline-block;
+ float: right;
+}
+
+#data_sn_buttons {
+ float: left;
+ padding: 1px 10px 5px 5px;
+}
+#data_sn_buttons span {
+ padding-right: 30px;
+ font-weight: 600;
+}
+
+table.variableView {
+ width: auto;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 30px 0 0 0;
+ border-collapse: collapse;
+ border-radius: 5px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+ border: 1px solid #c8e3f8;
+}
+table.variableView thead tr {
+ background-color: #f5fafe;
+}
+table.variableView tbody tr:nth-child(even) {
+ background-color: #f8f8f8;
+}
+table.variableView tbody tr:nth-child(odd) {
+ background-color: white;
+}
+table.variableView th {
+ padding: 3px 5px;
+ border-bottom: 1px #c8e3f8 dotted;
+}
+table.variableView td {
+ padding: 3px 5px;
+ border-bottom: 1px #c8e3f8 dotted;
+}
+
+#srv_incremental_lock {
+ margin-top: 60px;
+ position: absolute;
+ font-size: 14px;
+ color: red;
+ display: inline-block;
+ padding: 8px;
+ width: auto;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+.data_preview_content {
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+ box-shadow: 0 0 5px grey;
+ padding: 5px;
+ position: absolute;
+ white-space: normal;
+ width: 350px;
+}
+
+/*test data warning*/
+.display_data_test_data_note {
+ padding: 10px 15px 12px 15px;
+ margin: 10px 0 10px 0;
+ font-weight: 500;
+ font-size: 13px;
+ background-color: #fff0d4;
+ border: 1px solid #ffa608;
+}
+
+/*all or only valid units radio button*/
+#dataOnlyValid {
+ position: relative;
+ display: inline-block;
+ width: auto;
+ margin: 4px 0 0;
+ padding: 3px 0 4px 0;
+}
+#dataOnlyValid .middle {
+ margin-left: 20px;
+}
+#dataOnlyValid .middle input {
+ margin: 0px 4px 1px 2px;
+}
+
+/*checkboxes in dropdown*/
+#dataSetingsLinks {
+ float: left;
+ display: inline-block;
+ min-width: 100px;
+ padding: 0px;
+ margin: 0 0 8px 0;
+}
+#dataSetingsLinks ul {
+ margin: 0px;
+ padding: 0px;
+ font-size: 100%;
+ line-height: 90%;
+ vertical-align: middle;
+}
+#dataSetingsLinks ul li {
+ list-style: none;
+ display: inline;
+ list-style-type: none;
+ padding-left: 15px;
+}
+
+#dataSetingsLinks.data ul {
+ /*li.space {
+ width: 7px;
+ padding: 0px 5px;
+ line-height: 18px;
+ background: url('../../../admin/survey/img_0/navigation/nav-control-bg.png') no-repeat top center;
+ }*/
+}
+#dataSetingsLinks.data ul li {
+ vertical-align: middle;
+}
+#dataSetingsLinks.data ul li label {
+ vertical-align: middle;
+}
+#dataSetingsLinks.data ul li input {
+ vertical-align: middle;
+}
+#dataSetingsLinks.data ul li a.help {
+ vertical-align: middle;
+}
+
+#dataIconSetingsLinks {
+ float: left;
+ display: inline-block;
+ width: auto;
+ padding: 0px 0px;
+ margin: 3px 0 5px 15px;
+}
+#dataIconSetingsLinks input {
+ margin-left: 15px;
+}
+
+#div_data_file {
+ position: absolute;
+ right: 100px;
+ top: 120px;
+}
+
+#dataTableScroller {
+ z-index: 50;
+ opacity: 0;
+ position: fixed;
+ left: 50%;
+ width: auto;
+ margin: 10px 0;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 09:01:46
+ Author : podkrizniku
+*/
+.hash_comment {
+ min-width: 200px;
+ height: 100%;
+ min-height: 1em;
+ outline: 1px dashed #aaa;
+ display: inline-block;
+}
+
+#div_survey_links {
+ width: auto;
+}
+
+.tbl_survey_links {
+ margin-top: 15px;
+ border-spacing: 0;
+ border-collapse: collapse;
+}
+.tbl_survey_links td {
+ padding: 2px 5px;
+ margin: 3px 0px;
+ border: 1px #c8e3f8 solid;
+}
+.tbl_survey_links th {
+ padding: 2px 5px;
+ margin: 3px 0px;
+ border: 1px #c8e3f8 solid;
+ background-color: #f5fafe;
+}
+.tbl_survey_links td.editable.hash_comment {
+ cursor: pointer;
+ display: table-cell !important;
+ outline: 0 !important;
+ border: 1px #c8e3f8 solid;
+}
+.tbl_survey_links td.editable.hash_comment:hover {
+ border: 1px #c8e3f8 solid;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Aug-2018, 16:31:17
+ Author : podkrizniku
+*/
+#edit_survey_data {
+ width: 70%;
+ float: left;
+}
+#edit_survey_data div.inner {
+ padding: 20px 20px 0px 20px;
+}
+#edit_survey_data .quick_edit_title {
+ line-height: 12px;
+ font-size: 16px;
+ font-weight: bold;
+ text-align: center;
+}
+#edit_survey_data .quick_edit_title span {
+ margin: 0 20px 5px 20px;
+}
+#edit_survey_data .comment {
+ clear: both;
+ margin-top: 10px;
+}
+#edit_survey_data table.ranking_table {
+ width: 100%;
+ table-layout: fixed;
+ border-spacing: 0;
+}
+#edit_survey_data table.ranking_table td {
+ width: 45%;
+ padding: 5px;
+ vertical-align: top;
+}
+#edit_survey_data table.ranking_table td.middle {
+ width: 10%;
+ vertical-align: top;
+ text-align: center;
+}
+#edit_survey_data table.ranking_table ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+#edit_survey_data td.middle img {
+ display: block;
+ margin: 50% 0 0 20px;
+}
+#edit_survey_data .ranking {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ cursor: pointer;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+#edit_survey_data .ranking_long {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+ cursor: pointer;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+#edit_survey_data .handle {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#edit_survey_data .handle_long {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#edit_survey_data .ime {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#edit_survey_data .izbran {
+ width: 230px;
+ padding: 5px;
+ margin: 0 auto 10px auto;
+ border: 1px solid black;
+ height: 15px;
+ text-align: center;
+ overflow: hidden;
+}
+#edit_survey_data .frame_ranking {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px dashed black;
+ height: 15px;
+ text-indent: -25px;
+ font-weight: bold;
+}
+#edit_survey_data .dropholder {
+ position: relative;
+ padding-top: 11px;
+}
+#edit_survey_data .dropholder .dropzone {
+ position: absolute;
+ left: 0;
+ right: 0;
+ top: 0;
+ bottom: 0;
+}
+#edit_survey_data .dropzone {
+ border-top: 1px solid black;
+ min-height: 100px;
+ padding-top: 10px;
+}
+#edit_survey_data .moving {
+ cursor: pointer;
+ margin-left: auto;
+ margin-right: auto;
+ width: 230px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+#edit_survey_data .frame_moving {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ border: 1px dashed black;
+ height: 15px;
+ text-indent: -25px;
+ font-weight: bold;
+}
+#edit_survey_data ul.sorting {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+#edit_survey_data .sortholder {
+ margin: 0 auto;
+ width: 250px;
+ padding: 5px;
+}
+#edit_survey_data .sortzone {
+ position: absolute;
+ margin: 0 auto 0 auto;
+ width: 250px;
+}
+#edit_survey_data .spremenljivka.tip_17 input {
+ width: 50px;
+}
+#edit_survey_data .simple {
+ overflow: visible;
+}
+#edit_survey_data .simple .naslov {
+ width: 45%;
+ float: left;
+}
+#edit_survey_data .naslov p {
+ margin-top: 2px;
+}
+#edit_survey_data .variable_holder {
+ height: auto !important;
+}
+#edit_survey_data .spremenljivka {
+ width: 98%;
+ margin: 20px 0;
+ padding: 10px 20px 20px 20px;
+ color: black;
+ border: 1px solid #c8e3f8;
+}
+#edit_survey_data table.text_vrednost {
+ table-layout: fixed;
+ text-align: left;
+ width: 100%;
+ border-spacing: 0;
+}
+#edit_survey_data .width_5 {
+ width: 5%;
+}
+#edit_survey_data .width_10 {
+ width: 10%;
+}
+#edit_survey_data .width_15 {
+ width: 15%;
+}
+#edit_survey_data .width_20 {
+ width: 20%;
+}
+#edit_survey_data .width_25 {
+ width: 25%;
+}
+#edit_survey_data .width_30 {
+ width: 30%;
+}
+#edit_survey_data .width_33 {
+ width: 33.3%;
+}
+#edit_survey_data .width_35 {
+ width: 35%;
+}
+#edit_survey_data .width_40 {
+ width: 40%;
+}
+#edit_survey_data .width_45 {
+ width: 45%;
+}
+#edit_survey_data .width_50 {
+ width: 50%;
+}
+#edit_survey_data .width_55 {
+ width: 55%;
+}
+#edit_survey_data .width_60 {
+ width: 60%;
+}
+#edit_survey_data .width_65 {
+ width: 65%;
+}
+#edit_survey_data .width_70 {
+ width: 70%;
+}
+#edit_survey_data .width_75 {
+ width: 75%;
+}
+#edit_survey_data .width_80 {
+ width: 80%;
+}
+#edit_survey_data .width_85 {
+ width: 85%;
+}
+#edit_survey_data .width_90 {
+ width: 90%;
+}
+#edit_survey_data .width_95 {
+ width: 95%;
+}
+#edit_survey_data .width_100 {
+ width: 100%;
+}
+#edit_survey_data .frame_dropping_titles {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 0px auto;
+ height: 15px;
+ text-align: center;
+ background-color: white;
+ border-top: 1px solid #c8e3f8;
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #c8e3f8;
+}
+#edit_survey_data .frame_dropping {
+ width: 230px;
+ padding: 5px;
+ margin: 0px auto 10px auto;
+ height: 15px;
+ text-indent: -25px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+#quick_edit_title #left_options {
+ position: absolute;
+ float: left;
+ margin: 7px 0 0 20px;
+}
+#quick_edit_title #left_options span {
+ vertical-align: middle !important;
+}
+#quick_edit_title span {
+ cursor: pointer;
+ margin: 0 5px;
+}
+
+.quick_edit_container #quick_edit_filter {
+ margin: 20px 0 10px 0;
+ width: 70%;
+ padding-left: 20px;
+}
+.quick_edit_container .loop_warning {
+ width: 99%;
+ border: 1px solid red;
+ padding: 5px;
+ margin-bottom: -10px;
+}
+.quick_edit_container .spremenljivka .variabla {
+ padding: 3px 0;
+}
+
+#container .quick_edit_loop {
+ opacity: 0.5;
+}
+
+#quick_edit_meta {
+ max-width: 290px;
+ width: 23%;
+ float: left;
+ overflow-x: auto;
+ margin: 60px 0 0 20px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#quick_edit_meta .title {
+ padding: 8px 15px;
+ text-align: left;
+ font-weight: 600;
+ font-size: 16px;
+ color: #1e88e5;
+}
+#quick_edit_meta table {
+ width: 100%;
+ padding: 15px;
+ background-color: inherit;
+}
+#quick_edit_meta table tr td.left {
+ width: 40%;
+ padding: 10px 0px 0px 0;
+ text-align: left;
+ font-weight: 600;
+}
+#quick_edit_meta table tr td.right {
+ width: 55%;
+ padding: 10px 0px 0px 0px;
+ text-align: left;
+ word-wrap: break-word;
+ overflow: hidden;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 06-Aug-2018, 11:52:14
+ Author : podkrizniku
+*/
+#branching.komentarji {
+ left: 30px;
+}
+#branching.komentarji li.spr {
+ margin-left: 0;
+}
+
+#branching .komentarji_anketa {
+ width: 44%;
+ padding: 2%;
+ margin: 30px 0;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+#branching .komentarji_anketa span.komentarji_title {
+ padding: 10px;
+ font-weight: 600;
+ font-size: 13px;
+}
+#branching .komentarji_resp {
+ float: right;
+}
+#branching .komentarji_ured {
+ float: left;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 13:38:02
+ Author : podkrizniku
+*/
+/*right side of survey settings*/
+#globalSetingsList {
+ float: left;
+ display: inline-block;
+ width: 100% !important;
+ padding-top: 0px !important;
+ padding-left: 0px !important;
+ margin-top: 0px !important;
+ margin-left: 0 !important;
+}
+#globalSetingsList h4 {
+ width: 95% !important;
+ max-width: 1050px;
+ padding: 5px 2% !important;
+ margin: 0px !important;
+}
+#globalSetingsList fieldset {
+ width: 95% !important;
+ max-width: 1050px;
+ padding: 5px 2% 10px 2% !important;
+ margin: 0px !important;
+}
+
+#globalSetingsList.full_width {
+ max-width: 99% !important;
+ width: 97% !important;
+}
+#globalSetingsList.full_width h4 {
+ max-width: 99% !important;
+ width: 97% !important;
+}
+#globalSetingsList.full_width fieldset {
+ max-width: 99% !important;
+ width: 97% !important;
+}
+#globalSetingsList.full_width fieldset.prevajanje {
+ float: left;
+ min-height: 200px !important;
+ width: 44% !important;
+ margin-right: 1% !important;
+}
+#globalSetingsList.full_width fieldset.prevajanje .prevajanje_settings a {
+ margin: 0 5px;
+}
+#globalSetingsList.full_width fieldset.prevajanje .prevajanje_settings .prevajanje_settings_sub {
+ display: block;
+ margin: 10px 0 20px 153px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:29:41
+ Author : podkrizniku
+*/
+/*popup for survey activation and GDPR*/
+#anketa_activate_note {
+ height: auto;
+ min-height: 100px;
+ width: 550px;
+ font-size: 13px;
+}
+#anketa_activate_note #div_lock_survey {
+ padding-bottom: 30px;
+}
+
+#anketa_advanced_options {
+ border: 1px solid grey;
+ margin-bottom: 20px;
+ margin-left: 1%;
+ margin-right: 1%;
+ padding: 10px 10px 10px 10px;
+ min-height: 250px;
+ background-color: white;
+}
+
+/*survey time span popup*/
+#surveyTrajanje {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ width: 500px;
+}
+#surveyTrajanje .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#surveyTrajanje .popup_close:hover {
+ color: #1e88e5;
+}
+#surveyTrajanje .popup_close a {
+ color: lightgrey;
+}
+#surveyTrajanje .popup_close a:hover {
+ color: #1e88e5;
+}
+#surveyTrajanje h2,
+#surveyTrajanje .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#surveyTrajanje p {
+ line-height: 20px;
+}
+#surveyTrajanje.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#surveyTrajanje.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#surveyTrajanje.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#surveyTrajanje.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#surveyTrajanje.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#surveyTrajanje.popup_orange, #surveyTrajanje {
+ border-left: 6px #ffa608 solid !important;
+}
+#surveyTrajanje.popup_orange div.buttonwrapper a, #surveyTrajanje div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#surveyTrajanje.popup_orange div.buttonwrapper a:hover, #surveyTrajanje div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#surveyTrajanje.popup_orange div.buttonwrapper a.ovalbutton_gray, #surveyTrajanje div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#surveyTrajanje.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, #surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#surveyTrajanje.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#surveyTrajanje.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#surveyTrajanje.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#surveyTrajanje.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#surveyTrajanje.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#surveyTrajanje_img {
+ float: left;
+ width: 20px;
+}
+
+#surveyTrajanje_msg {
+ float: left;
+}
+
+#surveyTrajanje_close {
+ position: absolute;
+ right: 10px;
+ top: 10px;
+ width: 20px;
+}
+
+.trajanjeLinkOff {
+ float: right;
+ color: grey;
+ padding-top: 15px;
+ text-indent: 20px;
+ cursor: pointer;
+}
+.trajanjeLinkOff .sprites.trajanje_star {
+ background-position: -157px -98px;
+}
+
+.trajanjeLinkOn {
+ float: right;
+ color: #990000;
+ padding-top: 15px;
+ text-indent: 20px;
+ cursor: pointer;
+}
+.trajanjeLinkOn .sprites.trajanje_star {
+ background-position: -140px -98px;
+}
+
+#divAvtoClose {
+ position: absolute;
+ bottom: 20px;
+ left: 20px;
+ line-height: 20px;
+ color: grey;
+}
+#divAvtoClose span {
+ font-weight: bold;
+}
+
+.nastavitveSpan {
+ width: 90px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ font-weight: 500 !important;
+}
+
+.nastavitveSpan1 {
+ width: 230px;
+ padding-right: 10px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ font-weight: 500 !important;
+}
+
+.wide .nastavitveSpan1 {
+ width: 280px;
+ max-width: 330px;
+}
+
+.nastavitveSpan2 {
+ width: 210px;
+ padding-right: 10px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ font-weight: 500 !important;
+}
+
+.sett_left_160 {
+ width: 160px;
+ display: table-cell;
+ float: left;
+ text-align: left;
+ font-weight: 600;
+}
+
+.nastavitveSpan3 {
+ width: 270px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ font-weight: 500 !important;
+}
+
+.nastavitveSpan6 {
+ width: 330px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ padding-right: 5px;
+ font-weight: 500 !important;
+}
+
+fieldset.izvozi {
+ margin: 5px;
+ padding: 5px 5px 5px 5px;
+ width: auto;
+ border: 1px solid silver;
+}
+fieldset.izvozi legend {
+ color: grey;
+ font-weight: bold;
+}
+
+#surveyStatistic {
+ background-color: white;
+}
+#surveyStatistic #timeProfileDafaultNote {
+ margin-top: 0px;
+ margin-bottom: 10px;
+}
+
+#quicksettings_column {
+ display: inline-block;
+ float: left;
+ width: 33%;
+}
+
+div.dostop_for_uid {
+ width: 300px;
+ height: 20px;
+ margin-top: 5px;
+}
+div.dostop_for_uid label {
+ margin: 0 !important;
+}
+div.dostop_for_uid label input {
+ margin: -2px 5px 0 0;
+ vertical-align: middle;
+}
+
+#survey_list_users {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ padding: 0px;
+ margin: 0px;
+ height: 100%;
+ width: 100%;
+}
+#survey_list_users th {
+ padding: 3px;
+ background-color: #efefef;
+}
+#survey_list_users td {
+ padding: 3px;
+}
+#survey_list_users tbody tr:nth-child(odd) {
+ background-color: #f8f8f8;
+}
+#survey_list_users tr:nth-child(even) {
+ background-color: #feffff;
+}
+
+.duration_span {
+ display: inline-block;
+ margin-left: 10px;
+ margin-right: 5px;
+}
+
+/*standard words*/
+.standardna-beseda {
+ clear: both;
+ float: left;
+ padding: 15px 10px 15px 5px;
+ border: 1px white solid;
+}
+.standardna-beseda.sb-editing {
+ background-color: #f5fafe;
+}
+.standardna-beseda .standardna-beseda-urejanje {
+ display: block;
+ float: left;
+ width: 300px;
+ height: auto;
+ padding: 2px 15px 2px 3px;
+ margin-right: 5px;
+ border: 1px solid grey;
+ background-color: white;
+}
+.standardna-beseda .standardna-beseda-urejanje img {
+ max-width: 100%;
+}
+.standardna-beseda .faicon.edit2 {
+ color: #1e88e5;
+ cursor: pointer;
+}
+.standardna-beseda .faicon.edit2::before {
+ font-size: 14px;
+ content: "";
+}
+.standardna-beseda .faicon.edit2:hover {
+ color: #ffa608;
+}
+
+.fixed-position {
+ position: fixed;
+ z-index: 101;
+ top: 50%;
+ left: 50%;
+}
+.fixed-position #vrednost_edit {
+ display: block;
+ margin-top: -200px;
+ margin-left: -300px;
+}
+.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray {
+ color: #1e88e5;
+}
+.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_gray:hover span {
+ color: white;
+}
+.fixed-position #vrednost_edit span.buttonwrapper a.ovalbutton_orange span {
+ color: white;
+}
+
+#unconfirmed_mail_user_list > tbody > tr > td > span.confirm-user-mail-actions {
+ display: none;
+}
+#unconfirmed_mail_user_list > tbody > tr:hover > td > span.confirm-user-mail-actions {
+ display: block !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 07-Aug-2018, 12:30:35
+ Author : podkrizniku
+*/
+.jezik_right {
+ float: left;
+ width: 47%;
+ margin-bottom: 10px;
+ margin-left: 1%;
+ padding-left: 5px;
+ border: 0;
+}
+.jezik_right span.display_editor {
+ visibility: visible;
+}
+.jezik_right div.spremenljivka_content span.inline_edit {
+ visibility: visible;
+}
+.jezik_right .spremenljivka {
+ padding-top: 0px;
+ padding-bottom: 8px;
+}
+
+.textleft {
+ text-align: left !important;
+}
+
+.textleft.gray {
+ font-weight: normal !important;
+}
+
+h2.jezik_page {
+ color: #aaa;
+ font-size: 12px;
+ font-weight: normal;
+ margin: 0 10px;
+}
+
+.jezik_left {
+ float: left;
+ clear: both;
+ opacity: 0.6;
+ width: 47%;
+ margin-bottom: 10px;
+ padding-left: 5px;
+ border: 0;
+}
+.jezik_left .spremenljivka {
+ padding-top: 0px;
+ padding-bottom: 8px;
+}
+
+.jezik_left.noborder {
+ border: 0;
+}
+
+.jezik_right.noborder {
+ border: 0;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 14-Aug-2018, 14:49:47
+ Author : podkrizniku
+*/
+.survey_archive_popup {
+ border: 1px solid grey;
+ margin: auto;
+ margin-bottom: 20px;
+ padding: 10px 1% 10px 1%;
+ min-height: 150px;
+ width: auto;
+ background-color: white;
+}
+
+#survey_archive_note {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ margin: auto;
+ height: auto;
+ width: auto;
+}
+#survey_archive_note .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#survey_archive_note .popup_close:hover {
+ color: #1e88e5;
+}
+#survey_archive_note .popup_close a {
+ color: lightgrey;
+}
+#survey_archive_note .popup_close a:hover {
+ color: #1e88e5;
+}
+#survey_archive_note h2,
+#survey_archive_note .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#survey_archive_note p {
+ line-height: 20px;
+}
+#survey_archive_note.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#survey_archive_note.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#survey_archive_note.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#survey_archive_note.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#survey_archive_note.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#survey_archive_note.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#survey_archive_note.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#survey_archive_note.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#survey_archive_note.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#survey_archive_note.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#survey_archive_note.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#survey_archive_note.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#survey_archive_note.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#survey_archive_note.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#survey_archive_note.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#div_archive_navigation {
+ float: left;
+ width: auto;
+}
+
+#div_archive_content fieldset {
+ width: 600px !important;
+}
+
+#div_archive_content.tracking fieldset {
+ width: 95% !important;
+ max-width: 970px !important;
+}
+#div_archive_content.tracking table {
+ width: 95%;
+ margin: 20px;
+ outline: 1px solid #c8e3f8;
+ border-spacing: 0px;
+ border-collapse: collapse;
+}
+#div_archive_content.tracking table tr th {
+ padding: 2px 5px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#div_archive_content.tracking table tr td {
+ padding: 2px 5px;
+ border: 1px solid #c8e3f8;
+}
+#div_archive_content.tracking table tr td.center {
+ text-align: center;
+}
+#div_archive_content.tracking table tr th.center {
+ text-align: center;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 16-Aug-2018, 11:17:53
+ Author : podkrizniku
+*/
+#spn_nice_url {
+ margin-top: 3px;
+ padding-top: 2px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 08-Aug-2018, 11:30:11
+ Author : podkrizniku
+*/
+#div_analiza_data {
+ display: block;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 08-Aug-2018, 12:41:39
+ Author : podkrizniku
+*/
+#single_export {
+ position: relative;
+ width: 80px;
+ height: 70px;
+ float: right;
+ margin: 20px 0;
+}
+
+.img_analysis_f_p a {
+ color: grey;
+ cursor: pointer;
+ font-weight: normal;
+}
+.img_analysis_f_p a:HOVER {
+ color: grey;
+}
+
+.img_analysis_f a {
+ color: grey;
+ cursor: pointer;
+ font-weight: normal;
+}
+.img_analysis_f a:HOVER {
+ color: grey;
+}
+
+.img_analysis_p a {
+ color: grey;
+ cursor: pointer;
+ font-weight: normal;
+}
+.img_analysis_p a:HOVER {
+ color: grey;
+}
+
+.span_navedbe {
+ float: right;
+}
+.span_navedbe a {
+ color: grey;
+ cursor: pointer;
+ font-weight: normal;
+}
+.span_navedbe a:HOVER {
+ color: grey;
+}
+
+.div_other_text {
+ margin-top: 5px;
+ margin-left: 0.5cm;
+}
+
+.div_navedbe {
+ margin-top: 5px;
+ margin-left: 0.5cm;
+ margin-left: 0px;
+}
+
+#div_analiza_single_var_close {
+ width: 100%;
+ height: 20px;
+ color: white;
+ background-color: #1e88e5;
+ border-bottom: 1px solid #990000;
+ font-weight: bold;
+}
+
+#div_analiza_single_var_close_button {
+ float: right;
+ width: 20px;
+ text-align: center;
+ border-left: 1px solid #990000;
+ height: 17px;
+ padding-top: 3px;
+ background-color: #1e88e5;
+}
+#div_analiza_single_var_close_button:hover {
+ background-color: #166dba;
+ cursor: pointer;
+}
+#div_analiza_single_var_close_button a {
+ text-decoration: none;
+ width: 100%;
+ height: 100%;
+}
+
+#div_analiza_single_var {
+ width: 100%;
+ height: auto;
+}
+
+#globalSetingsHolder {
+ width: 100%;
+ display: inline-block;
+ margin-bottom: 10px;
+}
+
+/*dropdown select analysis*/
+#analizaSubNav {
+ position: relative;
+ display: inline-block;
+ float: left;
+ width: 270px;
+ margin: 3px 20px 0 0;
+}
+
+.srv_statistic_menu {
+ float: left;
+ margin: 4px 0 0 0;
+}
+
+#globalSetingsLinks.analiza {
+ float: right;
+ position: absolute;
+ z-index: 78;
+ width: 190px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#globalSetingsLinks.analiza:hover {
+ border: 1px solid #409ee7;
+}
+#globalSetingsLinks.analiza:hover ul li.highlightLineTab {
+ background: none;
+}
+#globalSetingsLinks.analiza:hover > ul li {
+ display: block;
+ transition: 0.2s;
+}
+#globalSetingsLinks.analiza ul {
+ z-index: 78;
+ padding: 0 5px;
+}
+#globalSetingsLinks.analiza ul li {
+ padding: 2px 1px;
+ background-color: #f5fafe;
+ border: 0;
+}
+#globalSetingsLinks.analiza ul li a {
+ display: block;
+ margin-right: 12px;
+ color: #1e88e5 !important;
+ background-color: #f5fafe;
+}
+#globalSetingsLinks.analiza ul li:hover > a {
+ color: #1e88e5 !important;
+}
+#globalSetingsLinks.analiza ul li.highlightLineTab {
+ background-image: url(../../../admin/survey/icons/icons/bullet_arrow_down.png);
+ background-repeat: no-repeat;
+ background-position: right 1px;
+}
+#globalSetingsLinks.analiza ul li.highlightLineTab a span {
+ font-weight: 500;
+ color: #1e88e5 !important;
+ background-color: #f5fafe;
+}
+#globalSetingsLinks.analiza ul li.previewCheck {
+ margin-top: 4px;
+ padding: 5px 0 7px 0;
+ color: #1e88e5;
+ border-top: 1px #c8e3f8 solid;
+}
+#globalSetingsLinks.analiza ul li.previewCheck label:hover {
+ color: #ffa608;
+}
+
+.analysis_bottom_settings {
+ width: auto;
+ height: 50px;
+ margin: 10px auto;
+ text-align: center;
+ position: relative;
+ margin-top: 40px;
+}
+.analysis_bottom_settings a {
+ display: inline-block;
+ margin-right: 20px;
+ font-size: 13px;
+ color: #606060;
+}
+.analysis_bottom_settings a:hover {
+ color: #ffa608;
+}
+
+.chart_bottom_settings {
+ width: auto;
+ height: 50px;
+ margin: 10px auto;
+ text-align: center;
+ position: relative;
+}
+.chart_bottom_settings a {
+ display: inline-block;
+ margin-right: 20px;
+ font-size: 13px;
+ color: #606060;
+}
+.chart_bottom_settings a:hover {
+ color: #ffa608;
+}
+
+.anl_pr10 {
+ padding-right: 10px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 08-Aug-2018, 11:30:21
+ Author : podkrizniku
+*/
+/*editing chart labels in popup*/
+table#grids td {
+ padding: 0 5px;
+ text-align: center;
+}
+table#grids input {
+ width: 100%;
+}
+
+ul.vrednost_sort {
+ padding: 0;
+}
+ul.vrednost_sort li {
+ list-style: none;
+ border: 1px solid grey;
+ margin: 5px 0px 5px 0px;
+ padding: 2px 3px 2px 3px;
+ width: 100%;
+}
+ul.vrednost_sort input[type=text] {
+ width: 50%;
+}
+
+#chart_hq_setting {
+ width: auto;
+ display: inline-block;
+ margin-left: 20px;
+ padding: 2px 5px 0px 5px;
+ background-color: #f8f8f8;
+ border: 1px solid silver;
+ border-radius: 3px;
+ -moz-border-radius: 4px 4px 4px 4px;
+ -webkit-border-radius: 4px;
+}
+#chart_hq_setting ul {
+ margin: 0px !important;
+ padding: 0px;
+}
+#chart_hq_setting ul li {
+ display: block;
+ margin: 0px !important;
+ padding: 3px;
+ list-style: none;
+}
+#chart_hq_setting ul li span.as_link {
+ font-weight: 500;
+ color: #1e88e5 !important;
+}
+#chart_hq_setting ul li span.as_link.gray {
+ font-weight: normal;
+ color: #1e88e5 !important;
+}
+#chart_hq_setting ul li span.advanced {
+ display: block;
+ font-weight: normal;
+}
+#chart_hq_setting ul li.space {
+ display: none;
+ display: none;
+}
+
+/*chart of analisys*/
+.tableChart {
+ margin: 30px auto 30px auto;
+ width: 1000px;
+ overflow: auto;
+ text-align: center;
+}
+.tableChart .chart_title {
+ width: 800px;
+ margin: 5px 0px;
+ padding-left: 5px;
+ min-height: 15px;
+ font-weight: 600;
+ font-size: 14px;
+}
+.tableChart .chart_img {
+ float: left;
+}
+.tableChart .chart_img img {
+ width: 800px;
+}
+.tableChart .chart_settings {
+ float: right;
+ position: relative;
+ margin-top: 5px;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ float: right;
+ position: relative;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ margin-top: -25px;
+ background-color: #f5fafe;
+}
+.tableChart .chart_settings .switch_left {
+ z-index: 99999;
+ position: relative;
+ width: 90px;
+ height: 17px;
+ padding: 5px 0 8px 0 !important;
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ background-color: #f5fafe;
+ float: left;
+}
+.tableChart .chart_settings .switch_right {
+ z-index: 99999;
+ position: relative;
+ width: 90px;
+ height: 17px;
+ padding: 5px 0 8px 0 !important;
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ background-color: #f5fafe;
+ float: right;
+}
+.tableChart .chart_settings .non-active {
+ cursor: pointer;
+ background-color: #f5fafe;
+}
+.tableChart .chart_settings .chart_settings_inner {
+ position: relative;
+ clear: both;
+ margin-top: -3px;
+ padding: 10px;
+ width: 160px;
+ height: auto;
+ font-size: 10px;
+ line-height: 15px;
+ font-weight: normal;
+ text-align: left;
+ background-color: #f5fafe;
+}
+.tableChart .chart_settings span.title {
+ color: #1e88e5;
+ font-size: 14px;
+ font-weight: bold;
+}
+.tableChart .chart_settings span.edit {
+ cursor: pointer;
+ display: block;
+ margin: 10px;
+ font-weight: bold;
+ text-align: left;
+ color: #1e88e5;
+}
+.tableChart .chart_settings span.edit:hover {
+ color: #ffa608;
+}
+.tableChart .chart_settings .chart_setting_exportLinks {
+ text-align: right;
+ padding: 7px;
+}
+.tableChart .chart_settings .chart_setting_exportLinks span {
+ margin: 0 4px;
+}
+.tableChart .chart_setting {
+ margin: 10px;
+}
+
+.chart_holder {
+ margin: 20px auto 50px auto;
+ width: 1000px;
+ overflow: hidden;
+ text-align: center;
+}
+.chart_holder .chart_title {
+ width: 800px;
+ margin: 5px 0px 15px 0;
+ padding-left: 5px;
+ padding-right: 5px;
+ font-weight: 600;
+ font-size: 14px;
+ text-align: left;
+}
+.chart_holder .chart_title .subtitle {
+ font-weight: normal;
+ font-size: 12px;
+ color: #333;
+}
+.chart_holder .chart_title span.numerus {
+ font-weight: normal;
+ color: #333;
+ padding-left: 10px;
+}
+.chart_holder .chart_img {
+ float: left;
+ min-height: 260px;
+}
+.chart_holder .chart_img img {
+ width: 800px;
+}
+.chart_holder .chart_bottom_info {
+ clear: both;
+ width: auto;
+ height: 20px;
+ padding: 5px;
+ text-align: left;
+}
+.chart_holder .chart_bottom_info ul {
+ list-style: none;
+}
+.chart_holder .chart_bottom_info ul li {
+ display: inline;
+ margin-right: 2px;
+}
+.chart_holder .chart_other_text {
+ margin-top: 10px;
+ float: left;
+ width: 770px;
+ min-height: 150px;
+ padding-left: 30px;
+}
+.chart_holder .chart_settings {
+ float: right;
+ position: relative;
+ opacity: 0;
+ filter: alpha(opacity=0);
+ margin-top: -25px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+.chart_holder .chart_settings .switch_left {
+ z-index: 99999;
+ position: relative;
+ width: 90px;
+ height: 17px;
+ padding: 5px 0 8px 0 !important;
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ background-color: white;
+ float: left;
+}
+.chart_holder .chart_settings .switch_right {
+ z-index: 99999;
+ position: relative;
+ width: 90px;
+ height: 17px;
+ padding: 5px 0 8px 0 !important;
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ background-color: white;
+ float: right;
+}
+.chart_holder .chart_settings .non-active {
+ cursor: pointer;
+ background-color: #f5fafe !important;
+}
+.chart_holder .chart_settings .chart_settings_inner {
+ position: relative;
+ clear: both;
+ margin-top: -3px;
+ padding: 10px;
+ width: 160px;
+ height: auto;
+ font-size: 10px;
+ line-height: 15px;
+ font-weight: normal;
+ text-align: left;
+ background-color: white;
+}
+.chart_holder .chart_settings span.title {
+ color: #1e88e5;
+ font-size: 14px;
+ font-weight: bold;
+}
+.chart_holder .chart_settings span.edit {
+ cursor: pointer;
+ display: block;
+ margin: 10px;
+ font-weight: bold;
+ text-align: left;
+ color: #1e88e5;
+}
+.chart_holder .chart_settings span.edit:hover {
+ color: #ffa608;
+}
+.chart_holder .chart_settings input[type=text] {
+ width: 50px;
+ float: right;
+}
+.chart_holder .chart_settings .chart_setting_exportLinks {
+ text-align: right;
+ padding: 7px;
+}
+.chart_holder .chart_settings .chart_setting_exportLinks span {
+ margin: 0 4px;
+}
+.chart_holder .chart_settings_inner fieldset.chart_num_limits {
+ padding: 0;
+ margin: 0 !important;
+}
+.chart_holder .chart_settings_inner .chart_num_limits legend {
+ color: black;
+}
+.chart_holder .other_settings {
+ margin-top: 50px;
+ margin-bottom: 20px;
+ /*height: 60px;*/
+}
+.chart_holder .other_settings .chart_settings_inner {
+ margin-top: 0px;
+}
+.chart_holder .chart_setting {
+ margin: 10px;
+}
+.chart_holder .anl_bl {
+ border-left: 1px solid lightgrey !important;
+}
+.chart_holder .anl_br {
+ border-right: 1px solid lightgrey !important;
+}
+.chart_holder .anl_bt {
+ border-top: 1px solid lightgrey !important;
+}
+.chart_holder .anl_bb {
+ border-bottom: 1px solid lightgrey !important;
+}
+
+.chart_other_text .chart_title {
+ margin-top: 20px;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.freq_chart_table {
+ width: 800px;
+ float: left;
+ color: black;
+}
+.freq_chart_table .chart_title {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.anl_user_text_more_charts {
+ float: left;
+ padding: 0px 5px;
+ text-indent: 0px;
+}
+
+.chart_profiles_holder {
+ width: 190px;
+ border: 1px solid grey;
+ height: 130px;
+ display: inline-block;
+}
+
+#chart_profiles {
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+ display: inline-block;
+ height: 144px;
+}
+#chart_profiles .option {
+ padding: 1px;
+}
+#chart_profiles .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+#chart_profiles_custom {
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+ display: inline-block;
+ height: 130px;
+}
+#chart_profiles_custom .option {
+ padding: 1px;
+}
+#chart_profiles_custom .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+#chart_settings_profiles_right #div_chart_skin_previews {
+ position: fixed;
+ top: 50px;
+ left: 90px;
+ width: 200px;
+ height: 140px;
+ padding: 10px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+#chart_settings_profiles_right .div_chart_skin_preview {
+ display: none;
+ width: 200px;
+ height: 120px;
+}
+#chart_settings_profiles_right .div_chart_skin_preview table tr td {
+ width: 50px;
+ height: 18px;
+}
+#chart_settings_profiles_right .form-item {
+ padding: 3px;
+ width: 200px;
+}
+#chart_settings_profiles_right .colorwell {
+ width: 70px;
+ height: 20px;
+ font-size: 11px;
+}
+
+#newChartSkin {
+ display: none;
+ position: absolute;
+ left: 50px;
+ top: 100px;
+ z-index: 20;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+#renameChartSkin {
+ display: none;
+ position: absolute;
+ left: 50px;
+ top: 100px;
+ z-index: 20;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+#deleteChartSkin {
+ display: none;
+ position: absolute;
+ left: 50px;
+ top: 100px;
+ z-index: 20;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 09:32:12
+ Author : podkrizniku
+*/
+/*sum vertical checkbox*/
+.anl_bck_2 {
+ background-color: white;
+}
+
+.anl_bck {
+ background-color: #f5fafe;
+}
+
+/*plain text*/
+.anl_tbl_inner {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ width: 100%;
+}
+
+.tbl_clps {
+ padding: 0px !important;
+ margin: 0px !important;
+ border-collapse: collapse !important;
+}
+
+.anl_tbl {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ margin-bottom: 20px;
+ border-collapse: collapse;
+}
+.anl_tbl th {
+ padding: 6px;
+}
+.anl_tbl td {
+ padding: 6px;
+}
+
+.cll_clps {
+ padding: 0px !important;
+ margin: 0px !important;
+ border-collapse: collapse !important;
+}
+
+.anl_bck_0_0 {
+ background-color: #f8f8f8;
+}
+
+.anl_bck_0_1 {
+ background-color: white;
+}
+
+.anl_bck_1_0 {
+ background-color: white;
+}
+
+.anl_bck_1_1 {
+ background-color: white;
+}
+
+.anl_bck_2_1 {
+ background-color: white;
+}
+
+.anl_bck_2_0 {
+ background-color: #f9f9f7;
+}
+
+.anl_bck_text_0 {
+ background-color: #FFFFE3;
+}
+
+.anl_bck_text_1 {
+ background-color: #FFFFF0;
+}
+
+.anl_bck_desc_1 {
+ background-color: #f5fafe;
+}
+
+.anl_bck_desc_2 {
+ background-color: white;
+}
+
+.anl_bck_desc_3 {
+ background-color: #FFFFE3;
+}
+
+.anl_bck_freq_1 {
+ background-color: #f5fafe;
+}
+
+.anl_bck_freq_2 {
+ background-color: white;
+}
+
+.anl_tin {
+ text-indent: 8px;
+}
+
+.anl_tin1 {
+ text-indent: 16px;
+}
+
+.anl_tin2 {
+ text-indent: 24px;
+}
+
+.anl_variabla {
+ font-weight: bold;
+ color: #1e88e5;
+}
+.anl_variabla a {
+ font-weight: bold;
+ color: #1e88e5;
+ cursor: pointer;
+}
+
+.anl_variabla_sub {
+ color: #1e88e5;
+}
+
+.anl_variabla_label {
+ color: #1e88e5;
+ color: black;
+}
+
+.anl_variabla_info {
+ color: grey;
+ font-size: 10px;
+}
+
+.anl_variabla_line {
+ color: grey;
+}
+
+.anl_ita {
+ font-style: italic;
+}
+
+.anl_detail_percent {
+ color: #d48800;
+ width: 70px;
+ text-align: right;
+ font-weight: normal;
+}
+.anl_detail_percent a {
+ color: #d48800;
+ width: 70px;
+ text-align: right;
+ font-weight: normal;
+}
+
+.anl_detail_cnt {
+ color: silver;
+}
+
+.anl_ac {
+ text-align: center;
+}
+
+.anl_al {
+ text-align: left;
+}
+
+.anl_ar {
+ border: 1px solid #c8e3f8;
+ text-align: right;
+}
+
+.anl_ba {
+ border: 1px solid #c8e3f8;
+}
+
+.anl_bl {
+ border-left: 1px solid #c8e3f8;
+}
+
+.anl_br {
+ border-right: 1px solid #c8e3f8;
+}
+
+.anl_bt {
+ border-top: 1px solid #c8e3f8;
+}
+
+.anl_bb {
+ border-bottom: 1px solid #c8e3f8;
+}
+
+.anl_red_ba {
+ border: 1px solid #990000;
+}
+
+.anl_dash_bl {
+ border-left: 1px dashed silver;
+}
+
+.anl_dash_br {
+ border-right: 1px dashed silver;
+}
+
+.anl_dash_bt {
+ border-top: 1px dashed silver;
+}
+
+.anl_dash_bb {
+ border-bottom: 1px dashed silver;
+}
+
+.anl_dash_red_bb {
+ border-bottom: 1px dashed #D59090;
+}
+
+.anl_double_bt {
+ border-top: 3px double grey;
+}
+
+.anl_legenda_freq {
+ font-weight: normal;
+}
+
+.anl_variable_type {
+ float: right;
+}
+.anl_variable_type span {
+ color: grey;
+}
+
+.anl_str {
+ font-weight: bold;
+}
+
+.anl_w15 {
+ width: 15px !important;
+}
+
+.anl_w30 {
+ width: 30px !important;
+}
+
+.anl_w50 {
+ width: 50px !important;
+}
+
+.anl_w70 {
+ width: 70px !important;
+}
+
+.anl_w90 {
+ width: 90px !important;
+}
+
+.anl_w110 {
+ width: 110px !important;
+}
+
+.anl_w140 {
+ width: 140px !important;
+}
+
+.anl_p5 {
+ padding: 5px !important;
+}
+
+.anl_p10 {
+ padding: 10px !important;
+}
+
+.anl_indent {
+ text-indent: 20px;
+}
+
+.anl_ba_dot {
+ border: 1px dotted grey;
+}
+
+.anl_bl_dot {
+ border-left: 1px dotted grey;
+}
+
+.anl_br_dot {
+ border-right: 1px dotted grey;
+}
+
+.anl_bt_dot {
+ border-top: 1px dotted grey;
+}
+
+.anl_bb_dot {
+ border-bottom: 1px dotted grey;
+}
+
+.anl_user_text {
+ color: #B30080;
+}
+
+.anl_user_text_more {
+ float: left;
+ padding: 0px 5px;
+ text-indent: 0px;
+ color: #B30080;
+}
+
+.anl_ti_20 {
+ text-indent: 20px;
+}
+
+.anl_click_missing {
+ color: black;
+ font-weight: normal;
+ cursor: pointer;
+}
+.anl_click_missing:hover {
+ color: #1e88e5;
+}
+
+.anl_click_missing_hide {
+ color: black;
+ font-weight: normal;
+ cursor: pointer;
+}
+.anl_click_missing_hide:hover {
+ color: #1e88e5;
+}
+
+.div_analiza_holder {
+ margin-top: 20px;
+}
+
+.div_analiza_icons {
+ float: left;
+ z-index: 75;
+ position: relative;
+ margin-top: -20px;
+ padding-bottom: 3px;
+ opacity: 0;
+ filter: alpha(opacity=0);
+}
+
+.div_analiza_scale {
+ float: right;
+ position: relative;
+ margin-top: -20px;
+ padding-bottom: 3px;
+ opacity: 0;
+ filter: alpha(opacity=0);
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 09:47:33
+ Author : podkrizniku
+*/
+.ct_in_cell {
+ padding: 0px;
+ margin: 0px;
+ height: 100%;
+ table-layout: auto;
+ text-align: center;
+ border-top: 1px solid #c8e3f8;
+ border-left: 1px solid #c8e3f8;
+}
+
+.ct_in_tbl {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ padding: 0px;
+ margin: 0px;
+ height: 100%;
+ width: 100%;
+}
+
+.anl_tbl_crosstab {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ margin-bottom: 10px;
+}
+.anl_tbl_crosstab th {
+ padding: 0px;
+ margin: 0px;
+ table-layout: auto;
+}
+.anl_tbl_crosstab td {
+ padding: 0px;
+ margin: 0px;
+ table-layout: auto;
+}
+
+.anl_dash_ba {
+ border: 1px dashed silver;
+}
+
+#crosstab_drobdowns {
+ float: left;
+}
+
+#crossLeftHolder {
+ float: left;
+ padding-right: 10px;
+}
+#crossLeftHolder select {
+ width: 220px;
+}
+
+#crossRightHolder {
+ float: left;
+ padding-right: 10px;
+}
+#crossRightHolder select {
+ width: 220px;
+}
+
+#crossImgHolder {
+ float: left;
+ padding: 0px 5px;
+ display: inline-block;
+ margin-right: 8px;
+}
+
+.crossCheckHolder {
+ float: left;
+ padding-right: 5px;
+ vertical-align: middle;
+}
+
+#crossCheck1span {
+ vertical-align: middle;
+ display: inlineblock;
+}
+
+#crossLegenda {
+ display: inline-block;
+ margin-left: 20px;
+ margin-top: 5px;
+}
+
+.rsdl_bck_title {
+ background-color: #f5fafe;
+ color: black;
+}
+
+.rsdl_bck_variable1 {
+ background-color: #f5fafe;
+}
+
+.ctbChck_sp0 {
+ background-color: #fcfcfc;
+}
+
+.ctbChck_sp1 {
+ background-color: #FEFFE3;
+}
+
+.ctbChck_sp2 {
+ background-color: #FCFFC2;
+}
+
+.ctbChck_sp3 {
+ background-color: #FBFFA8;
+}
+
+.crossCheck_EC {
+ background-color: #FFFAE8;
+}
+
+.crossCheck_RE {
+ background-color: #FFF6D1;
+}
+
+.crossCheck_SR {
+ background-color: #FFECA2;
+}
+
+.crossCheck_AR {
+ background-color: #FFDA46;
+}
+
+.rsdl_bck0 {
+ background-color: white;
+}
+
+.rsdl_bck1 {
+ background-color: #fae2e2;
+}
+
+.rsdl_bck2 {
+ background-color: #ff9d9d;
+}
+
+.rsdl_bck3 {
+ background-color: #f84242;
+}
+
+.rsdl_bck4 {
+ background-color: #E8F1FF;
+}
+
+.rsdl_bck5 {
+ background-color: #B9D5FF;
+}
+
+.rsdl_bck6 {
+ background-color: #74ACFF;
+}
+
+.ctbCll {
+ padding: 5px !important;
+}
+
+.crostabSuma {
+ font-style: italic;
+ color: #ffa608 !important;
+ font-weight: bold;
+}
+
+.ctb_w50p {
+ width: 50% !important;
+}
+
+.ctb_w33p {
+ width: 33.333% !important;
+}
+
+.ctb_w25p {
+ width: 25% !important;
+}
+
+.residual {
+ border-collapse: separate;
+}
+.residual th {
+ width: 20px;
+}
+
+.residual_link {
+ font-style: italic;
+ font-size: 10px;
+}
+
+#div_crossCheck {
+ padding-right: 3px;
+ vertical-align: top;
+}
+
+#tbl_color_residual_legend {
+ border-collapse: collapse;
+ margin: 0px;
+ padding: 0px;
+}
+#tbl_color_residual_legend th {
+ font-weight: normal;
+ padding: 0px 30px 0px 0px;
+}
+#tbl_color_residual_legend td {
+ width: 25px;
+ height: 17px;
+}
+
+#span_color_residual_legend {
+ padding: 10px;
+ margin-bottom: 8px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#span_color_residual_legend3 #tbl_color_residual_legend td {
+ width: 39px;
+}
+
+.space_crosstab_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#crosstab_add_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#crosstab_remove {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+.ct_inspect:hover {
+ border: 1px solid blue;
+ cursor: pointer;
+ background-color: #1e88e5 !important;
+}
+.ct_inspect:hover table td {
+ opacity: 0.95 !important;
+ filter: alpha(opacity=95) !important;
+ color: #1e88e5 !important;
+}
+
+div#div_analiza_data.crosstabs {
+ margin-top: 0px;
+}
+
+#div_color_residual_legend {
+ float: right;
+ margin-top: 5px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 14-Aug-2018, 14:36:26
+ Author : podkrizniku
+*/
+.space_means_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#means_add_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#means_remove {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#div_means_data {
+ margin-top: 10px;
+}
+
+#meansLeftDropdowns {
+ float: left;
+ padding-right: 10px;
+}
+#meansLeftDropdowns select {
+ width: 240px;
+ font-size: 12px;
+}
+#meansLeftDropdowns select option {
+ overflow: hidden;
+ font-size: 12px;
+}
+
+#meansRightDropdowns {
+ float: left;
+ padding-right: 10px;
+}
+#meansRightDropdowns select {
+ width: 240px;
+ font-size: 12px;
+}
+#meansRightDropdowns select option {
+ overflow: hidden;
+ font-size: 12px;
+}
+
+.space_means_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#means_add_new {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#means_remove {
+ text-align: center;
+ vertical-align: middle;
+ display: inline-block;
+ width: 20px;
+}
+
+#meansImgHolder {
+ float: left;
+ padding: 0px 3px;
+ display: inline-block;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 16-Aug-2018, 10:56:16
+ Author : podkrizniku
+*/
+.fr_inspect:hover {
+ background-color: #ABd2d0;
+ outline: 1px solid #1e88e5;
+ cursor: pointer;
+ color: #1e88e5 !important;
+}
+
+.mc_inspect:hover {
+ background-color: #ABd2d0;
+ outline: 1px solid #1e88e5;
+ cursor: pointer;
+ color: #1e88e5 !important;
+}
+
+.mg_inspect:hover {
+ background-color: #ABd2d0;
+ outline: 1px solid #1e88e5;
+ cursor: pointer;
+ color: #1e88e5 !important;
+}
+
+.dmg_inspect:hover {
+ background-color: #ABd2d0;
+ outline: 1px solid #1e88e5;
+ cursor: pointer;
+ color: #1e88e5 !important;
+}
+
+.mt_inspect:hover {
+ background-color: #ABd2d0;
+ outline: 1px solid #1e88e5;
+ cursor: pointer;
+ color: #1e88e5 !important;
+}
+
+#dsp_inspect_cover {
+ position: absolute;
+ z-index: 100 !important;
+ height: auto;
+ height: auto;
+ max-height: 500px;
+ width: 350px;
+ padding-bottom: 45px;
+ font-size: 13px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ border-radius: 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px;
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+}
+
+#dsp_inspect_spr_select {
+ padding: 10px;
+ display: block;
+ max-height: 450px;
+ overflow: auto;
+}
+
+.dsp_inspect_var {
+ list-style-type: none;
+ display: block;
+ outline: 1px dashed lightgrey;
+ background: #ffc;
+ width: 300px;
+ padding: 5px 0px;
+ margin: 5px 10px 0 10px;
+ height: 20px;
+}
+.dsp_inspect_var label {
+ display: inline-block;
+ width: 275px !important;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+#spanSessionInspect {
+ display: inline-block;
+ margin-right: 10px;
+}
+
+#inspect_cover_div {
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+ z-index: 10;
+ display: none;
+}
+
+div.zoom_short_text {
+ max-width: 200px;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+/*popup*/
+#inspect_div {
+ display: none;
+ position: relative;
+ z-index: 90;
+ padding: 0 10px 10px 10px;
+ width: 580px;
+ color: #333;
+}
+#inspect_div fieldset {
+ margin: 0px 0px 5px 0px;
+ border: 0;
+ border-top: 1px solid #c8e3f8;
+}
+
+/*segmentation*/
+#zoom_div {
+ display: none;
+ position: relative;
+ z-index: 90;
+ width: 730px;
+}
+
+#zoom_profiles_left {
+ width: 192px;
+ float: left;
+}
+
+#zoom_profiles_right {
+ float: right;
+ width: 490px;
+ padding: 10px 10px 30px 10px;
+ margin-bottom: 40px;
+ color: #333;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#zoom_profiles_holder {
+ width: 190px;
+ height: 150px;
+ display: inline-block;
+}
+
+#zoom_profiles {
+ height: 150px;
+ overflow: auto;
+ cursor: pointer;
+ width: 190px;
+ display: inline-block;
+}
+#zoom_profiles .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#zoom_profiles .active {
+ padding: 2px 5px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+#zoom_note {
+ width: 450px;
+ padding: 3px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+
+#zoom_content {
+ width: auto;
+ min-height: 80px;
+ max-height: 70vh;
+ overflow-y: scroll;
+ padding: 0px 0px 5px 0px;
+ margin-bottom: 5px;
+}
+
+#zoom_button_holder {
+ position: absolute;
+ bottom: 20px;
+ right: 20px;
+}
+
+.zoom_var {
+ list-style-type: none;
+ display: inline-block;
+ width: 400px;
+ padding: 5px 0px;
+ margin: 5px 10px 0 10px;
+ min-height: 20px;
+ height: auto;
+ background-color: #dfeffb;
+}
+.zoom_var label {
+ display: inline-block;
+ width: 360px !important;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+/*segment dropdown conditions in top left*/
+#div_zoom_condition {
+ vertical-align: top;
+ display: inline-block;
+ width: auto;
+ min-width: 200px;
+ padding: 7px 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+#div_zoom_condition label {
+ white-space: nowrap;
+}
+#div_zoom_condition ul {
+ display: block !important;
+ clear: both;
+ float: left;
+ margin: 5px 0 !important;
+ padding: 0px !important;
+ margin: 0px;
+ width: auto;
+ list-style-type: none;
+ font-size: 11px;
+ border: grey;
+}
+#div_zoom_condition ul li {
+ display: inline-block;
+ min-height: 18px;
+ min-width: 100px;
+ width: auto;
+ height: auto;
+ margin: 0px 5px;
+ background-color: #dfeffb;
+ text-align: left;
+ vertical-align: top;
+}
+#div_zoom_condition ul li div {
+ padding: 3px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 16-Aug-2018, 13:17:25
+ Author : podkrizniku
+*/
+.ttest_chart_holder {
+ margin-left: 0px;
+}
+
+table.ttestTable {
+ border-top: 1px solid grey;
+ border-left: 1px solid grey;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ font-size: 120%;
+}
+table.ttestTable td {
+ min-width: 80px;
+ padding: 3px;
+ margin: 0px;
+ text-align: center;
+ border-bottom: 1px solid grey;
+ border-right: 1px solid grey;
+}
+table.ttestTable th {
+ min-width: 80px;
+ padding: 3px;
+ margin: 0px;
+ text-align: center;
+ border-bottom: 1px solid grey;
+ border-right: 1px solid grey;
+ background-color: #f5fafe;
+}
+table.ttestTable th.lightGreen {
+ background-color: #dfeffb;
+}
+table.ttestTable td.lightGreen {
+ background-color: #dfeffb;
+}
+
+#ttestNumerusSpan select {
+ width: 220px;
+}
+
+#ttestSpremenljivkaSpan select {
+ width: 220px;
+}
+
+#ttestVariablesSpan {
+ background-color: #f8f8f8;
+ border: 1px solid lightgrey;
+ margin-bottom: 10px;
+ padding: 5px;
+ max-width: 400px;
+ border-radius: 4px;
+ -moz-border-radius: 4px 4px 4px 4px;
+ -webkit-border-radius: 4px;
+}
+
+#ttestVariablesSpan.active {
+ background-color: #fff0d4;
+ border: 1px solid #d48800;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 16-Aug-2018, 13:17:48
+ Author : podkrizniku
+*/
+.break_chart_holder {
+ margin: 30px 0 30px 0;
+}
+
+.avg {
+ text-decoration: overline;
+}
+
+#breakSpremenljivkaSpan select {
+ width: 220px;
+}
+
+div.breakTableDiv {
+ margin-top: 10px;
+}
+div.breakTableDiv table {
+ border-top: 1px solid grey;
+ border-left: 1px solid grey;
+ border-collapse: collapse;
+ border-spacing: 0;
+ text-align: center;
+}
+div.breakTableDiv table th {
+ border-right: 1px solid grey;
+ border-bottom: 1px solid grey;
+ padding: 5px;
+ min-width: 70px;
+ font-weight: normal;
+ background-color: #dfeffb;
+}
+div.breakTableDiv table td {
+ border-right: 1px solid grey;
+ border-bottom: 1px solid grey;
+ padding: 5px;
+ min-width: 70px;
+ font-weight: normal;
+}
+div.breakTableDiv table th.sub {
+ background-color: #f5fafe;
+}
+div.breakTableDiv table th.strong {
+ font-weight: bold;
+}
+div.breakTableDiv table td.strong {
+ font-weight: bold;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 16-Aug-2018, 13:38:14
+ Author : podkrizniku
+*/
+#anketa_custom_report {
+ padding: 0px 20px 20px 0px;
+}
+#anketa_custom_report #custom_report_elements {
+ margin: 20px 0 20px 0;
+ padding-bottom: 20px;
+ border: 1px #c8e3f8 solid;
+}
+#anketa_custom_report ul {
+ margin: 20px 0 0 0;
+}
+#anketa_custom_report .custom_report_title .creport_title_inline:hover {
+ cursor: text;
+ background-color: #f5fafe;
+}
+#anketa_custom_report .custom_report_title.writing .creport_title_inline {
+ background-color: #fff0d4;
+ outline: 1px dashed grey;
+}
+#anketa_custom_report .report_element {
+ width: 95%;
+ border: 1px #c8e3f8 solid;
+}
+#anketa_custom_report .report_element:hover {
+ background-color: white;
+ border: 1px #1e88e5 solid;
+}
+#anketa_custom_report .report_element.active {
+ background-color: white;
+ border: 1px #1e88e5 solid;
+}
+#anketa_custom_report .report_element_text .creport_text_inline:hover {
+ cursor: text;
+ background-color: #f5fafe;
+}
+#anketa_custom_report .report_element_text .edit2 {
+ opacity: 0;
+ filter: alpha(opacity=0);
+}
+#anketa_custom_report .report_element_text.writing .creport_text_inline {
+ background-color: #f5fafe;
+ border: 1px dashed #1e88e5;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+}
+#anketa_custom_report .report_element_text.writing .edit2 {
+ opacity: 100;
+ filter: alpha(opacity=100);
+}
+
+#custom_report_elements .custom_report_title {
+ font-size: 16px;
+ font-weight: bold;
+ display: block;
+ margin: 15px 0 0 20px;
+}
+#custom_report_elements .custom_report_title .creport_title_inline {
+ width: 95%;
+ min-height: 15px;
+ padding: 5px 15px;
+}
+#custom_report_elements #custom_report_view {
+ margin: 10px 0 0 15px;
+}
+#custom_report_elements .report_element {
+ text-align: left;
+}
+#custom_report_elements .report_element .report_element_head {
+ overflow: auto;
+ min-height: 22px;
+ padding: 5px 5px 3px;
+ background-color: #f5fafe;
+ font-size: 12px;
+ font-weight: 600;
+}
+#custom_report_elements .report_element .report_element_head .report_element_icons {
+ float: right;
+ margin: 0 10px;
+ display: none;
+}
+#custom_report_elements .report_element .report_element_head .report_element_title {
+ cursor: pointer;
+ float: left;
+ position: relative;
+ margin: 0 10px;
+ color: #1e88e5;
+ width: 85%;
+}
+#custom_report_elements .report_element .report_element_head span.sprites.printer {
+ margin-bottom: 2px;
+}
+#custom_report_elements .report_element .report_element_head.hover {
+ background-color: #f5fafe;
+}
+#custom_report_elements .report_element .report_element_head.hover .report_element_icons {
+ display: block;
+ background-color: #f5fafe;
+}
+#custom_report_elements .report_element .report_element_head.active {
+ overflow: auto;
+ min-height: 22px;
+ padding: 5px 5px 3px;
+ font-size: 12px;
+ font-weight: 600;
+ background-color: #f5fafe;
+}
+#custom_report_elements .report_element .report_element_head.active .report_element_icons {
+ display: block;
+ background-color: #f5fafe;
+}
+#custom_report_elements .report_element .report_element_settings {
+ clear: both;
+ margin: 15px 10px 20px 30px;
+}
+#custom_report_elements .report_element .report_element_data {
+ padding: 10px 20px;
+}
+#custom_report_elements .report_element .chart_img {
+ background-color: white;
+}
+#custom_report_elements .report_element .report_element_text {
+ clear: both;
+ overflow: auto;
+ margin: 0 10px 20px 30px;
+ width: 80%;
+}
+#custom_report_elements .report_element_text .creport_text_inline {
+ width: 95%;
+ min-height: 15px;
+ padding: 5px 15px;
+}
+#custom_report_elements .report_element_pb {
+ cursor: pointer;
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat scroll 0 10px transparent;
+ color: #c8e3f8;
+ font-size: 15px;
+ font-weight: bold;
+ height: 18px;
+ line-height: 18px;
+ display: inline-block;
+ width: 95%;
+}
+#custom_report_elements .report_element_pb:hover {
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 0 -52px transparent;
+}
+#custom_report_elements .report_element_separator {
+ height: 25px;
+ width: 95%;
+ font-size: 10px;
+}
+#custom_report_elements .report_element_separator .add_element {
+ opacity: 0;
+ padding: 5px 0 0 0;
+ margin-left: -40px;
+ filter: alpha(opacity=0);
+}
+#custom_report_elements .report_element_separator.expanded {
+ height: 38px;
+ width: 95%;
+ font-size: 11px;
+}
+#custom_report_elements .report_element_separator.expanded .add_element {
+ opacity: 0;
+ padding: 10px 0 0 0;
+ margin-left: -40px;
+ filter: alpha(opacity=0);
+}
+#custom_report_elements .add_element span:hover {
+ color: #ffa608;
+}
+#custom_report_elements ul#custom_report_sortable {
+ list-style-type: none !important;
+}
+
+.custom_report_include {
+ clear: both;
+ margin: 5px 10px;
+ text-align: left;
+}
+.custom_report_include a {
+ color: black;
+ background-color: white;
+}
+
+.creport_bottom_settings {
+ width: auto;
+ margin: 40px auto 20px auto;
+ text-align: center;
+ position: relative;
+}
+.creport_bottom_settings a {
+ display: inline-block;
+ margin-right: 20px;
+}
+
+#custom_report_alert {
+ display: none;
+ margin-left: -200px;
+ width: 280px;
+ height: 100px;
+}
+#custom_report_alert .buttons {
+ position: absolute;
+ right: 10px;
+ bottom: 15px;
+}
+
+table.analysis_reports {
+ width: 100%;
+}
+table.analysis_reports tr td {
+ vertical-align: top;
+ width: 30%;
+}
+table.analysis_reports tr td fieldset {
+ padding: 0px 10px 10px 10px;
+}
+table.analysis_reports tr td span.subtitle {
+ font-weight: 600;
+ display: block;
+ padding: 10px 0 5px 0;
+}
+table.analysis_reports tr td a {
+ line-height: 24px;
+}
+
+/*popups for custom reports*/
+#newCReportProfile {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ left: calc(50% - 210px);
+ top: 45vh;
+ z-index: 999;
+ margin: 10px;
+ width: 420px;
+}
+#newCReportProfile .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#newCReportProfile .popup_close:hover {
+ color: #1e88e5;
+}
+#newCReportProfile .popup_close a {
+ color: lightgrey;
+}
+#newCReportProfile .popup_close a:hover {
+ color: #1e88e5;
+}
+#newCReportProfile h2,
+#newCReportProfile .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#newCReportProfile p {
+ line-height: 20px;
+}
+#newCReportProfile.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#newCReportProfile.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#newCReportProfile.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#newCReportProfile.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#newCReportProfile.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#newCReportProfile.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#newCReportProfile.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#newCReportProfile.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#newCReportProfile.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#newCReportProfile.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#newCReportProfile.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#newCReportProfile.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#newCReportProfile.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#newCReportProfile.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#newCReportProfile.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#renameCReportProfile {
+ display: none;
+ position: fixed;
+ left: 250px;
+ top: 200px;
+ z-index: 999;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+#shareCReportProfile {
+ display: none;
+ position: fixed;
+ left: 250px;
+ top: 200px;
+ z-index: 999;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+ width: 550px;
+ height: auto;
+}
+
+#deleteCReportProfile {
+ display: none;
+ position: fixed;
+ left: 250px;
+ top: 200px;
+ z-index: 999;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+#div_creport_settings_profiles {
+ display: none;
+ width: 350px;
+ height: 350px;
+}
+#div_creport_settings_profiles #creport_settings_profiles_left {
+ margin-bottom: 10px;
+}
+#div_creport_settings_profiles #creport_settings_profiles_comment {
+ clear: both;
+ margin-top: 40px;
+}
+#div_creport_settings_profiles #creport_settings_profiles_comment textarea {
+ width: 98%;
+ height: 30px;
+}
+
+#creport_profiles {
+ cursor: pointer;
+ width: 99%;
+ height: 140px;
+ display: inline-block;
+ border: 1px solid grey;
+}
+#creport_profiles .option {
+ padding: 1px;
+}
+#creport_profiles .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Aug-2018, 15:54:11
+ Author : podkrizniku
+*/
+#srv_preview_analiza {
+ margin: 1px;
+ background-color: white;
+ padding: 10px;
+ overflow: hidden;
+ width: auto;
+}
+#srv_preview_analiza span.large {
+ font-size: 13px;
+}
+#srv_preview_analiza table {
+ font-size: smaller;
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ margin-bottom: 5px;
+ border-collapse: collapse;
+ filter: alpha(opacity=60);
+ opacity: 0.6;
+}
+#srv_preview_analiza table th {
+ padding: 3px 5px;
+}
+#srv_preview_analiza table td {
+ padding: 3px 5px;
+}
+
+.sampleView {
+ color: #f7dacf;
+ border: 2px dashed #f2c1ae;
+ border-radius: 12px;
+ -moz-border-radius: 12px;
+ -webkit-border-radius: 12px;
+ text-align: center;
+ position: relative;
+ display: inline-block;
+ padding: 7px 9px;
+ width: 80%;
+ height: 60%;
+ margin-top: -180px;
+ top: 230px;
+ z-index: 9999;
+ vertical-align: middle;
+ font-size: 8em;
+ font-variant: small-caps;
+ font-weight: 600;
+ font-family: Courier New, Courier, monospace;
+ letter-spacing: 0.1em;
+ line-height: 125%;
+ -moz-transform: translate(0) rotate(10deg);
+ -moz-transform-origin: 60% 100%;
+ -webkit-transform: translate(50%) rotate(20deg);
+ -webkit-transform-origin: 60% 100%;
+ -o-transform: translate(50%) rotate(20deg);
+ -o-transform-origin: 60% 100%;
+ -ms-transform: translate(50%) rotate(20deg);
+ -ms-transform-origin: 60% 100%;
+ transform: translate(50%) rotate(20deg);
+ transform-origin: 60% 100%;
+}
+
+#srv_analiza_preview_div {
+ display: none;
+ position: fixed;
+ z-index: 9999;
+ left: 270px;
+ top: 148px;
+ color: black;
+ width: auto;
+ height: auto;
+ pointer-events: none;
+}
+
+.srv_analiza_preview_sub {
+ display: inline-block;
+ margin: 5px 0 10px 0;
+}
+.srv_analiza_preview_sub > span {
+ padding: 3px 5px 3px 8px;
+ display: inline-block;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Aug-2018, 15:58:51
+ Author : podkrizniku
+*/
+#analiza_right_options_holder {
+ position: relative;
+ float: right;
+ margin: 4px 15px 0 0;
+}
+#analiza_right_options_holder #analiza_right_options {
+ display: inline;
+}
+#analiza_right_options_holder #analiza_right_options2 {
+ display: inline;
+}
+#analiza_right_options_holder #analiza_right_options3 {
+ float: left;
+ display: inline;
+}
+
+#div_analiza_filtri_right {
+ display: none;
+ white-space: nowrap;
+ position: absolute;
+ z-index: 78;
+ top: 32px;
+ right: 0;
+ width: auto;
+ min-height: 20px;
+ height: auto;
+ padding: 10px;
+ text-align: left;
+ font-size: 13px;
+ background-color: #f5fafe;
+ border: 1px solid #1e88e5;
+}
+#div_analiza_filtri_right ul {
+ margin: 0px !important;
+ padding: 0px;
+}
+#div_analiza_filtri_right ul li {
+ display: block;
+ margin: 0px !important;
+ padding: 3px;
+ list-style: none;
+}
+#div_analiza_filtri_right ul li span.as_link {
+ font-weight: 500;
+ color: #1e88e5 !important;
+}
+#div_analiza_filtri_right ul li span.as_link:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right ul li span.as_link.gray {
+ font-weight: normal;
+ color: #1e88e5 !important;
+}
+#div_analiza_filtri_right ul li span.as_link.gray:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right ul li span.advanced {
+ display: block;
+ font-weight: normal;
+}
+#div_analiza_filtri_right ul li.space {
+ display: none;
+}
+#div_analiza_filtri_right a {
+ color: #1e88e5 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right a:visited {
+ color: #1e88e5 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right a:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+
+#div_analiza_filtri_right2 {
+ display: none;
+ white-space: nowrap;
+ position: absolute;
+ z-index: 78;
+ top: 32px;
+ right: 0;
+ width: auto;
+ min-height: 20px;
+ height: auto;
+ padding: 10px;
+ text-align: left;
+ font-size: 13px;
+ background-color: #f5fafe;
+ border: 1px solid #1e88e5;
+ right: 35px;
+}
+#div_analiza_filtri_right2 ul {
+ margin: 0px !important;
+ padding: 0px;
+}
+#div_analiza_filtri_right2 ul li {
+ display: block;
+ margin: 0px !important;
+ padding: 3px;
+ list-style: none;
+}
+#div_analiza_filtri_right2 ul li span.as_link {
+ font-weight: 500;
+ color: #1e88e5 !important;
+}
+#div_analiza_filtri_right2 ul li span.as_link:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right2 ul li span.as_link.gray {
+ font-weight: normal;
+ color: #1e88e5 !important;
+}
+#div_analiza_filtri_right2 ul li span.as_link.gray:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right2 ul li span.advanced {
+ display: block;
+ font-weight: normal;
+}
+#div_analiza_filtri_right2 ul li.space {
+ display: none;
+}
+#div_analiza_filtri_right2 a {
+ color: #1e88e5 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right2 a:visited {
+ color: #1e88e5 !important;
+ text-decoration: none;
+}
+#div_analiza_filtri_right2 a:hover {
+ color: #ffa608 !important;
+ text-decoration: none;
+}
+
+#analiza_right_options span#filters_span {
+ color: #1e88e5;
+ margin-left: 4px;
+}
+#analiza_right_options:hover span#filters_span {
+ color: #ffa608 !important;
+}
+
+#analiza_right_options2:hover span#filters_span {
+ color: #ffa608 !important;
+}
+
+#div_analiza_filtri_right.analiza ul li.space {
+ display: none;
+}
+
+#div_analiza_filtri_right2.analiza ul li.space {
+ display: none;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Aug-2018, 11:12:49
+ Author : podkrizniku
+*/
+#mc_holder {
+ overflow: hidden;
+ margin-top: 20px;
+ min-height: 500px;
+}
+#mc_holder .mc_table_bottom_settings {
+ clear: none;
+ float: right;
+ border-collapse: collapse;
+ margin: 0 2% 15px 0;
+ width: 72%;
+}
+#mc_holder .custom_report_include {
+ clear: none;
+ float: left;
+ border-collapse: collapse;
+ margin: 0 2% 15px 0;
+}
+
+/*drag list of questions*/
+#spr_list {
+ float: left;
+ overflow: auto;
+ position: fixed;
+ width: 20%;
+ max-height: 450px;
+ margin: 15px 0 15px 1%;
+ background-color: white;
+ border: 1px solid silver;
+ border-radius: 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px;
+}
+#spr_list ul {
+ padding: 0;
+ padding: 5px 0;
+ z-index: 1;
+}
+
+.mc_draggable {
+ width: 180px;
+ margin: 10px 15px;
+ padding: 8px;
+ list-style: none;
+ border: 1px grey dashed;
+}
+.mc_draggable:hover {
+ background-color: #efefef;
+ cursor: pointer;
+}
+
+/*title of table*/
+.mc_table_title {
+ float: right;
+ table-layout: fixed;
+ width: 70%;
+ min-height: 15px;
+ margin: 15px 2% 15px 0;
+ padding: 5px 1%;
+ font-size: 16px;
+ font-weight: bold;
+ border-collapse: collapse;
+}
+.mc_table_title:hover {
+ cursor: text;
+ background-color: #efefef;
+}
+.mc_table_title .multicrosstab_title_inline:focus {
+ outline: none;
+}
+
+.mc_table_title.writing {
+ background-color: #fff0d4;
+ outline: 1px dashed grey;
+}
+
+/*multicrosstab table*/
+.mc_table {
+ float: right;
+ table-layout: fixed;
+ width: 72%;
+ margin: 15px 2% 15px 0;
+ border-collapse: collapse;
+}
+.mc_table tr {
+ height: 40px;
+}
+.mc_table tr td {
+ border: 1px grey solid;
+ text-align: center;
+}
+.mc_table tr td table.mc_inner_cell {
+ width: 100%;
+ height: 100%;
+ border-collapse: collapse;
+}
+.mc_table tr td table.mc_inner_cell tr {
+ width: 100%;
+ height: auto;
+}
+.mc_table tr td table.mc_inner_cell tr td {
+ border: 0;
+ border-top: 1px dashed #aaa;
+ width: 100%;
+}
+.mc_table tr td table.mc_inner_cell tr:first-child td {
+ border: 0;
+}
+.mc_table tr td .delete_var {
+ display: none;
+ position: absolute;
+ width: 16px;
+ height: 16px;
+ margin: -25px 0 0 0;
+ background-image: url("../../../admin/survey/img_0/cross.png");
+}
+.mc_table tr td.borderless {
+ border: 0;
+}
+.mc_table tr td.spr {
+ cursor: pointer;
+ font-weight: bold;
+ background-color: #dfeffb;
+}
+.mc_table tr td.var {
+ background-color: #f5fafe;
+}
+.mc_table tr td.sums {
+ color: #d48800;
+}
+.mc_table tr td.data {
+ background-color: #F9F9F7;
+}
+.mc_table tr td.crossCheck_EC {
+ background-color: #FFFAE8;
+}
+.mc_table tr td.crossCheck_RE {
+ background-color: #FFFAE8;
+}
+.mc_table tr td.crossCheck_SR {
+ background-color: #FFECA2;
+}
+.mc_table tr td.crossCheck_AR {
+ background-color: #FFDA46;
+}
+.mc_table tr td.rsdl_bck0 {
+ background-color: white;
+}
+.mc_table tr td.rsdl_bck1 {
+ background-color: #FFE8E8;
+}
+.mc_table tr td.rsdl_bck2 {
+ background-color: #FFD1D1;
+}
+.mc_table tr td.rsdl_bck3 {
+ background-color: #FF8B8B;
+}
+.mc_table tr td.rsdl_bck4 {
+ background-color: #E8F1FF;
+}
+.mc_table tr td.rsdl_bck5 {
+ background-color: #B9D5FF;
+}
+.mc_table tr td.rsdl_bck6 {
+ background-color: #74ACFF;
+}
+.mc_table tr td.white {
+ background-color: white;
+}
+.mc_table tr td.red {
+ background-color: #FFD1D1;
+}
+.mc_table tr td.blue {
+ background-color: #E8F1FF;
+}
+.mc_table tr td.drophover {
+ background-color: #ffdda1 !important;
+}
+.mc_table tr td.empty {
+ border: 1px dashed grey;
+ font-weight: normal;
+}
+.mc_table tr td.empty.droppable {
+ color: #d48800;
+ border: 1px dashed #d48800;
+ background-color: #fff0d4;
+}
+
+/*settings links in top left corner*/
+.mc_settings_links {
+ float: none;
+ display: inline-block;
+ position: relative;
+ width: auto;
+ left: 200px;
+ padding: 3px 5px;
+ margin: 0 40px 0 0;
+ background-color: #f8f8f8;
+ border: 1px solid silver;
+ border-radius: 3px;
+ -moz-border-radius: 4px 4px 4px 4px;
+ -webkit-border-radius: 4px;
+}
+.mc_settings_links ul {
+ margin: 0 !important;
+ padding: 0;
+}
+.mc_settings_links ul li {
+ display: inline-block;
+ list-style: none outside none;
+ margin: 0 !important;
+ padding: 2px 1px;
+ vertical-align: middle;
+}
+.mc_settings_links ul li > span {
+ vertical-align: middle;
+ cursor: pointer;
+}
+.mc_settings_links ul li.space {
+ background: url("../../../admin/survey/img_0/navigation/nav-control-bg.png") no-repeat scroll center top transparent;
+ line-height: 17px;
+ padding: 0 5px;
+ width: 7px;
+}
+
+/*table settings popup*/
+.mc_table_settings {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ top: 200px;
+ left: calc(50% - 200px);
+ z-index: 999;
+ width: 400px;
+}
+.mc_table_settings .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+.mc_table_settings .popup_close:hover {
+ color: #1e88e5;
+}
+.mc_table_settings .popup_close a {
+ color: lightgrey;
+}
+.mc_table_settings .popup_close a:hover {
+ color: #1e88e5;
+}
+.mc_table_settings h2,
+.mc_table_settings .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+.mc_table_settings p {
+ line-height: 20px;
+}
+.mc_table_settings.popup_violet, .mc_table_settings#popup_user_access {
+ border-left: 6px #921ee5 solid !important;
+}
+.mc_table_settings.popup_violet div.buttonwrapper a, .mc_table_settings#popup_user_access div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.mc_table_settings.popup_violet div.buttonwrapper a:hover, .mc_table_settings#popup_user_access div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+.mc_table_settings.popup_violet div.buttonwrapper a.ovalbutton_gray, .mc_table_settings#popup_user_access div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+.mc_table_settings.popup_violet div.buttonwrapper a.ovalbutton_gray:hover, .mc_table_settings#popup_user_access div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+.mc_table_settings.popup_orange, .mc_table_settings#check_pogoji, .mc_table_settings#dropped_alert, .mc_table_settings#surveyTrajanje {
+ border-left: 6px #ffa608 solid !important;
+}
+.mc_table_settings.popup_orange div.buttonwrapper a, .mc_table_settings#check_pogoji div.buttonwrapper a, .mc_table_settings#dropped_alert div.buttonwrapper a, .mc_table_settings#surveyTrajanje div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+.mc_table_settings.popup_orange div.buttonwrapper a:hover, .mc_table_settings#check_pogoji div.buttonwrapper a:hover, .mc_table_settings#dropped_alert div.buttonwrapper a:hover, .mc_table_settings#surveyTrajanje div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+.mc_table_settings.popup_orange div.buttonwrapper a.ovalbutton_gray, .mc_table_settings#check_pogoji div.buttonwrapper a.ovalbutton_gray, .mc_table_settings#dropped_alert div.buttonwrapper a.ovalbutton_gray, .mc_table_settings#surveyTrajanje div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+.mc_table_settings.popup_orange div.buttonwrapper a.ovalbutton_gray:hover, .mc_table_settings#check_pogoji div.buttonwrapper a.ovalbutton_gray:hover, .mc_table_settings#dropped_alert div.buttonwrapper a.ovalbutton_gray:hover, .mc_table_settings#surveyTrajanje div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+.mc_table_settings.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+.mc_table_settings.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+.mc_table_settings.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+.mc_table_settings.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+.mc_table_settings.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+.mc_table_settings #mcSettingsButtons {
+ position: absolute;
+ bottom: 15px;
+ right: 10px;
+}
+.mc_table_settings #delez {
+ width: 300px;
+ margin: 5px 10px 0px 60px;
+}
+.mc_table_settings form {
+ padding: 10px;
+}
+.mc_table_settings fieldset {
+ margin: 0px 0px 10px 0px;
+ border: 0;
+ border-top: 1px solid #166dba;
+}
+.mc_table_settings legend {
+ color: #1e88e5;
+ font-size: 13px;
+ font-weight: 500;
+ margin: 0;
+ padding: 0 10px;
+}
+
+/*tables list popup*/
+#div_mc_tables {
+ display: none;
+ width: 350px;
+ height: 280px;
+}
+#div_mc_tables #mc_tables_left {
+ margin-bottom: 10px;
+}
+
+#mc_tables {
+ cursor: pointer;
+ width: 99%;
+ height: 160px;
+ display: inline-block;
+ border: 1px solid gray;
+}
+#mc_tables .option {
+ padding: 1px;
+}
+#mc_tables .active {
+ background-color: #1e88e5;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+/*new table popup*/
+#newMCTable {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ left: calc(50% - 275px);
+ top: 40vh;
+ z-index: 999;
+ margin: 10px;
+ width: 550px;
+}
+#newMCTable .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#newMCTable .popup_close:hover {
+ color: #1e88e5;
+}
+#newMCTable .popup_close a {
+ color: lightgrey;
+}
+#newMCTable .popup_close a:hover {
+ color: #1e88e5;
+}
+#newMCTable h2,
+#newMCTable .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#newMCTable p {
+ line-height: 20px;
+}
+#newMCTable.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#newMCTable.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#newMCTable.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#newMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#newMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#newMCTable.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#newMCTable.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#newMCTable.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#newMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#newMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#newMCTable.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#newMCTable.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#newMCTable.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#newMCTable.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#newMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+/*rename table popup*/
+#renameMCTable {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ left: calc(50% - 275px);
+ top: 40vh;
+ z-index: 999;
+ margin: 10px;
+ width: 550px;
+}
+#renameMCTable .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#renameMCTable .popup_close:hover {
+ color: #1e88e5;
+}
+#renameMCTable .popup_close a {
+ color: lightgrey;
+}
+#renameMCTable .popup_close a:hover {
+ color: #1e88e5;
+}
+#renameMCTable h2,
+#renameMCTable .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#renameMCTable p {
+ line-height: 20px;
+}
+#renameMCTable.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#renameMCTable.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#renameMCTable.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#renameMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#renameMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#renameMCTable.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#renameMCTable.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#renameMCTable.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#renameMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#renameMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#renameMCTable.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#renameMCTable.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#renameMCTable.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#renameMCTable.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#renameMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+/*delete table popup*/
+#deleteMCTable {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ display: none;
+ position: fixed;
+ left: calc(50% - 275px);
+ top: 40vh;
+ z-index: 999;
+ margin: 10px;
+ width: 550px;
+}
+#deleteMCTable .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#deleteMCTable .popup_close:hover {
+ color: #1e88e5;
+}
+#deleteMCTable .popup_close a {
+ color: lightgrey;
+}
+#deleteMCTable .popup_close a:hover {
+ color: #1e88e5;
+}
+#deleteMCTable h2,
+#deleteMCTable .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#deleteMCTable p {
+ line-height: 20px;
+}
+#deleteMCTable.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#deleteMCTable.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#deleteMCTable.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#deleteMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#deleteMCTable.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#deleteMCTable.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#deleteMCTable.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#deleteMCTable.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#deleteMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#deleteMCTable.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#deleteMCTable.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#deleteMCTable.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#deleteMCTable.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#deleteMCTable.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#deleteMCTable.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+.report_element_data table.mc_table {
+ float: left;
+ width: 100%;
+}
+.report_element_data .mc_table tr td.spr {
+ cursor: auto;
+}
+.report_element_data .mc_table tr td.drophover {
+ background-color: #ffdda1 !important;
+}
+.report_element_data .mc_table tr td.empty {
+ display: none;
+}
+.report_element_data .mc_table tr.last {
+ display: none;
+}
+
+.mc_table_legend {
+ clear: none;
+ float: right;
+ border-collapse: collapse;
+ padding: 5px 10px;
+ line-height: 18px;
+ border: 1px solid grey;
+ background-color: #F9F9F7;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 09:54:11
+ Author : podkrizniku
+*/
+.mv_tbl {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ margin-bottom: 20px;
+ border-collapse: collapse;
+}
+
+.mv_value_input {
+ width: 50px;
+ text-align: right;
+ height: 1.2em;
+ margin-right: 2px;
+}
+
+.mv_text_input {
+ width: 250px;
+ height: 1.2em;
+}
+
+.mv_link_disabled {
+ color: grey;
+}
+
+.spr_sysFilter1 {
+ background-color: #dfeffb;
+}
+
+.spr_sysFilter2 {
+ background-color: #f5fafe;
+}
+
+.spr_sysFilter3 {
+ background-color: #efefef;
+}
+
+#missingProfileCoverDiv {
+ display: none;
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ right: 0px;
+ bottom: 0px;
+ z-index: 10;
+ width: 100%;
+ height: 100%;
+ background: #d5e9fa;
+ opacity: 0.4;
+}
+
+#infoMissingProfile {
+ width: 482px;
+ padding: 4px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #c8e3f8;
+ background-color: #f0f7fd;
+}
+
+/*add new mv popup*/
+#mv_add_quick {
+ position: absolute;
+ z-index: 1000;
+ top: 150px;
+ bottom: 0;
+ width: 350px;
+ height: 145px;
+ padding: 10px;
+ background-color: white;
+ border: 4px solid #c8e3f8;
+ box-shadow: 0 0 20px black;
+ -moz-box-shadow: 0 0 20px black;
+ -webkit-box-shadow: 0 0 20px black;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:24:13
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 06-Aug-2018, 10:51:54
+ Author : podkrizniku
+*/
+/*popup on icon hover*/
+#surveyInfo_msg {
+ float: left;
+ width: auto;
+ padding-right: 20px;
+}
+#surveyInfo_msg .survey_info_title {
+ float: left;
+ width: auto;
+ font-weight: 600;
+}
+#surveyInfo_msg span.space {
+ display: inline-block;
+ width: 95px;
+ padding: 2px 0px;
+ font-weight: 600;
+}
+#surveyInfo_msg .infoData {
+ margin-left: 95px;
+ width: auto;
+}
+
+#div_statistic_date_select {
+ display: none;
+ position: fixed;
+ top: 40%;
+ left: 50%;
+ margin-top: -200px;
+ margin-left: -450px;
+ min-height: 150px;
+ width: auto;
+ max-width: 650px;
+ z-index: 80;
+ padding: 10px;
+ background-color: white;
+ border: 1px solid #990000;
+}
+
+.survey_referals_tbl {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ margin-top: 8px;
+}
+.survey_referals_tbl td {
+ padding: 3px 0px;
+}
+.survey_referals_tbl th {
+ text-align: left;
+ white-space: nowrap;
+ font-weight: normal;
+ padding-right: 5px;
+}
+
+#div_statistic_float_div {
+ position: fixed;
+ width: 620px;
+ max-height: 600px;
+ z-index: 90;
+ padding: 10px;
+ border: 1px solid #990000;
+ background-color: white;
+ margin: auto auto;
+}
+#div_statistic_float_div .list {
+ margin-left: 20px;
+ padding-top: 3px;
+}
+
+.graph_db {
+ background-color: #c8e3f8;
+}
+
+#tbl_answ_state {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+}
+#tbl_answ_state th {
+ text-align: left;
+ font-weight: normal;
+ width: 40%;
+}
+#tbl_answ_state td {
+ border-left: 1px dotted silver;
+ text-align: center;
+ font-weight: normal;
+ width: 20%;
+}
+
+#tbl_answ_usability {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+}
+#tbl_answ_usability th {
+ text-align: left;
+ font-weight: normal;
+ width: 40%;
+}
+#tbl_answ_usability td {
+ border-left: 1px dotted silver;
+ text-align: center;
+ font-weight: normal;
+ width: 20%;
+}
+
+#tbl_answ_breakoff {
+ width: 100%;
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+}
+#tbl_answ_breakoff th {
+ text-align: left;
+ font-weight: normal;
+ width: 40%;
+}
+#tbl_answ_breakoff td {
+ border-left: 1px dotted silver;
+ text-align: center;
+ font-weight: normal;
+ width: 20%;
+}
+
+table.dashboard {
+ width: 100%;
+ border-collapse: separate;
+ border-spacing: 10px;
+ margin-top: 10px;
+}
+table.dashboard td {
+ width: 33.3%;
+ vertical-align: top;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+}
+table.dashboard td strong {
+ font-weight: 600;
+}
+table.dashboard th strong {
+ font-weight: 600;
+}
+
+table.dashboard_single {
+ width: 33.3%;
+}
+
+div.dashboard_cell {
+ width: auto;
+ height: 100%;
+ padding: 8px;
+}
+div.dashboard_cell table {
+ border: none;
+ width: auto;
+ border-collapse: collapse;
+ border-spacing: 0px;
+ width: 100%;
+}
+div.dashboard_cell table td {
+ border: none;
+ width: auto;
+ border-collapse: collapse;
+ border-spacing: 0px;
+ width: auto;
+}
+div.dashboard_cell .dashboard_title {
+ color: #1e88e5;
+ font-weight: 600;
+ font-size: 13px;
+}
+
+#div_statistic_info table td {
+ padding-bottom: 2px;
+}
+
+#div_statistic_answer_state table td {
+ padding-bottom: 2px;
+}
+
+.dashboard_status_span {
+ display: inline-block;
+ width: 200px;
+ padding: 2px 0px;
+}
+
+#div_statistic_status span {
+ display: inline-block;
+ padding: 2px 0px;
+}
+
+.opt_bold {
+ font-weight: 600;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:27:38
+ Author : podkrizniku
+*/
+#surveyParaGraph {
+ background-color: white;
+}
+#surveyParaGraph table tr th {
+ padding-right: 10px;
+ min-width: 150px;
+ text-align: right;
+}
+
+.graph_lb {
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:27:48
+ Author : podkrizniku
+*/
+#surveyNonresponse {
+ background-color: white;
+}
+
+#tbl_para_analitics {
+ width: 100%;
+ padding: 0px;
+ margin: 30px 0 20px 0;
+ border-spacing: 0px;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+#tbl_para_analitics tr {
+ border-top: 1px solid #c8e3f8;
+}
+#tbl_para_analitics tr td.empty_cell {
+ width: 60%;
+ background-color: white;
+ border: 1px solid white;
+ text-align: left;
+ padding: 0px;
+ padding-right: 5px;
+}
+#tbl_para_analitics tr td.empty_cell30 {
+ width: 30%;
+ background-color: white;
+ border: 1px solid white;
+ text-align: left;
+ padding: 0px;
+ padding-right: 5px;
+}
+#tbl_para_analitics tr td.delta {
+ width: 20px;
+ background-color: #f8f8f8;
+}
+#tbl_para_analitics tr.floatingHeader {
+ border-bottom: 1px solid #c8e3f8;
+}
+#tbl_para_analitics th {
+ padding: 8px;
+ border-right: 1px solid #c8e3f8;
+ text-align: center;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+#tbl_para_analitics td {
+ padding: 8px;
+ border-right: 1px solid #c8e3f8;
+ text-align: center;
+ color: black;
+ background-color: #f5fafe;
+}
+#tbl_para_analitics td:first-child {
+ color: #1e88e5;
+ font-weight: bold;
+ text-align: left;
+}
+#tbl_para_analitics td.showQuestion {
+ text-align: left;
+}
+#tbl_para_analitics tr.multiGroupHeader td {
+ text-align: left;
+}
+#tbl_para_analitics tr.multiVariablesHeader {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_para_analitics tr.multiVariablesHeader td {
+ text-align: left;
+}
+#tbl_para_analitics tr.subVar {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_para_analitics tr.subVar td {
+ background-color: #f8f8f8;
+}
+#tbl_para_analitics tr.subVar td:first-child {
+ font-weight: normal;
+ text-indent: 10px;
+}
+#tbl_para_analitics tr.percent {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_para_analitics tr.percent td {
+ font-weight: normal;
+ text-indent: 0px;
+ text-align: center;
+ color: grey;
+}
+
+#tbl_para_analitics.graph {
+ width: 40%;
+}
+#tbl_para_analitics.graph th {
+ padding: 3px;
+ border-right: 1px solid #c8e3f8;
+ text-align: center;
+}
+#tbl_para_analitics.graph td {
+ padding: 3px;
+ border-right: 1px solid #c8e3f8;
+ text-align: center;
+}
+
+#tbl_para_analitics.graph.showGraph {
+ width: 100%;
+}
+
+.para_analitics_bar {
+ margin-left: 10px;
+ height: 1.8em;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+.para_analitics_bar.null_value {
+ margin-left: 10px;
+ height: 1.8em;
+ background-color: white;
+ border: none;
+ border-left: 1px solid #c8e3f8;
+}
+
+#nonresponse_info {
+ position: relative;
+ display: inline-block;
+ float: left;
+ width: auto;
+ padding: 2px 20px 2px 0px !important;
+ margin: 7px 0 0 0;
+ font-weight: 500;
+ color: #333;
+}
+#nonresponse_info a {
+ color: #1e88e5;
+}
+#nonresponse_info a:hover {
+ color: #ffa608;
+}
+
+td.para_page_break {
+ border-left: 1px solid white !important;
+ border-right: 1px solid white !important;
+ background-color: white !important;
+}
+td.para_page_break span {
+ display: inline-block;
+ width: 100%;
+ height: 16px;
+ padding-left: 5px;
+ background: url("../../../admin/survey/img_0/sprites_pb_expanded.png") no-repeat 100px 10px;
+ color: #1e88e5;
+ font-size: 14px;
+ font-weight: bold;
+ height: 20px;
+ line-height: 20px;
+ margin-top: 0;
+}
+
+table#para_settings th:not(.spacer) {
+ vertical-align: top;
+ text-align: left;
+ padding: 5px 10px;
+}
+table#para_settings td:not(.spacer) {
+ vertical-align: top;
+ text-align: left;
+ padding: 5px 10px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:00
+ Author : podkrizniku
+*/
+#surveyUsableResp {
+ background-color: white;
+}
+
+#usable_table {
+ position: relative;
+ margin-top: 50px;
+}
+
+#tbl_usable_respondents {
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+#tbl_usable_respondents tr {
+ border-top: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr td.all {
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #166dba;
+}
+#tbl_usable_respondents tr th.all {
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #166dba;
+}
+#tbl_usable_respondents tr td.calculation {
+ border-left: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr th.calculation {
+ border-left: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr td.unusable {
+ border-right: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr th.unusable {
+ border-right: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr td.empty_cell {
+ width: 60%;
+ background-color: white;
+ border: 1px solid white;
+ text-align: left;
+ padding: 0px;
+ padding-right: 5px;
+}
+#tbl_usable_respondents tr td.usable {
+ font-weight: 600;
+ border-left: 1px solid #166dba;
+ border-right: 1px solid #166dba;
+}
+#tbl_usable_respondents tr th.usable {
+ font-weight: 600;
+ border: 1px solid #166dba !important;
+}
+#tbl_usable_respondents tr:last-child td.usable {
+ border-bottom: 1px solid #166dba !important;
+}
+#tbl_usable_respondents tr:last-child td.data {
+ border-bottom: 1px solid #166dba;
+}
+#tbl_usable_respondents tr:nth-last-child(2) td.status {
+ border-bottom: 1px solid #166dba !important;
+}
+#tbl_usable_respondents tr td.data {
+ border-left: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents tr th.data {
+ border-top: 1px solid #166dba;
+ border-bottom: 1px solid #166dba;
+ border-left: 1px solid #166dba;
+}
+#tbl_usable_respondents tr td.data.sum {
+ border-left: 1px solid #166dba;
+ border-right: 1px solid #166dba;
+}
+#tbl_usable_respondents tr td.status {
+ border-left: 1px solid #166dba !important;
+ border-right: 1px solid #166dba;
+}
+#tbl_usable_respondents tr.floatingHeader {
+ border-bottom: 1px solid #c8e3f8;
+}
+#tbl_usable_respondents th {
+ padding: 3px;
+ text-align: center;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+#tbl_usable_respondents th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+#tbl_usable_respondents td {
+ padding: 3px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+}
+#tbl_usable_respondents tr.colored td {
+ background-color: white;
+}
+#tbl_usable_respondents tr.multiGroupHeader td {
+ text-align: left;
+}
+#tbl_usable_respondents tr.multiVariablesHeader {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_usable_respondents tr.multiVariablesHeader td {
+ color: grey;
+}
+#tbl_usable_respondents tr.subVar {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_usable_respondents tr.subVar td {
+ background-color: #f8f8f8;
+}
+#tbl_usable_respondents tr.subVar td:first-child {
+ font-weight: normal;
+ text-indent: 10px;
+}
+#tbl_usable_respondents tr.percent {
+ border-top: 1px dotted #c8e3f8;
+}
+#tbl_usable_respondents tr.percent td {
+ font-weight: normal;
+ text-indent: 0px;
+ text-align: center;
+ color: grey;
+}
+#tbl_usable_respondents tr.partusable td {
+ background-color: #FFFFE3 !important;
+}
+#tbl_usable_respondents tr.unusable td {
+ background-color: #FFE8E8 !important;
+}
+
+#usable_respondents_settings {
+ margin: 0px 15px;
+}
+#usable_respondents_settings input {
+ color: #1e88e5 !important;
+ font-weight: 600;
+}
+
+.usable_sum {
+ position: absolute;
+ top: -50px;
+ padding: 5px 10px 5px 0;
+}
+.usable_sum .usable_legend {
+ display: inline-block;
+ padding: 3px 7px;
+ border: 1px #aaa solid;
+}
+.usable_sum .usable_legend:first-of-type {
+ margin-left: 0 !important;
+}
+
+#usable_info {
+ position: relative;
+ display: inline-block;
+ width: auto;
+ padding: 2px 40px 2px 0px !important;
+ margin: 7px 0 0 0;
+ font-weight: 600;
+ color: #333;
+}
+#usable_info a {
+ color: #1e88e5;
+}
+#usable_info a:hover {
+ color: #ffa608;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:11
+ Author : podkrizniku
+*/
+#surveySpeederIndex {
+ background-color: white;
+}
+
+#speeder_table {
+ position: relative;
+ margin-top: 55px;
+ position: relative;
+ margin-top: 0px;
+}
+
+#tbl_speeder {
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+#tbl_speeder tr {
+ border-top: 1px solid #c8e3f8;
+}
+#tbl_speeder tr.floatingHeader {
+ border-bottom: 1px solid #c8e3f8;
+}
+#tbl_speeder th {
+ padding: 3px 8px;
+ text-align: center;
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #c8e3f8;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+#tbl_speeder th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+#tbl_speeder td {
+ padding: 3px 8px;
+ text-align: center;
+ border-left: 1px solid #c8e3f8;
+ border-right: 1px solid #c8e3f8;
+ color: black;
+ background-color: #f8f8f8;
+}
+#tbl_speeder tr.colored td {
+ background-color: white;
+}
+#tbl_speeder tr.speeder td {
+ background-color: #FFE8E8 !important;
+}
+#tbl_speeder tr.no_speeder td {
+ background-color: white !important;
+}
+
+.speeder_leg {
+ padding: 5px 10px 5px 0;
+ margin: 10px 0 10px;
+}
+.speeder_leg .speeder_legend {
+ display: inline-block;
+ padding: 3px 7px;
+ border: 1px #aaa solid;
+}
+.speeder_leg .speeder_legend:first-of-type {
+ margin-left: 0 !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:25
+ Author : podkrizniku
+*/
+#surveyTextAnalysis {
+ background-color: white;
+}
+
+.text_analysis_table {
+ position: relative;
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 0 20px 40px 0;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+.text_analysis_table tr {
+ border-top: 1px solid #c8e3f8;
+}
+.text_analysis_table th {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ border: 1px solid #c8e3f8;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+.text_analysis_table th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+.text_analysis_table td {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+}
+.text_analysis_table tr.white td {
+ background-color: white;
+}
+.text_analysis_table tr.sum td {
+ background-color: #f5fafe;
+ font-weight: 600;
+}
+.text_analysis_table tr.colored td {
+ background-color: #f5fafe;
+ font-weight: 600;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:41
+ Author : podkrizniku
+*/
+#surveyGeoIPLocation {
+ background-color: white;
+}
+
+.geoip_table {
+ position: relative;
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 15px 0 30px 0px;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+.geoip_table tr {
+ border-top: 1px solid #c8e3f8;
+}
+.geoip_table th {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+.geoip_table th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+.geoip_table td {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+}
+.geoip_table tr.white td {
+ background-color: white;
+}
+.geoip_table tr.country td {
+ background-color: #f5fafe;
+ font-weight: 600;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:50
+ Author : podkrizniku
+*/
+#surveyEditsAnalysis {
+ background-color: white;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 14:28:59
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 09-Aug-2018, 15:10:12
+ Author : podkrizniku
+*/
+#surveyReminderTracking {
+ background-color: white;
+}
+
+.reminder_tracking_table {
+ position: relative;
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 0 0 40px 0;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+.reminder_tracking_table tr {
+ border-top: 1px solid #c8e3f8;
+}
+.reminder_tracking_table th {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+.reminder_tracking_table th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+.reminder_tracking_table td {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+}
+.reminder_tracking_table tr.white td {
+ background-color: white;
+}
+.reminder_tracking_table tr.sumSprozenih td {
+ background-color: #f5fafe;
+ font-weight: 600;
+ border-top: 5px solid #c8e3f8;
+}
+.reminder_tracking_table tr.sum td {
+ background-color: #f5fafe;
+ font-weight: 600;
+}
+.reminder_tracking_table tr.colored td {
+ background-color: #f5fafe;
+ font-weight: 500;
+ border-top: 5px solid #c8e3f8;
+}
+.reminder_tracking_table td.sprozenaOpozorila {
+ font-weight: 500;
+ background-color: #f5fafe;
+ border-top: 0px !important;
+}
+.reminder_tracking_table th.sprozenaOpozorila {
+ font-weight: 500;
+ background-color: #f5fafe;
+ border-top: 0px !important;
+}
+.reminder_tracking_table td.sprozenaOpozorilaLine {
+ font-weight: 500;
+ border-left: 5px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-top: 0px !important;
+}
+.reminder_tracking_table th.sprozenaOpozorilaLine {
+ font-weight: 500;
+ border-left: 5px solid #c8e3f8;
+ background-color: #f5fafe;
+ border-top: 0px !important;
+}
+
+.redCell {
+ background-color: red !important;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 21-Aug-2018, 16:17:20
+ Author : podkrizniku
+*/
+/*right options*/
+#div_status_filtri_right {
+ white-space: nowrap;
+ position: absolute;
+ top: 0;
+ right: 15px;
+ width: auto;
+ min-height: 20px;
+ height: auto;
+ padding: 10px;
+ text-align: left;
+ font-size: 13px;
+}
+#div_status_filtri_right ul li {
+ display: inline;
+ margin-right: 5px;
+}
+#div_status_filtri_right ul li span.gray {
+ color: #1e88e5 !important;
+}
+#div_status_filtri_right ul li span.gray:hover {
+ color: #ffa608 !important;
+}
+
+div.status_advanced {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ align-content: flex-start;
+ justify-content: flex-start;
+ align-items: auto;
+}
+
+div.status_advanced_box {
+ display: flex;
+ border: 1px solid #c8e3f8;
+ background-color: #f5fafe;
+ align-items: center;
+ justify-content: center;
+ margin: 10px;
+ padding: 20px;
+ font-size: 16px;
+ flex: 0 1 21%;
+ white-space: nowrap;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 12:45:26
+ Author : podkrizniku
+*/
+.ui-resizable {
+ position: relative;
+ padding: 0px;
+ margin: 0px;
+}
+
+.ui-resizable-handle {
+ position: absolute;
+ font-size: 0.1px;
+ z-index: 99999;
+ display: block;
+}
+
+.ui-resizable-disabled .ui-resizable-handle {
+ display: none;
+}
+
+.ui-resizable-autohide .ui-resizable-handle {
+ display: none;
+}
+
+.ui-resizable-n {
+ cursor: n-resize;
+ height: 7px;
+ width: 100%;
+ top: -5px;
+ left: 0px;
+}
+
+.ui-resizable-s {
+ cursor: s-resize;
+ height: 7px;
+ width: 100%;
+ bottom: -5px;
+ left: 0px;
+}
+
+.ui-resizable-e {
+ cursor: e-resize;
+ width: 7px;
+ right: -5px;
+ top: 0px;
+ height: 100%;
+}
+
+.ui-resizable-w {
+ cursor: w-resize;
+ width: 7px;
+ left: -5px;
+ top: 0px;
+ height: 100%;
+}
+
+.ui-resizable-se {
+ cursor: se-resize;
+ width: 12px;
+ height: 12px;
+ right: 1px;
+ bottom: 1px;
+}
+
+.ui-resizable-sw {
+ cursor: sw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ bottom: -5px;
+}
+
+.ui-resizable-nw {
+ cursor: nw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ top: -5px;
+}
+
+.ui-resizable-ne {
+ cursor: ne-resize;
+ width: 9px;
+ height: 9px;
+ right: -5px;
+ top: -5px;
+}
+
+.ui-datepicker-trigger {
+ cursor: pointer;
+ margin-left: 7px;
+ padding: 0px;
+ color: #1e88e5;
+ border: none;
+ background: none;
+}
+.ui-datepicker-trigger:hover {
+ color: #ffa608;
+}
+
+canvas.mapster_el {
+ top: 15px !important;
+}
+
+img.mapster_el {
+ position: absolute;
+ top: 15px !important;
+}
+
+.jquery-selectbox {
+ cursor: pointer;
+ padding: 3px 0px 1px 6px !important;
+ margin: -2px 0 0 0 !important;
+ font-size: 12px !important;
+ color: #333 !important;
+ background-color: white;
+ border: 1px #c8e3f8 solid !important;
+ border-radius: 4px 0px 0px 4px;
+ -moz-border-radius: 4px 0px 0px 4px;
+ -webkit-border-radius: 4px 0px 0px 4px;
+}
+.jquery-selectbox .jquery-selectbox-list {
+ top: 21px !important;
+ min-width: 180px;
+}
+.jquery-selectbox .jquery-selectbox-currentItem {
+ padding: 0 !important;
+ margin: 0 !important;
+ line-height: 14px;
+}
+.jquery-selectbox .jquery-selectbox-moreButton {
+ font-family: "Font Awesome 5 Free";
+ margin-top: -3px !important;
+ height: 18px !important;
+ width: 15px !important;
+ background-image: none !important;
+ background-color: #ddd !important;
+ border: 1px #aaa solid;
+}
+.jquery-selectbox .jquery-selectbox-moreButton::before {
+ content: "";
+ padding-left: 3px;
+ color: #333;
+ font-size: 10px;
+ font-weight: 900;
+ line-height: 17px;
+}
+.jquery-selectbox .jquery-selectbox-item {
+ padding: 3px 6px 5px 6px !important;
+ margin: 0 !important;
+ line-height: 14px;
+}
+.jquery-selectbox .jquery-selectbox-item.listelementhover {
+ cursor: pointer;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 12:55:20
+ Author : podkrizniku
+*/
+.secondNavigation .inv_ff_left_on {
+ width: auto;
+ height: 19px;
+ padding: 0px;
+ border-top: 1px solid #166dba;
+ border-bottom: 1px solid #166dba;
+ border-top: 1px solid grey;
+ border-bottom: 1px solid grey;
+ padding: 0px 2px;
+ background-color: white;
+ color: grey;
+ font-weight: bold;
+ line-height: 19px;
+ vertical-align: middle;
+ text-align: center;
+ display: inline-block;
+ background-color: #efefef;
+ margin: 0px;
+ padding: 0px;
+ background: #fff url("../../../admin/survey/img_0/navigation/nav-control-bg2.png") no-repeat top center;
+ width: 12px;
+ border-bottom: 1px solid white;
+ background: #fff url("../../../admin/survey/img_0/navigation/nav-control-bg2_on_left.png") no-repeat top center;
+}
+.secondNavigation .inv_ff_right_on {
+ width: auto;
+ height: 19px;
+ padding: 0px;
+ border-top: 1px solid #166dba;
+ border-bottom: 1px solid #166dba;
+ border-top: 1px solid grey;
+ border-bottom: 1px solid grey;
+ padding: 0px 2px;
+ background-color: white;
+ color: grey;
+ font-weight: bold;
+ line-height: 19px;
+ vertical-align: middle;
+ text-align: center;
+ display: inline-block;
+ background-color: #efefef;
+ margin: 0px;
+ padding: 0px;
+ background: #fff url("../../../admin/survey/img_0/navigation/nav-control-bg2.png") no-repeat top center;
+ width: 12px;
+ background: #fff url("../../../admin/survey/img_0/navigation/nav-control-bg2_on_right.png") no-repeat top center;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 10-Aug-2018, 13:58:09
+ Author : podkrizniku
+*/
+#survey_respondents {
+ width: auto;
+ min-height: 350px;
+ padding: 10px;
+}
+
+.respondent_profile_holder {
+ float: left;
+ width: 200px;
+ height: 290px;
+ border: 1px solid #c8e3f8;
+ margin: 0px;
+}
+
+#respondent_profiles {
+ height: 290px;
+ overflow: auto;
+ cursor: pointer;
+}
+#respondent_profiles .option {
+ padding: 1px;
+}
+#respondent_profiles .active {
+ background-color: #061d31;
+ color: white;
+ border-bottom: 1px solid grey;
+}
+
+#respondent_profile_values {
+ float: left;
+ width: 510px;
+ margin: 0px;
+ display: block;
+ height: 330px;
+ margin-left: 10px;
+}
+
+#respondent_profile_value_text {
+ width: 403px;
+ height: 245px;
+ border: 1px solid #c8e3f8;
+ overflow: auto;
+}
+
+#respondent_profile_variables_box {
+ float: left;
+ width: auto;
+}
+
+#respondent_profile_variables {
+ width: 400px;
+}
+
+#respondent_new_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+#respondent_rename_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+#respondent_delete_dialog {
+ position: absolute;
+ left: 300px;
+ top: 250px;
+ border: 1px solid #990000;
+ z-index: 120;
+ background-color: white;
+ padding: 10px;
+ margin: 10px;
+ width: 550px;
+ display: none;
+}
+
+#respondent_profile_right {
+ float: left;
+ width: 450px;
+ height: auto;
+ margin-left: 10px;
+}
+
+#respondent_profile_notes {
+ padding: 5px;
+ margin: 0px;
+ margin-bottom: 10px;
+ line-height: 14px;
+ color: black;
+ font-size: 11px;
+ border: 1px solid #ffa608;
+ background-color: #fff0d4;
+ width: 100%;
+}
+#respondent_profile_notes ul {
+ list-style: square inside;
+ margin: 0px;
+ padding: 0px;
+}
+#respondent_profile_notes li {
+ padding-bottom: 5px;
+}
+
+#respondent_profile_upload {
+ padding: 5px;
+ margin: 0px;
+ color: black;
+ border: 1px solid #efefef;
+ width: 100%;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 14-Aug-2018, 13:57:23
+ Author : podkrizniku
+*/
+.slide_sett_option {
+ margin: 2px;
+}
+
+.slide_sett_option_lbl {
+ width: 240px;
+ display: table-cell;
+ float: left;
+ text-align: right;
+ font-weight: 600;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 17-Aug-2018, 09:13:29
+ Author : podkrizniku
+*/
+.time_span_container {
+ position: relative;
+ height: 200px;
+ width: 95%;
+ margin-bottom: 50px;
+ border: 1px solid lightgrey;
+}
+
+.time_span_header {
+ clear: both;
+}
+
+.time_span {
+ background-color: grey;
+ width: 1px;
+ display: inline-block;
+ vertical-align: bottom;
+}
+
+/*
+ Created on : 30-Jan-2020
+ Author : Peter Hrvatin
+*/
+/* Okno za obvestilo, da je funkcionalnost onemogocena in je potrebno kupiti paket */
+.user_access_warning {
+ align-self: flex-start;
+ float: left;
+ padding: 10px 20px 20px 20px;
+ margin: 10px 0;
+ background: none repeat scroll 0 0 #f5fafe;
+ border: 1px solid #1e88e5;
+ background-color: #faf5fe;
+ border: 1px solid #921ee5;
+}
+.user_access_warning p {
+ font-size: 13px;
+ font-weight: 500;
+}
+.user_access_warning div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+.user_access_warning div.buttonwrapper a:hover {
+ background-color: #be79f0;
+}
+
+/* Text za obvestilo, da je funkcionalnost onemogocena in je potrebno kupiti paket */
+p.user_access_warning_text {
+ padding: 10px;
+ margin: 0;
+ color: #921ee5;
+ font-style: italic;
+}
+
+#topLine2 .upgrade_package {
+ display: inline-block;
+ margin-left: 30px;
+ vertical-align: 4px;
+}
+#topLine2 .upgrade_package div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#topLine2 .upgrade_package div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+
+#enka_nav .upgrade_package {
+ display: inline-block;
+ margin: 0 30px 0 0;
+ vertical-align: middle;
+}
+#enka_nav .upgrade_package div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#enka_nav .upgrade_package div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+
+#toolbox_basic > p.user_access_locked {
+ opacity: 0.8;
+ background-color: #921ee5;
+}
+#toolbox_basic > p.user_access_locked:hover {
+ background-color: #8418d1;
+}
+
+#toolbox_add_advanced .user_access_locked {
+ color: #921ee5;
+}
+
+#secondNavigation_links #hover_export a.user_access_locked,
+.analysis_bottom_settings a.user_access_locked {
+ color: #921ee5;
+}
+#secondNavigation_links #hover_export a.user_access_locked:hover,
+.analysis_bottom_settings a.user_access_locked:hover {
+ color: #be79f0;
+}
+#secondNavigation_links #hover_export a.user_access_locked:hover span.faicon,
+.analysis_bottom_settings a.user_access_locked:hover span.faicon {
+ color: #be79f0 !important;
+}
+#secondNavigation_links #hover_export a.user_access_locked span.faicon,
+.analysis_bottom_settings a.user_access_locked span.faicon {
+ color: #921ee5 !important;
+}
+
+span.faicon.user_access_locked,
+a.faicon.user_access_locked,
+a.user_access_locked,
+a.user_access_locked span,
+span.faicon.user_access_locked::before,
+label.user_access_locked,
+#branching li.spr_editing div.spr_edit a.faicon.user_access_locked {
+ color: #921ee5 !important;
+}
+span.faicon.user_access_locked:hover,
+a.faicon.user_access_locked:hover,
+a.user_access_locked:hover,
+a.user_access_locked span:hover,
+span.faicon.user_access_locked::before:hover,
+label.user_access_locked:hover,
+#branching li.spr_editing div.spr_edit a.faicon.user_access_locked:hover {
+ color: #be79f0 !important;
+}
+
+.variabla span.inline.faicon.user_access_locked::before {
+ color: #e0bef7 !important;
+}
+
+.variabla span.inline.faicon.user_access_locked:hover::before {
+ color: #921ee5 !important;
+}
+
+#analiza_right_options.user_access_locked #div_analiza_filtri_right ul li span {
+ color: #921ee5 !important;
+}
+#analiza_right_options.user_access_locked #div_analiza_filtri_right ul li span:hover {
+ color: #be79f0 !important;
+}
+
+#folderSwitch.user_access_locked {
+ color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#folderSwitch.user_access_locked:hover {
+ background-color: #fcf9fe;
+}
+
+.user_narocila_popup {
+ z-index: 99;
+ display: none;
+ width: 500px;
+}
+.user_narocila_popup .edit_narocilo_content {
+ display: flex;
+ flex-direction: column;
+}
+.user_narocila_popup .edit_narocilo_content .form_holder {
+ padding-bottom: 30px;
+ line-height: 24px;
+}
+.user_narocila_popup .edit_narocilo_content .edit_narocilo_segment {
+ display: flex;
+ flex-direction: column;
+ margin-bottom: 20px;
+ padding: 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+.user_narocila_popup .edit_narocilo_content .edit_narocilo_segment .edit_narocilo_line .nastavitveSpan5 {
+ width: 30%;
+}
+.user_narocila_popup .edit_narocilo_content .buttons_holder {
+ width: 100%;
+}
+
+#narocila .data {
+ margin-top: 6px;
+ font-size: 13px;
+}
+#narocila .data span.setting_title {
+ float: left;
+ width: 150px;
+ padding-right: 10px;
+ text-align: right;
+}
+#narocila a.ovalbutton {
+ line-height: 18px;
+}
+#narocila .narocila_filters {
+ margin-bottom: 15px;
+}
+#narocila .narocila_filters label {
+ margin-right: 10px;
+}
+#narocila table.dataTable.user_narocila_admin {
+ padding: 20px 0;
+}
+@media screen and (max-width: 700px) {
+ #narocila table.dataTable.user_narocila_admin tr.red_bg {
+ /*background-color: #eecccc;*/
+ }
+ #narocila table.dataTable.user_narocila_admin tr.green_bg {
+ background-color: #ddeedd;
+ }
+ #narocila table.dataTable.user_narocila_admin tr.black_bg {
+ background-color: #eeeeee;
+ }
+}
+#narocila table.dataTable.user_narocila_admin td:nth-child(1),
+#narocila table.dataTable.user_narocila_admin td:nth-child(n+4) {
+ text-align: center;
+}
+#narocila table.user_narocila {
+ max-width: 1200px;
+ padding: 0px;
+ margin: 20px 0 5px 10px;
+ font-size: 13px;
+ color: #404040;
+ border-collapse: collapse;
+}
+#narocila table.user_narocila tr th {
+ padding: 5px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ text-align: center;
+ font-weight: 600;
+ background-color: #c8e3f8;
+}
+#narocila table.user_narocila tr td {
+ padding: 5px 10px;
+ min-width: 80px;
+ border: 1px solid lightgrey;
+ background-color: #f5fafe;
+ text-align: center;
+}
+
+#placila table.user_placila_admin {
+ padding: 20px 0;
+}
+#placila table.user_placila_admin td {
+ text-align: center;
+}
+#placila .buttons_holder {
+ height: 30px;
+ margin-top: 20px;
+}
+#placila a.ovalbutton {
+ line-height: 18px;
+}
+
+.user_placila_popup {
+ z-index: 99;
+ display: none;
+ width: 500px;
+}
+.user_placila_popup .edit_placilo_content {
+ display: flex;
+ flex-direction: column;
+}
+.user_placila_popup .edit_placilo_content .form_holder {
+ padding-bottom: 30px;
+ line-height: 24px;
+}
+.user_placila_popup .edit_placilo_content .edit_placilo_segment {
+ display: flex;
+ flex-direction: column;
+ margin-bottom: 20px;
+ padding: 10px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+.user_placila_popup .edit_placilo_content .edit_placilo_segment .edit_placilo_line .nastavitveSpan5 {
+ width: 20%;
+}
+.user_placila_popup .edit_placilo_content .edit_placilo_segment textarea {
+ width: 70%;
+}
+.user_placila_popup .edit_placilo_content .edit_placilo_segment input {
+ width: 180px;
+}
+.user_placila_popup .edit_placilo_content .buttons_holder {
+ width: 100%;
+ margin-top: 0px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 09:55:21
+ Author : podkrizniku
+*/
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 09:55:31
+ Author : podkrizniku
+*/
+.styled_table {
+ position: relative;
+ border-spacing: 0px;
+ table-layout: fixed;
+ padding: 0px;
+ margin: 15px 0 30px 10px;
+ border-collapse: collapse;
+ border: 1px solid #c8e3f8;
+ border-top: none;
+}
+.styled_table tr {
+ border-top: 1px solid #c8e3f8;
+}
+.styled_table th {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+ color: black;
+ background-color: #f5fafe;
+ font-weight: normal;
+}
+.styled_table th span {
+ vertical-align: middle;
+ margin-left: 3px;
+}
+.styled_table td {
+ padding: 5px 10px;
+ text-align: center;
+ color: black;
+ background-color: #f8f8f8;
+ border: 1px solid #c8e3f8;
+}
+.styled_table tr.white td {
+ background-color: white;
+}
+.styled_table tr.dark td {
+ background-color: #f5fafe;
+ font-weight: 600;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 20-Aug-2018, 11:47:59
+ Author : podkrizniku
+*/
+#hierarhija-opcije-vklopa .button_gray {
+ cursor: not-allowed;
+ background-color: #aaa;
+}
+#hierarhija-opcije-vklopa #error {
+ display: none;
+ padding: 10px 10px 0;
+ color: #ffa608;
+}
+#hierarhija-opcije-vklopa #hierarhija-knjiznica {
+ display: none;
+ border: 1px dashed #aaa;
+ padding: 8px 11px 20px;
+ margin: 15px 20px;
+}
+#hierarhija-opcije-vklopa #hierarhija-prevzeta {
+ display: none;
+ padding: 0px 10px;
+}
+
+#toolbox_basic.toolbox-hierarhija {
+ height: 208px;
+}
+#toolbox_basic.toolbox-hierarhija > #locked_toolbar {
+ height: 136px;
+ padding: 50px 0 0 3px;
+}
+
+#sa-users-table {
+ width: 100%;
+ text-align: center;
+ border-spacing: 0;
+}
+#sa-users-table .text-left {
+ text-align: left;
+}
+#sa-users-table .text-right {
+ text-align: left;
+}
+#sa-users-table th {
+ font-weight: semibold;
+ color: #404040;
+ text-transform: uppercase;
+ background-color: #efefef;
+ padding: 7px;
+}
+#sa-users-table tr {
+ border-top: 1px solid #efefef;
+}
+#sa-users-table tr:hover {
+ background: rgba(239, 242, 247, 0.38);
+}
+#sa-users-table tr:hover .akcija a {
+ display: inline;
+}
+#sa-users-table td {
+ padding: 7px;
+}
+#sa-users-table .akcija {
+ color: #061d31;
+ width: 220px;
+}
+#sa-users-table .akcija a {
+ display: none;
+ padding: 0 10px;
+ border-right: 1px solid #aaa;
+}
+#sa-users-table .akcija a:last-child {
+ border-right: none;
+}
+
+/*included in uper popup*/
+.hierarhija-aktivacija-seznam-uporabnikov {
+ padding: 10px 0;
+}
+.hierarhija-aktivacija-seznam-uporabnikov ul {
+ margin: 5px -8px;
+}
+
+#globalSetingsList #hierarhija-opcije-vklopa {
+ display: none;
+ padding-top: 30px !important;
+}
+#globalSetingsList #hierarhija-opcije-vklopa > h4 {
+ padding: 0 !important;
+ color: #1e88e5;
+}
+#globalSetingsList #hierarhija-opcije-vklopa > label {
+ display: block;
+ padding-top: 15px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Aug-2018, 09:42:05
+ Author : podkrizniku
+*/
+.aapor_table {
+ border: 1px;
+}
+
+.input_aapor {
+ width: 60px;
+ margin-left: 5px;
+}
+
+.read_aapor {
+ width: 60px;
+ background-color: #efefef;
+ margin-left: 40px;
+}
+
+.main_aapor {
+ width: 60px;
+ background-color: #efefef;
+}
+
+.main_title_aapor {
+ margin-left: 5px;
+ margin-right: 30px;
+}
+
+.category_span {
+ margin-left: 20px;
+}
+
+.subcategory1_span {
+ margin-left: 40px;
+}
+
+.subcategory2_span {
+ margin-left: 60px;
+}
+
+#according {
+ max-width: 600px;
+}
+#according .ui-accordion-content {
+ max-height: 400px;
+}
+
+#totalSub {
+ margin-top: 40px;
+}
+#totalSub td {
+ font-weight: bold;
+}
+
+.totalSubTd {
+ float: right;
+}
+
+.totalSubSpan {
+ margin-left: 40px;
+}
+
+.totalSubDatabaseSpan {
+ margin-left: 40px;
+}
+
+.aaporButton {
+ float: right;
+}
+
+.aaporSpace {
+ height: 20px;
+}
+
+.show_calculation {
+ margin-left: 40px;
+}
+.show_calculation td {
+ height: 50px;
+ min-width: 100px;
+ font-weight: bold;
+}
+
+.aapor_e {
+ font-weight: bold;
+ font-size: 14px;
+ color: #990000;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 03-Aug-2018, 14:03:58
+ Author : podkrizniku
+*/
+#srv_diagnostic {
+ min-height: 500px;
+}
+#srv_diagnostic H2 {
+ margin: 15px 0px 0px 0px;
+ padding: 0px;
+ font-size: 15px;
+}
+#srv_diagnostic span.srv_diagnostic_gray {
+ display: inline-block;
+ font-size: 12px;
+ color: grey;
+}
+#srv_diagnostic span.srv_diagnostic_note {
+ display: inline-block;
+ margin-left: 5px;
+ margin-bottom: 15px;
+ padding: 5px 10px;
+ font-size: 15px;
+ background-color: #f5fafe;
+ border: 1px solid #c8e3f8;
+}
+
+#srv_diagnostic_results {
+ display: inline-block;
+ width: auto !important;
+ margin: 0px;
+ margin-bottom: 0px;
+ margin-left: 5px;
+ padding: 0px;
+ padding: 10px;
+ font-size: 13px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ width: 700px !important;
+}
+#srv_diagnostic_results span.srv_diagnostic_element {
+ font-size: 13px;
+ display: inline-block;
+ margin: 0px 10px 10px 10px;
+}
+#srv_diagnostic_results span.srv_diagnostic_element strong {
+ margin: 0px 5px;
+ font-size: 12px;
+}
+#srv_diagnostic_results span.srv_diagnostic_element span.orange {
+ color: #ffa608;
+ font-weight: 600;
+}
+#srv_diagnostic_results span.srv_diagnostic_element span.red {
+ font-weight: 600;
+}
+#srv_diagnostic_results span.srv_diagnostic_element span.green {
+ font-weight: 600;
+}
+#srv_diagnostic_results table.srv_diagnostic_results {
+ width: 100%;
+}
+#srv_diagnostic_results table.srv_diagnostic_results td + td {
+ width: 170px !important;
+ text-align: center;
+}
+#srv_diagnostic_results table.srv_diagnostic_results th + th {
+ text-align: center;
+}
+
+#srv_diagnostic_results_right {
+ display: inline-block;
+ width: auto !important;
+ margin: 0px;
+ margin-bottom: 0px;
+ margin-left: 5px;
+ padding: 0px;
+ padding: 10px;
+ font-size: 13px;
+ background: #f5fafe;
+ border: 1px solid #c8e3f8;
+ margin-left: 15px;
+}
+#srv_diagnostic_results_right .srv_diagnostic_results {
+ min-width: 370px;
+}
+
+.srv_diagnostic_results td {
+ font-size: 14px;
+ padding: 3px 5px;
+ text-align: left;
+}
+.srv_diagnostic_results td span.orange {
+ color: #ffa608;
+}
+.srv_diagnostic_results th {
+ font-size: 14px;
+ padding: 3px 5px;
+ text-align: left;
+}
+
+table.srv_diagnostic_results span.gray a {
+ color: grey;
+ font-style: italic;
+ white-space: nowrap;
+}
+
+.srv_diagnostic_total_sub {
+ margin-left: 40px;
+ font-weight: bold;
+}
+
+.srv_diagnostic_total_sub_label {
+ font-weight: bold;
+}
+
+.srv_diagnostic_total_survey_label {
+ font-weight: bold;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Aug-2018, 15:41:37
+ Author : podkrizniku
+*/
+.theme_header {
+ font-weight: 600;
+ font-size: 16px;
+ color: #1e88e5;
+}
+.theme_header .bold {
+ padding-right: 30px;
+ color: #ee9800;
+}
+.theme_header a {
+ padding-right: 20px;
+}
+
+#div_theme_groups {
+ display: inline-block;
+ width: 100%;
+ vertical-align: middle;
+}
+
+#div_theme_group_holder {
+ display: block;
+ clear: both;
+ height: auto;
+}
+
+#div_theme_group div.theme_label {
+ display: inline-block;
+ margin: 10px 20px;
+}
+#div_theme_group div.theme_label .theme_label_content {
+ cursor: pointer;
+ margin: 0 5px;
+ padding: 5px 5px 15px 5px;
+ font-size: 13px;
+ text-transform: uppercase;
+ background-color: #dfeffb;
+ border: none;
+}
+#div_theme_group div.theme_label .theme_label_content img {
+ display: block;
+ clear: both;
+ width: 200px;
+ height: 150px;
+ margin-bottom: 4px;
+ border: none;
+}
+#div_theme_group div.theme_label .theme_label_content span.theme_name a.help {
+ float: none !important;
+ padding: 0px !important;
+ white-space: normal !important;
+}
+#div_theme_group div.theme_label .theme_label_content:hover {
+ color: #404040;
+ background-color: #c8e3f8;
+ border: none;
+}
+#div_theme_group div.theme_label a {
+ padding: 5px;
+ float: left;
+}
+#div_theme_group div.theme_label a.theme_links_preview {
+ float: right;
+}
+#div_theme_group div.theme_label a.theme_delete {
+ float: right;
+}
+#div_theme_group .theme_label.span_theme_current .theme_label_content {
+ color: #404040;
+ background-color: #ffdda1;
+ border: none;
+}
+#div_theme_group .theme_label.span_theme_current .theme_label_content:hover {
+ background-color: #ffdda1;
+}
+#div_theme_group span.theme_links_preview {
+ font-size: 12px;
+ float: right;
+ padding: 5px;
+}
+
+#div_theme_group.custom .custom_theme_holder {
+ width: 420px;
+ padding: 3px 10px 3px 10px;
+}
+#div_theme_group.custom .custom_theme_holder:hover {
+ background-color: #f5fafe;
+}
+#div_theme_group.custom .custom_theme_holder .custom_theme_title {
+ display: inline;
+ cursor: pointer;
+ text-align: left;
+ color: #1e88e5;
+ font-size: 13px;
+}
+#div_theme_group.custom .custom_theme_holder .custom_theme_title:hover {
+ color: #ffa608;
+}
+#div_theme_group.custom .custom_theme_holder span.custom_theme_preview {
+ margin-left: 15px;
+ float: right;
+}
+#div_theme_group.custom .custom_theme_holder span.custom_theme_delete {
+ margin-left: 15px;
+ float: right;
+}
+#div_theme_group.custom .custom_theme_holder span.custom_theme_edit {
+ margin-left: 15px;
+ float: right;
+}
+#div_theme_group.custom .custom_theme_holder.active {
+ background-color: white;
+}
+#div_theme_group.custom .custom_theme_holder.active .custom_theme_title {
+ color: #ffa608;
+ font-weight: 600;
+}
+
+#div_theme_fullscreen {
+ position: absolute;
+ top: 0;
+ height: auto;
+ width: auto;
+ background-color: white;
+ border: 9px solid #c8e3f8;
+ border-radius: 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px;
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+}
+
+.div_theme_fullscreen_content {
+ padding: 10px;
+ margin-bottom: 45px;
+ overflow: auto;
+ height: auto;
+ min-width: 250px;
+ min-height: 50px;
+}
+.div_theme_fullscreen_content input {
+ width: 300px;
+}
+
+.div_theme_fullscreen_btm {
+ width: 100%;
+ background-color: white;
+ border-top: 1px solid #c8e3f8;
+ height: 25px;
+ padding: 10px 0px 10px 0px !important;
+ position: fixed;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ z-index: 1000;
+}
+
+.custom div.theme_label img {
+ width: 100px;
+ height: 75px;
+}
+
+div.theme_label.span_theme_current img {
+ border-color: #ffdda1;
+ color: #ffdda1;
+}
+
+.themes-content {
+ float: right;
+ width: 100%;
+}
+.themes-content .bold {
+ font-size: 14px;
+}
+
+#theme-editor-warning {
+ font-size: 13px;
+ color: #ee9800;
+ font-weight: 600;
+}
+
+#theme-editor {
+ width: 45%;
+ float: left;
+ min-height: 600px;
+}
+#theme-editor #picker {
+ /*max-height: 90vh;
+ overflow-y: scroll;*/
+ max-width: 90vw;
+ padding: 20px;
+ /*font-size: 13px;
+ line-height: 20px;*/
+ background-color: white;
+ border-left: 6px #1e88e5 solid !important;
+ box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.34);
+ position: fixed;
+ left: 500px;
+ z-index: 999;
+}
+#theme-editor #picker .popup_close {
+ position: absolute !important;
+ top: 20px;
+ right: 20px;
+ z-index: 9999;
+ font-size: 32px !important;
+ line-height: 25px;
+ color: lightgrey;
+}
+#theme-editor #picker .popup_close:hover {
+ color: #1e88e5;
+}
+#theme-editor #picker .popup_close a {
+ color: lightgrey;
+}
+#theme-editor #picker .popup_close a:hover {
+ color: #1e88e5;
+}
+#theme-editor #picker h2,
+#theme-editor #picker .divPopUp_top {
+ max-width: 95%;
+ margin-top: 0px;
+ margin-bottom: 20px;
+ font-size: 20px;
+ line-height: 27px;
+ font-weight: 500;
+ color: #333;
+}
+#theme-editor #picker p {
+ line-height: 20px;
+}
+#theme-editor #picker.popup_violet {
+ border-left: 6px #921ee5 solid !important;
+}
+#theme-editor #picker.popup_violet div.buttonwrapper a {
+ background-color: #921ee5;
+ border: 1px #921ee5 solid;
+}
+#theme-editor #picker.popup_violet div.buttonwrapper a:hover {
+ background-color: #be79f0;
+ border: 1px #be79f0 solid;
+}
+#theme-editor #picker.popup_violet div.buttonwrapper a.ovalbutton_gray {
+ color: #921ee5 !important;
+ background-color: white !important;
+}
+#theme-editor #picker.popup_violet div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #921ee5 !important;
+}
+#theme-editor #picker.popup_orange {
+ border-left: 6px #ffa608 solid !important;
+}
+#theme-editor #picker.popup_orange div.buttonwrapper a {
+ background-color: #ffa608;
+ border: 1px #ffa608 solid;
+}
+#theme-editor #picker.popup_orange div.buttonwrapper a:hover {
+ background-color: #ffb83b;
+ border: 1px #ffb83b solid;
+}
+#theme-editor #picker.popup_orange div.buttonwrapper a.ovalbutton_gray {
+ color: #ffa608 !important;
+ background-color: white !important;
+}
+#theme-editor #picker.popup_orange div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ffa608 !important;
+}
+#theme-editor #picker.popup_red {
+ border-left: 6px #ff0000 solid !important;
+}
+#theme-editor #picker.popup_red div.buttonwrapper a {
+ background-color: #ff0000;
+ border: 1px #ff0000 solid;
+}
+#theme-editor #picker.popup_red div.buttonwrapper a:hover {
+ background-color: #ff5757;
+ border: 1px #ff5757 solid;
+}
+#theme-editor #picker.popup_red div.buttonwrapper a.ovalbutton_gray {
+ color: #ff0000 !important;
+ background-color: white !important;
+}
+#theme-editor #picker.popup_red div.buttonwrapper a.ovalbutton_gray:hover {
+ color: white !important;
+ background-color: #ff0000 !important;
+}
+
+#theme-preview {
+ width: 50%;
+ float: right;
+ min-height: 600px;
+ position: relative;
+ border: 1px lightgrey solid;
+}
+#theme-preview iframe {
+ width: 100%;
+ height: 600px;
+}
+#theme-preview iframe #preview {
+ display: none;
+}
+
+.theme-overflow {
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;
+ z-index: 2;
+ margin-right: 20px;
+}
+
+#new_theme_alert {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ width: 400px;
+ margin-left: -200px;
+ background-color: #d48800;
+ color: white;
+ height: 50px;
+ text-align: center;
+}
+#new_theme_alert p {
+ margin: 0;
+ line-height: 50px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 23-Aug-2018, 17:25:22
+ Author : podkrizniku
+*/
+#phn_import_list_profiles {
+ margin: 0px;
+ padding: 0px;
+ min-height: 100px;
+ max-height: 600px;
+ border: 1px solid lightgrey;
+ border-top: none;
+ overflow: auto !important;
+ display: inline-block;
+ background-color: white;
+ width: 200px !important;
+ height: 237px !important;
+}
+#phn_import_list_profiles ol {
+ margin: 0px;
+ padding: 0px;
+ display: block;
+ border-bottom: 1px solid lightgrey;
+}
+#phn_import_list_profiles ol li {
+ display: block;
+ list-style-image: none;
+ list-style-position: outside;
+ list-style-type: none;
+ line-height: 20px;
+ border-top: 1px solid lightgrey;
+ padding: 0px 5px;
+ cursor: pointer;
+}
+#phn_import_list_profiles ol li.active {
+ background-color: #061d31;
+ color: white;
+}
+
+#inv_top_navi {
+ clear: both;
+ display: inline-block;
+ width: auto;
+ padding: 0px 3px;
+ margin: 0 20px 0 0;
+ font-size: 14px;
+ font-weight: bold;
+ color: #1e88e5;
+}
+
+.phn_space {
+ clear: both;
+ display: inline-block;
+ padding: 0px;
+ margin: 0px;
+ width: 60px;
+}
+
+.phn_step_space {
+ clear: both;
+ display: inline-block;
+ padding: 0px;
+ margin: 0px;
+ width: 13px;
+}
+
+.phn_step_nav {
+ clear: both;
+ display: inline-block;
+ padding: 0px;
+ margin: 0px;
+ width: 40px;
+}
+
+.phn_step {
+ clear: both;
+ display: inline-block;
+ padding: 0px;
+ margin: 0px;
+ width: 40px;
+ display: inline-block;
+ height: 15px;
+}
+
+.phn_step.yellow {
+ display: inline-block;
+ height: 10px;
+}
+
+.phn_step_nav.yellow {
+ display: inline-block;
+ height: 10px;
+ width: auto;
+}
+
+div.phn_step {
+ cursor: pointer;
+ width: auto;
+ margin: 3px 5px;
+ padding: 0px;
+}
+div.phn_step span.circle {
+ display: inline-block;
+ margin: 0px 0px;
+ width: 24px;
+ height: 24px;
+ font-size: 13px;
+ line-height: 24px;
+ text-align: center;
+ color: #1e88e5;
+ border: 1px solid #1e88e5;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+div.phn_step span.label {
+ display: inline-block;
+ padding: 0px 5px;
+ line-height: 24px;
+ text-align: center;
+ color: #1e88e5;
+ line-height: 18px;
+}
+div.phn_step a:hover span {
+ color: #1e88e5;
+}
+div.phn_step a:hover span.circle {
+ color: white;
+ background-color: #ffa608;
+ border: 1px solid #ffa608;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+
+div.phn_step.active {
+ background-color: white;
+}
+div.phn_step.active a span {
+ color: #1e88e5;
+}
+div.phn_step.active a span.circle {
+ color: white;
+ background-color: #ffa608;
+ border: 1px solid #ffa608;
+ border-radius: 14px;
+ -moz-border-radius: 14px;
+ -webkit-border-radius: 14px;
+}
+
+div.phn_step_nav.active {
+ background-color: white;
+}
+div.phn_step_nav.active a span {
+ color: #1e88e5;
+}
+
+div.phn_step_nav a:hover span {
+ color: #1e88e5;
+}
+
+.phn_ico_status_go {
+ background: url("../../../admin/survey/img_0/telephone/telephone_go.png") center center no-repeat;
+}
+
+.phn_ico_status_error {
+ background: url("../../../admin/survey/img_0/telephone/telephone_error.png") center center no-repeat;
+}
+
+.phn_ico_status {
+ background: url("../../../admin/survey/img_0/telephone/telephone.png") center center no-repeat;
+}
+
+.phn_ico_status_link {
+ background: url("../../../admin/survey/img_0/telephone/telephone_link.png") center center no-repeat;
+}
+
+.phn_ico_status_key {
+ background: url("../../../admin/survey/img_0/telephone/telephone_key.png") center center no-repeat;
+}
+
+.phn_ico_unsubscribed_0 {
+ background: url("../../../admin/survey/img_0/opdedout_off.png") center center no-repeat;
+}
+
+.phn_ico_unsubscribed_1 {
+ background: url("../../../admin/survey/img_0/opdedout_on.png") center center no-repeat;
+}
+
+#phn_dashboard_date_filter {
+ margin: 10px 0 20px 10px;
+}
+
+#phn_call_table {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ width: 100%;
+ clear: both;
+}
+#phn_call_table th {
+ color: grey;
+ padding: 5px 10px;
+ font-size: 14px;
+ height: 24px;
+ vertical-align: middle;
+ background-color: #f8f8f8;
+ border: 1px solid grey;
+ text-align: left;
+}
+#phn_call_table td {
+ padding: 10px 20px;
+ font-size: 12px;
+ vertical-align: top;
+ border: 1px solid grey;
+}
+
+#phn_user_comment {
+ width: 95%;
+ margin: 0px 10px;
+ outline: 1px solid lightgrey;
+ min-height: 24pt;
+ padding: 3px;
+}
+
+.phn_user_intro {
+ width: 100%;
+ margin: 0px 10px;
+ padding: 3px;
+ outline: 1px solid #efefef;
+ color: grey;
+}
+
+#telephone_popup {
+ display: none;
+ position: fixed;
+ top: 40%;
+ left: 50%;
+ margin-top: -100px;
+ margin-left: -300px;
+ min-height: 200px;
+ width: auto;
+ z-index: 89;
+ padding: 10px;
+ background-color: white;
+ border: 9px solid #c8e3f8;
+ border-radius: 7px 7px 7px 7px;
+ -moz-border-radius: 7px 7px 7px 7px;
+ -webkit-border-radius: 7px 7px 7px 7px;
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
+}
+
+#tbl_recipients_list.phone th {
+ text-align: center;
+ padding-right: 7px;
+ padding-left: 7px;
+ min-width: auto;
+ border-left: 1px #efefef solid;
+ border-right: 1px #efefef solid;
+}
+#tbl_recipients_list.phone td {
+ padding-right: 7px;
+ padding-left: 7px;
+ min-width: auto;
+ border-left: 1px #efefef solid;
+ border-right: 1px #efefef solid;
+}
+#tbl_recipients_list.phone th.tbl_icon.anl_ac {
+ border-left: 0;
+}
+#tbl_recipients_list.phone tr {
+ white-space: nowrap;
+ overflow: hidden;
+}
+#tbl_recipients_list.phone tr td.tbl_inv_left span.sprites {
+ cursor: pointer;
+}
+#tbl_recipients_list.phone tr td.anl_ac {
+ cursor: pointer;
+}
+
+#tbl_recipients_list .ovwerflowHidden {
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+ text-overflow: ellipsis;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 24-Aug-2018, 10:37:43
+ Author : podkrizniku
+*/
+#divProfileManager {
+ position: absolute;
+ right: 0;
+ top: 120px;
+}
+
+#tbl_profileManager_pdofileData {
+ border-spacing: 0px;
+ padding: 0px;
+ margin: 0px;
+ border-collapse: collapse;
+ table-layout: auto;
+ clear: both;
+}
+#tbl_profileManager_pdofileData th {
+ color: #333;
+ padding: 3px;
+ padding-left: 7px;
+ font-size: 12px;
+ font-weight: normal;
+ height: 24px;
+ vertical-align: middle;
+ border-top: 1px solid #c8e3f8;
+ border-bottom: 1px solid #c8e3f8;
+ width: auto;
+ text-align: left;
+}
+#tbl_profileManager_pdofileData td {
+ padding: 5px 3px;
+ padding-left: 7px;
+ font-size: 11px;
+ vertical-align: middle;
+ border-bottom: 1px solid #c8e3f8;
+}
+
+#profileManager_holder {
+ float: left;
+ width: 190px;
+ margin: 8px 8px 8px 0px;
+ color: #1e88e5;
+}
+
+#profileManager_profile {
+ height: 150px;
+ width: 190px;
+ overflow: auto;
+ cursor: pointer;
+}
+#profileManager_profile .option {
+ padding: 2px 5px;
+ margin-bottom: 5px;
+}
+#profileManager_profile .active {
+ padding: 2px 5px;
+ background-color: #f5fafe;
+ border-radius: 4px;
+ -moz-border-radius: 4px;
+ -webkit-border-radius: 4px;
+}
+
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 22-Aug-2018, 19:01:43
+ Author : podkrizniku
+*/
+@media all and (min-width: 1400px) {
+ #branching ul.first {
+ margin: 0px 40px 40px -30px;
+ }
+}
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+ .tabnavigation1 {
+ margin: 0px 0px 0px 1px;
+ }
+}
+@media all and (min-width: 1550px) {
+ #toolbox_library {
+ left: 1200px;
+ }
+
+ #quick_settings_holder {
+ left: 1162px;
+ }
+}
+@media print {
+ .no-print {
+ display: none !important;
+ }
+ .no-print * {
+ display: none !important;
+ }
+}
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : 17-Aug-2018, 09:43:26
+ Author : podkrizniku
+*/
+/*aktivnost - naredi, da se barve filajo genericno s php, ne pa takole*/
+.time_span.year_2021 {
+ background-color: #4bacc6;
+}
+
+.time_span.year_2020 {
+ background-color: #8064a2;
+}
+
+.time_span.year_2019 {
+ background-color: #4f81bd;
+}
+
+.time_span.year_2018 {
+ background-color: #9bbb59;
+}
+
+.time_span.year_2017 {
+ background-color: #c0504d;
+}
+
+.time_span.year_2016 {
+ background-color: #92a9cf;
+}
+
+.time_span.year_2015 {
+ background-color: #f79646;
+}
+
+.time_span.year_2014 {
+ background-color: #4bacc6;
+}
+
+.time_span.year_2013 {
+ background-color: #8064a2;
+}
+
+.time_span.year_2012 {
+ background-color: #9bbb59;
+}
+
+.time_span.year_2011 {
+ background-color: #c0504d;
+}
+
+.time_span.year_2010 {
+ background-color: #4f81bd;
+}
+
+.time_span.day_1 {
+ background-color: #4f81bd;
+}
+
+.time_span.day_2 {
+ background-color: #c0504d;
+}
+
+.time_span.day_3 {
+ background-color: #9bbb59;
+}
+
+.time_span.day_4 {
+ background-color: #8064a2;
+}
+
+.time_span.day_5 {
+ background-color: #4bacc6;
+}
+
+.time_span.day_6 {
+ background-color: #f79646;
+}
+
+.time_span.day_7 {
+ background-color: #92a9cf;
+}
+
+.time_span.month_1 {
+ background-color: #4f81bd;
+}
+
+.time_span.month_2 {
+ background-color: #c0504d;
+}
+
+.time_span.month_3 {
+ background-color: #9bbb59;
+}
+
+.time_span.month_4 {
+ background-color: #8064a2;
+}
+
+.time_span.month_5 {
+ background-color: #4bacc6;
+}
+
+.time_span.month_6 {
+ background-color: #f79646;
+}
+
+.time_span.month_7 {
+ background-color: #92a9cf;
+}
+
+.time_span.month_8 {
+ background-color: #4f81bd;
+}
+
+.time_span.month_9 {
+ background-color: #c0504d;
+}
+
+.time_span.month_10 {
+ background-color: #9bbb59;
+}
+
+.time_span.month_11 {
+ background-color: #8064a2;
+}
+
+.time_span.month_12 {
+ background-color: #4bacc6;
+}
+
+/*konec aktivnosts grafi*/
+/*ikona printer pri analizah multittext tabeli v vsaki celici - ikona kot link je zakomentirana in nima funkcije*/
+.anl_single_ans_ico {
+ float: left;
+ margin-right: -16px;
+ width: 16px;
+ height: 16px;
+ display: inline-block;
+ background-image: url(../../../admin/survey/img_new/sprites_test.png);
+ background-position: -17px -200px;
+ margin-right: 2px;
+}
+
+/*menjaj nekako. prisoten v publish-invitations-4send ter v surveycondition (kjerkoli ze to je)*/
+a.addIfIcon {
+ cursor: pointer;
+ color: grey;
+ display: inline-block;
+ width: 16px;
+ height: 16px;
+ background-image: url("../../../admin/survey/img_0/if_green.png");
+ vertical-align: bottom;
+ margin-left: 5px;
+ margin-bottom: 2px;
+}
+
+@media (max-width: 600px) {
+ #main {
+ margin-top: 70px;
+ padding-bottom: 30px;
+ /*overflow-x: scroll;*/
+ }
+ #main #anketa_edit {
+ box-sizing: border-box !important;
+ padding: 15px !important;
+ }
+ #main #placeholder {
+ width: auto;
+ }
+
+ fieldset {
+ width: 100% !important;
+ box-sizing: border-box !important;
+ margin-left: 0 !important;
+ margin-right: 0 !important;
+ }
+ fieldset .nastavitveSpan1,
+fieldset .nastavitveSpan2,
+fieldset .nastavitveSpan3,
+fieldset .nastavitveSpan4,
+fieldset .nastavitveSpan5,
+fieldset .nastavitveSpan6 {
+ width: auto !important;
+ display: block !important;
+ float: none !important;
+ text-align: left !important;
+ padding: 15px 0 5px 0 !important;
+ }
+ fieldset select,
+fieldset .select2-container,
+fieldset input[type=text],
+fieldset textarea {
+ width: 100% !important;
+ box-sizing: border-box;
+ }
+ fieldset .setting {
+ height: auto !important;
+ }
+
+ .desktop_header {
+ display: none;
+ }
+
+ .mobile_header {
+ position: fixed;
+ z-index: 9990;
+ display: flex;
+ align-items: center;
+ width: 100vw;
+ height: 70px;
+ border-bottom: 1px solid #efefef;
+ }
+ .mobile_header.survey_edit {
+ color: white;
+ background-color: #1e88e5;
+ }
+ .mobile_header.survey_list {
+ color: #1e88e5;
+ background-color: white;
+ }
+ .mobile_header .mobile_menu_icon {
+ width: 60px;
+ text-align: center;
+ }
+ .mobile_header .mobile_menu_icon.mobile_menu_close {
+ display: none;
+ }
+ .mobile_header .mobile_menu_icon.mobile_menu_close span {
+ font-size: 30px;
+ font-weight: 600;
+ line-height: 25px;
+ }
+ .mobile_header .mobile_menu_icon span {
+ cursor: pointer;
+ }
+ .mobile_header .mobile_survey_title {
+ width: calc(100% - 120px);
+ text-align: center;
+ font-size: 14px;
+ font-weight: 500;
+ }
+ .mobile_header .mobile_logo {
+ width: calc(100% - 120px);
+ }
+ .mobile_header .mobile_logo #enka_logo {
+ margin: 0 auto;
+ }
+
+ /* Mobile meni */
+ .mobile_menu {
+ position: fixed;
+ z-index: 9995;
+ display: flex;
+ flex-direction: column;
+ top: 71px;
+ bottom: 0;
+ width: 85vw;
+ color: #333;
+ background-color: #ffffff;
+ overflow: hidden;
+ -webkit-overflow-scrolling: touch;
+ overflow-y: auto;
+ pointer-events: none;
+ transform: translateX(-100%);
+ }
+ .mobile_menu:not(.no-transition),
+.mobile_menu .submenu:not(.no-transition) {
+ transition: all 250ms;
+ }
+ .mobile_menu.opened {
+ pointer-events: auto;
+ transform: translateX(0px);
+ }
+ .mobile_menu.submenu-opened {
+ overflow: hidden;
+ }
+ .mobile_menu ul {
+ list-style-type: none;
+ padding: 0;
+ padding-left: 0px;
+ margin: 0;
+ -webkit-overflow-scrolling: touch;
+ }
+ .mobile_menu ul > li {
+ display: block;
+ }
+ .mobile_menu ul > li > a {
+ position: relative;
+ display: block;
+ padding: 18px 20px;
+ font-size: 14px;
+ font-weight: 500;
+ text-decoration: none;
+ transition: all 150ms;
+ }
+ .mobile_menu ul > li > a:hover {
+ background-color: #c8e3f8;
+ border-radius: 3px;
+ }
+ .mobile_menu ul > li > a .arrow_back {
+ display: block;
+ position: absolute;
+ right: 20px;
+ top: 18px;
+ transform: rotate(180deg);
+ }
+ .mobile_menu ul > li:not(:last-child) > a {
+ border-bottom: 1px solid #efefef;
+ }
+ .mobile_menu .submenu {
+ overflow: hidden;
+ -webkit-overflow-scrolling: touch;
+ overflow-y: auto;
+ pointer-events: none;
+ z-index: 9998;
+ position: fixed;
+ bottom: 0;
+ top: 0;
+ left: 100%;
+ width: 100%;
+ min-height: 100%;
+ background-color: #ffffff;
+ }
+ .mobile_menu .submenu.opened {
+ left: 0;
+ pointer-events: auto;
+ }
+ .mobile_menu .submenu.opened:not(.current) {
+ overflow: hidden;
+ }
+ .mobile_menu .submenu-header {
+ cursor: pointer;
+ position: relative;
+ display: flex;
+ border-bottom: solid 1px #efefef;
+ }
+ .mobile_menu .submenu-header > a {
+ display: block;
+ font-size: 14px;
+ font-weight: 500;
+ padding: 18px 20px;
+ padding-left: 20px;
+ text-decoration: none;
+ }
+ .mobile_menu .submenu-header > label {
+ display: block;
+ width: calc(100% - 110px);
+ margin-bottom: 8px;
+ margin-top: 20px;
+ padding-left: 0px;
+ font-size: 15px;
+ font-weight: 500;
+ text-align: center;
+ opacity: 0.5;
+ }
+ .mobile_menu .mobile_menu_user li.has-submenu .arrow_back {
+ line-height: 30px;
+ }
+ .mobile_menu .mobile_menu_user li.has-submenu a {
+ font-size: 13px;
+ color: #333;
+ }
+ .mobile_menu .mobile_menu_user li.has-submenu a .email {
+ font-size: 12px;
+ }
+ .mobile_menu .mobile_menu_user .submenu_user_content {
+ display: flex;
+ flex-direction: column;
+ padding: 20px;
+ }
+ .mobile_menu .mobile_menu_user .submenu_user_content > div {
+ padding: 5px 0 10px 0;
+ font-size: 14px;
+ font-weight: 500;
+ }
+ .mobile_menu .mobile_menu_user .submenu_user_content > div .faicon {
+ padding-right: 10px;
+ vertical-align: -1px;
+ }
+ .mobile_menu .mobile_menu_actions {
+ display: flex;
+ flex-direction: column;
+ padding: 20px;
+ }
+ .mobile_menu .mobile_menu_actions a {
+ padding: 0 0 15px 0;
+ font-size: 13px;
+ }
+ .mobile_menu .mobile_menu_actions a .faicon::before {
+ padding-right: 10px;
+ font-size: 20px;
+ }
+
+ #srv_footer {
+ display: flex;
+ flex-direction: column;
+ margin-top: 0;
+ }
+ #srv_footer .footer_left {
+ margin-bottom: 10px;
+ }
+
+ #main #moje_ankete_edit {
+ padding: 20px !important;
+ }
+ #main #moje_ankete_edit #anketa_edit {
+ padding: 0 !important;
+ }
+ #main #moje_ankete_edit #survey_list {
+ display: flex;
+ flex-direction: column;
+ }
+ #main #moje_ankete_edit #survey_list > div {
+ margin: 15px 0 20px 0;
+ }
+ #main #moje_ankete_edit #survey_list #anketa_new_float {
+ display: flex;
+ justify-content: left;
+ }
+ #main #moje_ankete_edit #survey_list #pagination {
+ margin-left: auto;
+ margin-right: auto;
+ transform: none;
+ display: none;
+ }
+ #main #moje_ankete_edit #survey_list #pagination.bottom {
+ display: block;
+ }
+ #main #moje_ankete_edit #survey_list #sortButton,
+#main #moje_ankete_edit #survey_list #filterButton,
+#main #moje_ankete_edit #survey_list #folderSwitch {
+ display: none;
+ }
+ #main #moje_ankete_edit #survey_list #searchMySurveys {
+ padding: 0;
+ }
+ #main #moje_ankete_edit #survey_list #searchMySurveys form {
+ display: flex;
+ justify-content: center;
+ }
+ #main #moje_ankete_edit #survey_list #searchMySurveys form input[type=text] {
+ width: 100%;
+ padding: 5px 0 5px 7px;
+ }
+ #main #moje_ankete_edit #survey_list .div_sl_new {
+ padding: 20px 0;
+ }
+ #main #moje_ankete_edit #survey_list table#surveyList_new td {
+ display: none;
+ }
+ #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(3), #main #moje_ankete_edit #survey_list table#surveyList_new td:nth-child(6) {
+ display: table-cell;
+ }
+ #main #moje_ankete_edit.page_knjiznica .folder_left {
+ line-height: 20px;
+ }
+ #main #moje_ankete_edit.page_knjiznica .folder_right .library_item_setting_text {
+ display: none;
+ }
+ #main #moje_ankete_edit.page_knjiznica ul li.anketa {
+ margin: 5px 0;
+ }
+ #main #moje_ankete_edit fieldset div.data {
+ margin-top: 10px;
+ }
+ #main #moje_ankete_edit fieldset div.setting {
+ margin-bottom: 10px;
+ }
+
+ #new_anketa_div {
+ display: flex;
+ flex-direction: column;
+ min-height: auto;
+ width: 100%;
+ }
+ #new_anketa_div #left_menu,
+#new_anketa_div #right_content {
+ width: 100%;
+ position: relative;
+ }
+ #new_anketa_div #right_content {
+ box-sizing: border-box;
+ margin: 20px 0 0 0;
+ padding: 0;
+ }
+ #new_anketa_div #right_content .setting {
+ width: 100% !important;
+ margin: 0 !important;
+ padding: 0 !important;
+ }
+ #new_anketa_div #right_content .survey_title_text_holder {
+ flex-direction: column !important;
+ }
+ #new_anketa_div #right_content select {
+ width: 100% !important;
+ margin: 0;
+ }
+ #new_anketa_div #right_content input {
+ width: 100% !important;
+ box-sizing: border-box;
+ }
+ #new_anketa_div #right_content .survey_type_holder {
+ flex-direction: column !important;
+ }
+ #new_anketa_div #right_content .survey_type_holder label {
+ margin-bottom: 15px;
+ }
+ #new_anketa_div #right_content .survey_type_holder label > div {
+ box-sizing: border-box;
+ padding: 10px !important;
+ }
+ #new_anketa_div #right_content .fieldset {
+ line-height: 24px;
+ }
+ #new_anketa_div #right_content .fieldset input[type=file] {
+ margin-top: 20px;
+ }
+ #new_anketa_div #input_field_holder,
+#new_anketa_div #preview_field_holder {
+ width: 100% !important;
+ float: none;
+ box-sizing: border-box;
+ margin: 0 !important;
+ padding: 10px 0 !important;
+ }
+ #new_anketa_div .from_text_instructions {
+ line-height: 20px !important;
+ }
+ #new_anketa_div .fieldset.noSurvey_template {
+ display: flex;
+ flex-direction: column;
+ }
+ #new_anketa_div .fieldset.noSurvey_template .template {
+ align-self: center;
+ width: auto !important;
+ }
+ #new_anketa_div .fieldset.noSurvey_template .template .template_preview {
+ margin-right: 10px !important;
+ }
+
+ table.dashboard {
+ border-spacing: 0px;
+ }
+ table.dashboard > tbody > tr,
+table.dashboard > tbody > tr > td {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ box-sizing: border-box;
+ }
+ table.dashboard > tbody > tr > td {
+ margin: 15px 0;
+ }
+
+ .page_branching #placeholder,
+.page_ #placeholder {
+ margin-left: 0;
+ }
+
+ .locked .add-variable-mobile,
+.spremenljivka_content:hover .add-variable {
+ display: none !important;
+ }
+
+ #branching {
+ width: 100%;
+ }
+ #branching li {
+ margin: 0 10px 0 10px !important;
+ }
+ #branching .spr_edit {
+ display: none !important;
+ }
+ #branching .content_div_normalmode {
+ padding-bottom: 40px;
+ }
+ #branching .add-variable-mobile {
+ display: block;
+ position: absolute;
+ left: 59px;
+ bottom: 20px;
+ }
+ #branching .empty_vrivanje {
+ padding: 30px 0 !important;
+ margin: 20px 10px 20px 10px !important;
+ }
+ #branching .empty_vrivanje .empty_vrivanje_title {
+ display: none;
+ margin: 0 20px;
+ font-size: 14px;
+ }
+ #branching .empty_vrivanje .empty_vrivanje_subtitle {
+ display: none;
+ margin: 15px 20px 0 15px;
+ font-size: 13px;
+ }
+ #branching .empty_vrivanje .mobile_add_question {
+ position: relative;
+ bottom: auto;
+ }
+ #branching #bottom_icons_holder {
+ display: flex;
+ flex-direction: column;
+ }
+ #branching #bottom_icons_holder .forma_bottom {
+ display: flex;
+ flex-direction: column;
+ align-items: left;
+ width: 100%;
+ height: auto;
+ padding: 30px 10px 20px 20px;
+ }
+ #branching #bottom_icons_holder .forma_bottom .forma_bottom_inner {
+ display: flex;
+ flex-direction: row;
+ padding: 0 0 10px 0;
+ margin: 0;
+ }
+ #branching #bottom_icons_holder .forma_bottom .forma_bottom_inner a {
+ margin: 0 11px 0 2px;
+ padding: 0;
+ }
+
+ #toolbox_advanced_settings {
+ display: none !important;
+ top: 150px;
+ }
+
+ #toolbox_basic {
+ display: none !important;
+ top: 187px;
+ }
+
+ #toolbox_library {
+ display: none !important;
+ }
+
+ .mobile_add_question {
+ display: block;
+ position: fixed;
+ bottom: 25px;
+ left: calc(50% - 95px);
+ width: 190px;
+ }
+ .mobile_add_question a {
+ display: flex !important;
+ justify-content: center;
+ padding: 10px 20px 10px !important;
+ font-size: 14px;
+ font-weight: 500;
+ }
+ .mobile_add_question .plus {
+ margin-right: 8px;
+ font-size: 28px;
+ line-height: 15px;
+ font-weight: 600;
+ }
+
+ .mobile_add_question_popup {
+ z-index: 9999;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+ padding: 40px 20px 20px 20px;
+ background: white;
+ }
+ .mobile_add_question_popup .mobile_add_question_item {
+ cursor: pointer;
+ position: relative;
+ box-sizing: border-box;
+ width: 300px;
+ height: 45px;
+ margin: 15px auto 5px auto;
+ font-size: 16px;
+ font-weight: 500;
+ text-align: center;
+ background-color: #f5fafe;
+ border: 1px #dfeffb solid;
+ }
+ .mobile_add_question_popup .mobile_add_question_item:hover {
+ background-color: #dfeffb;
+ border: 1px #c8e3f8 solid;
+ }
+ .mobile_add_question_popup .mobile_add_question_item span.faicon {
+ position: absolute;
+ left: 20px;
+ line-height: 42px;
+ }
+ .mobile_add_question_popup .mobile_add_question_item span.faicon.matrix_32 {
+ line-height: 10px;
+ margin-top: 9px;
+ }
+ .mobile_add_question_popup .mobile_add_question_item span.item_text {
+ line-height: 42px;
+ }
+ .mobile_add_question_popup .mobile_add_question_button {
+ position: absolute;
+ bottom: 25px;
+ left: calc(50% - 95px);
+ box-sizing: border-box;
+ width: 190px;
+ text-align: center;
+ }
+ .mobile_add_question_popup .mobile_add_question_button a {
+ padding: 10px 20px 10px !important;
+ font-size: 14px;
+ font-weight: 500;
+ }
+
+ #vprasanje_float_editing {
+ position: fixed;
+ z-index: 99999;
+ width: 100%;
+ height: 100%;
+ max-height: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ margin: 0 !important;
+ top: 0;
+ right: 0;
+ left: 0;
+ box-shadow: 0px 0px 100px 100px #333;
+ }
+ #vprasanje_float_editing #vprasanje_edit {
+ top: 0;
+ margin-bottom: 55px;
+ }
+ #vprasanje_float_editing #vprasanje_tabs {
+ position: absolute;
+ top: 42px;
+ }
+ #vprasanje_float_editing #vprasanje_tabs a.tab_link {
+ height: auto;
+ padding: 10px 9px;
+ }
+ #vprasanje_float_editing .tab {
+ padding-top: 100px;
+ }
+ #vprasanje_float_editing .tab h2 {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 42px;
+ box-sizing: border-box;
+ padding: 10px;
+ margin: 0;
+ }
+ #vprasanje_float_editing #vprasanje_buttons {
+ display: flex;
+ justify-content: space-evenly;
+ position: relative;
+ bottom: 30px;
+ padding: 0 15px;
+ }
+ #vprasanje_float_editing #vprasanje_buttons span {
+ width: 40%;
+ margin-left: 0 !important;
+ text-align: center;
+ }
+
+ #main #anketa #globalSetingsList {
+ max-width: 100% !important;
+ width: 100% !important;
+ }
+ #main #anketa #globalSetingsList fieldset {
+ width: 100% !important;
+ }
+
+ /* NASTAVITVE in ARHIVI */
+ #main #anketa #anketa_edit.page_nastavitve,
+#main #anketa #anketa_edit.page_osn_pod,
+#main #anketa #anketa_edit.page_mobile_settings,
+#main #anketa #anketa_edit.page_jezik,
+#main #anketa #anketa_edit.page_dostop,
+#main #anketa #anketa_edit.page_piskot,
+#main #anketa #anketa_edit.page_alert,
+#main #anketa #anketa_edit.page_trajanje,
+#main #anketa #anketa_edit.page_skupine,
+#main #anketa #anketa_edit.page_urejanje,
+#main #anketa #anketa_edit.page_prikaz,
+#main #anketa #anketa_edit.page_metadata,
+#main #anketa #anketa_edit.page_missing,
+#main #anketa #anketa_edit.page_export_settings,
+#main #anketa #anketa_edit.page_gdpr_settings,
+#main #anketa #anketa_edit.page_uporabnost,
+#main #anketa #anketa_edit.page_kviz,
+#main #anketa #anketa_edit.page_voting,
+#main #anketa #anketa_edit.page_social_network,
+#main #anketa #anketa_edit.page_slideshow,
+#main #anketa #anketa_edit.page_telephone,
+#main #anketa #anketa_edit.page_chat,
+#main #anketa #anketa_edit.page_panel,
+#main #anketa #anketa_edit.page_advanced_paradata,
+#main #anketa #anketa_edit.page_json_survey_export,
+#main #anketa #anketa_edit.page_fieldwork {
+ flex-direction: column-reverse;
+ }
+ #main #anketa #anketa_edit.page_nastavitve > div,
+#main #anketa #anketa_edit.page_osn_pod > div,
+#main #anketa #anketa_edit.page_mobile_settings > div,
+#main #anketa #anketa_edit.page_jezik > div,
+#main #anketa #anketa_edit.page_dostop > div,
+#main #anketa #anketa_edit.page_piskot > div,
+#main #anketa #anketa_edit.page_alert > div,
+#main #anketa #anketa_edit.page_trajanje > div,
+#main #anketa #anketa_edit.page_skupine > div,
+#main #anketa #anketa_edit.page_urejanje > div,
+#main #anketa #anketa_edit.page_prikaz > div,
+#main #anketa #anketa_edit.page_metadata > div,
+#main #anketa #anketa_edit.page_missing > div,
+#main #anketa #anketa_edit.page_export_settings > div,
+#main #anketa #anketa_edit.page_gdpr_settings > div,
+#main #anketa #anketa_edit.page_uporabnost > div,
+#main #anketa #anketa_edit.page_kviz > div,
+#main #anketa #anketa_edit.page_voting > div,
+#main #anketa #anketa_edit.page_social_network > div,
+#main #anketa #anketa_edit.page_slideshow > div,
+#main #anketa #anketa_edit.page_telephone > div,
+#main #anketa #anketa_edit.page_chat > div,
+#main #anketa #anketa_edit.page_panel > div,
+#main #anketa #anketa_edit.page_advanced_paradata > div,
+#main #anketa #anketa_edit.page_json_survey_export > div,
+#main #anketa #anketa_edit.page_fieldwork > div {
+ width: 100%;
+ margin: 20px 0;
+ }
+
+ /* OBLIKA */
+ #main #anketa #anketa_edit.page_tema #div_theme_group_holder {
+ width: 100%;
+ }
+ #main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label {
+ width: 100%;
+ box-sizing: border-box;
+ margin-left: 0;
+ margin-right: 0;
+ }
+ #main #anketa #anketa_edit.page_tema #div_theme_group_holder #div_theme_group div.theme_label img {
+ width: 100%;
+ height: auto;
+ }
+
+ #theme-editor {
+ width: 100% !important;
+ float: none !important;
+ }
+
+ #theme-preview {
+ width: 100% !important;
+ float: none !important;
+ margin-top: 80px !important;
+ }
+
+ /* ARHIVI */
+ #main #anketa #anketa_edit.page_arhivi {
+ flex-direction: column-reverse;
+ }
+ #main #anketa #anketa_edit.page_arhivi > div {
+ width: 100% !important;
+ margin: 20px 0;
+ }
+ #main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset {
+ width: 100% !important;
+ box-sizing: border-box !important;
+ margin-left: 0 !important;
+ margin-right: 0 !important;
+ }
+ #main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input {
+ width: 100% !important;
+ }
+
+ #srv_diagnostic br {
+ display: none;
+ }
+ #srv_diagnostic #srv_diagnostic_results,
+#srv_diagnostic #srv_diagnostic_results_right {
+ clear: both;
+ display: block !important;
+ width: 100% !important;
+ box-sizing: border-box;
+ margin: 20px 0 !important;
+ }
+ #srv_diagnostic #srv_diagnostic_results table,
+#srv_diagnostic #srv_diagnostic_results_right table {
+ width: 100%;
+ min-width: 100%;
+ }
+ #srv_diagnostic #srv_diagnostic_results table td + td,
+#srv_diagnostic #srv_diagnostic_results_right table td + td {
+ width: auto !important;
+ }
+
+ .subpage_testnipodatki {
+ line-height: 20px;
+ }
+ .subpage_testnipodatki form input[type=submit] {
+ margin: 10px 0 10px 15px;
+ padding: 3px;
+ }
+ .subpage_testnipodatki form label {
+ padding-top: 20px;
+ }
+ .subpage_testnipodatki form label input {
+ vertical-align: bottom;
+ }
+
+ #vabila > table,
+table.invitations_settings,
+#inv_msg_preview table,
+#inv_send_mail table {
+ border-spacing: 0px;
+ width: 100%;
+ }
+ #vabila > table tbody,
+table.invitations_settings tbody,
+#inv_msg_preview table tbody,
+#inv_send_mail table tbody {
+ display: flex;
+ flex-direction: column;
+ width: 100% !important;
+ }
+ #vabila > table > tbody > tr,
+#vabila > table > tbody > tr > td,
+table.invitations_settings > tbody > tr,
+table.invitations_settings > tbody > tr > td,
+#inv_msg_preview table > tbody > tr,
+#inv_msg_preview table > tbody > tr > td,
+#inv_send_mail table > tbody > tr,
+#inv_send_mail table > tbody > tr > td {
+ display: flex;
+ flex-direction: column;
+ width: 100% !important;
+ box-sizing: border-box;
+ }
+ #vabila > table > tbody > tr > td,
+table.invitations_settings > tbody > tr > td,
+#inv_msg_preview table > tbody > tr > td,
+#inv_send_mail table > tbody > tr > td {
+ height: auto !important;
+ margin: 0;
+ padding: 0 !important;
+ }
+ #vabila > table > tbody > tr > td > br,
+table.invitations_settings > tbody > tr > td > br,
+#inv_msg_preview table > tbody > tr > td > br,
+#inv_send_mail table > tbody > tr > td > br {
+ display: none;
+ }
+ #vabila > table > tbody > tr > td > div,
+#vabila > table > tbody > tr > td > fieldset,
+table.invitations_settings > tbody > tr > td > div,
+table.invitations_settings > tbody > tr > td > fieldset,
+#inv_msg_preview table > tbody > tr > td > div,
+#inv_msg_preview table > tbody > tr > td > fieldset,
+#inv_send_mail table > tbody > tr > td > div,
+#inv_send_mail table > tbody > tr > td > fieldset {
+ margin: 15px 0;
+ }
+ #vabila > table colgroup,
+#vabila > table colgroup col,
+table.invitations_settings colgroup,
+table.invitations_settings colgroup col,
+#inv_msg_preview table colgroup,
+#inv_msg_preview table colgroup col,
+#inv_send_mail table colgroup,
+#inv_send_mail table colgroup col {
+ width: 100% !important;
+ }
+ #vabila > table p label,
+table.invitations_settings p label,
+#inv_msg_preview table p label,
+#inv_send_mail table p label {
+ width: 100%;
+ }
+ #vabila > table p label input[type=text],
+#vabila > table p label input[type=number],
+#vabila > table p label input[type=password],
+table.invitations_settings p label input[type=text],
+table.invitations_settings p label input[type=number],
+table.invitations_settings p label input[type=password],
+#inv_msg_preview table p label input[type=text],
+#inv_msg_preview table p label input[type=number],
+#inv_msg_preview table p label input[type=password],
+#inv_send_mail table p label input[type=text],
+#inv_send_mail table p label input[type=number],
+#inv_send_mail table p label input[type=password] {
+ width: 100% !important;
+ box-sizing: border-box;
+ }
+
+ #surveyInvitationSetting,
+#surveyInvitationSettingServer {
+ min-width: 100% !important;
+ width: 100% !important;
+ margin: 10px 0 !important;
+ box-sizing: border-box !important;
+ }
+
+ #inv_top_navi {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ padding: 0;
+ margin: 0;
+ }
+ #inv_top_navi .inv_space {
+ display: none;
+ }
+ #inv_top_navi > #inv_step_nav {
+ width: 100%;
+ padding: 0;
+ margin: 0 0 15px 0;
+ }
+ #inv_top_navi > #inv_step_nav .inv_step {
+ height: auto;
+ padding: 0;
+ margin: 0;
+ }
+ #inv_top_navi > #inv_step_nav span.label {
+ padding: 0;
+ }
+ #inv_top_navi > #inv_step_nav.yellow {
+ display: flex;
+ justify-content: space-between;
+ }
+ #inv_top_navi > #inv_step_nav.yellow .inv_step span.circle {
+ width: 18px;
+ height: 18px;
+ line-height: 18px;
+ }
+ #inv_top_navi > #inv_step_nav.yellow .inv_step span.label {
+ padding: 0 0 0 3px;
+ }
+ #inv_top_navi > #inv_step_nav.yellow .inv_step_space {
+ display: none;
+ }
+
+ #inv_recipients_profiles_holder,
+#inv_import_list_container,
+#inv_messages_profiles_holder,
+#inv_msg_preview_hld,
+#invitation_profile_notes,
+#inv_select_mail_to,
+#inv_select_mail_preview {
+ width: 100%;
+ box-sizing: border-box;
+ margin: 15px 0 !important;
+ }
+ #inv_recipients_profiles_holder textarea,
+#inv_import_list_container textarea,
+#inv_messages_profiles_holder textarea,
+#inv_msg_preview_hld textarea,
+#invitation_profile_notes textarea,
+#inv_select_mail_to textarea,
+#inv_select_mail_preview textarea {
+ width: 100%;
+ }
+
+ #inv_msg_preview table th {
+ height: auto !important;
+ width: 100% !important;
+ margin: 0;
+ padding: 20px 0 0 0 !important;
+ text-align: left;
+ }
+ #inv_msg_preview table input {
+ width: 100%;
+ box-sizing: border-box;
+ }
+
+ .addthis_toolbox {
+ line-height: 24px;
+ }
+ .addthis_toolbox .at-icon-wrapper {
+ height: 24px !important;
+ width: 24px !important;
+ }
+ .addthis_toolbox .at-icon-wrapper svg {
+ height: 24px !important;
+ width: 24px !important;
+ }
+ .addthis_toolbox .addthis_separator {
+ font-size: 16px;
+ }
+
+ #inv_field_container ul li {
+ width: 45%;
+ }
+
+ .page_data #vnosi_paginacija {
+ display: flex;
+ flex-direction: column;
+ float: none;
+ }
+ .page_data #vnosi_paginacija > div {
+ margin: 5px 0;
+ }
+ .page_data #vnosi_paginacija label {
+ margin: 0;
+ padding: 0;
+ }
+ .page_data #data_search_filter {
+ display: flex;
+ width: 100%;
+ box-sizing: border-box;
+ }
+ .page_data #data_search_filter input {
+ box-sizing: border-box;
+ margin-left: 10px;
+ width: 100%;
+ }
+ .page_data .dataSettingsBasic {
+ width: 100%;
+ box-sizing: border-box;
+ margin: 0;
+ }
+ .page_data #toggleDataCheckboxes {
+ display: none;
+ }
+ .page_data #div_vnosi_data #dataTableScroller {
+ display: none;
+ }
+ .page_data #div_vnosi_data #tableContainer {
+ overflow-y: hidden;
+ padding-bottom: 20px;
+ }
+ .page_data #bottom_data_legend {
+ display: block;
+ float: none;
+ width: 100%;
+ box-sizing: border-box;
+ margin: 5px 0 10px 0;
+ }
+
+ .subpage_append,
+.subpage_merge,
+.subpage_calculation,
+.subpage_coding_auto,
+.subpage_recoding,
+.subpage_coding,
+.page_export {
+ flex-direction: column !important;
+ }
+ .subpage_append .anketa_edit_left,
+.subpage_append .anketa_edit_main,
+.subpage_merge .anketa_edit_left,
+.subpage_merge .anketa_edit_main,
+.subpage_calculation .anketa_edit_left,
+.subpage_calculation .anketa_edit_main,
+.subpage_coding_auto .anketa_edit_left,
+.subpage_coding_auto .anketa_edit_main,
+.subpage_recoding .anketa_edit_left,
+.subpage_recoding .anketa_edit_main,
+.subpage_coding .anketa_edit_left,
+.subpage_coding .anketa_edit_main,
+.page_export .anketa_edit_left,
+.page_export .anketa_edit_main {
+ width: 100% !important;
+ box-sizing: border-box;
+ margin: 20px 0 !important;
+ }
+ .subpage_append .anketa_edit_left,
+.subpage_merge .anketa_edit_left,
+.subpage_calculation .anketa_edit_left,
+.subpage_coding_auto .anketa_edit_left,
+.subpage_recoding .anketa_edit_left,
+.subpage_coding .anketa_edit_left,
+.page_export .anketa_edit_left {
+ margin: 0 !important;
+ }
+ .subpage_append textarea,
+.subpage_merge textarea,
+.subpage_calculation textarea,
+.subpage_coding_auto textarea,
+.subpage_recoding textarea,
+.subpage_coding textarea,
+.page_export textarea {
+ width: 100% !important;
+ }
+ .subpage_append #inv_upload_recipients_nosbmt + span,
+.subpage_merge #inv_upload_recipients_nosbmt + span,
+.subpage_calculation #inv_upload_recipients_nosbmt + span,
+.subpage_coding_auto #inv_upload_recipients_nosbmt + span,
+.subpage_recoding #inv_upload_recipients_nosbmt + span,
+.subpage_coding #inv_upload_recipients_nosbmt + span,
+.page_export #inv_upload_recipients_nosbmt + span {
+ display: block;
+ clear: both;
+ margin: 40px 0 0 0 !important;
+ }
+
+ .analysis_bottom_settings a:first-child {
+ display: block;
+ margin: 0 0 20px 0 !important;
+ }
+
+ .chart_holder {
+ width: 100%;
+ box-sizing: border-box;
+ }
+ .chart_holder .chart_img {
+ min-height: auto;
+ float: none;
+ pointer-events: none;
+ }
+ .chart_holder .chart_img img {
+ width: 100%;
+ }
+ .chart_holder .chart_settings {
+ display: none;
+ }
+ .chart_holder .chart_bottom_settings:first-child {
+ display: block;
+ clear: both;
+ }
+
+ table.analysis_reports {
+ border-spacing: 0px;
+ }
+ table.analysis_reports > tbody > tr,
+table.analysis_reports > tbody > tr > td {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ box-sizing: border-box;
+ }
+ table.analysis_reports > tbody > tr > td {
+ margin: 10px 0;
+ }
+ table.analysis_reports fieldset {
+ margin-bottom: 0 !important;
+ }
+}
+
+/*# sourceMappingURL=admin.css.map */
diff --git a/resources/sass/admin/dashboard/dashboard.scss b/resources/sass/admin/dashboard/dashboard.scss
index 45ba52c57..17e271912 100644
--- a/resources/sass/admin/dashboard/dashboard.scss
+++ b/resources/sass/admin/dashboard/dashboard.scss
@@ -18,4 +18,5 @@ and open the template in the editor.
@import "edits_analysis";
@import "language_statistics";
@import "reminder_tracking";
-@import "other";
\ No newline at end of file
+@import "other";
+@import "status_advanced";
\ No newline at end of file
diff --git a/resources/sass/admin/dashboard/status_advanced.scss b/resources/sass/admin/dashboard/status_advanced.scss
new file mode 100644
index 000000000..b874605a8
--- /dev/null
+++ b/resources/sass/admin/dashboard/status_advanced.scss
@@ -0,0 +1,24 @@
+div.status_advanced {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ align-content: flex-start;
+ justify-content: flex-start;
+ align-items: auto;
+
+
+
+}
+
+div.status_advanced_box {
+ display: flex;
+ border: 1px solid $soft_blue;
+ background-color: $soft_blue_very_lighten;
+ align-items: center;
+ justify-content: center;
+ margin: 10px;
+ padding: 20px;
+ font-size: 16px;
+ flex: 0 1 21%;
+ white-space: nowrap;
+}