diff --git a/admin/survey/SurveyAdmin.php b/admin/survey/SurveyAdmin.php index c1217581b..c49c0f7ae 100644 --- a/admin/survey/SurveyAdmin.php +++ b/admin/survey/SurveyAdmin.php @@ -275,18 +275,9 @@ class SurveyAdmin // DESKTOP HEADER echo '
'; - // Nastavitve zgoraj desno v headerju (search, help, profil...) - $this->displayHeaderRight(); - - // logotip - $this->displayHeaderLogo(); - // Znotraj posamezne ankete if($this->anketa > 0){ - // Utripajoc napis "Demo anketa" - $this->displayHeaderDemoSurvey(); - // Prikaze podatke o anketi in navigacijo - na vrhu (top bar) $this->displayHeaderAnketa(); } @@ -495,6 +486,115 @@ class SurveyAdmin } + // Utripajoc napis "Demo anketa" + private function displayHeaderDemoSurvey(){ + global $lang; + + $row = SurveyInfo::getInstance()->getSurveyRow(); + + // Demo anketa utripanje + if ($row['invisible'] == 1 && !Dostop::isMetaAdmin()) { + + echo '
'; + echo '
' . $lang['srv_close_invisible'] . '
'; + + ?> displayHeaderTopLine(); + + // Prvi nivo navigacije + $this->showMainNavigation(); + + // Drugi nivo navigacije + $this->secondNavigation(); + + // Tretji nivo navigacije po potrebi glede na podstran + $this->thirdNavigation(); + } + + /** + * prikaze glavo v seznamu anket + * + */ + private function displayHeaderSeznamAnket(){ + global $lang, $site_url, $global_user_id, $admin_type, $site_domain; + + + // Pobrisemo vse preview vnose + Common::deletePreviewData($this->anketa); + + # naložimo razred z seznamom anket + $SL = new SurveyList(); + $SLCount = $SL->countSurveys(); + $SLCountPhone = $SL->countPhoneSurveys(); + + // Obvestilo da ima uporabnik neprebrano sporocilo + $NO = new Notifications(); + $countMessages = $NO->countMessages(); + if ($countMessages > 0) { + echo '
'; + echo $lang['srv_notifications_alert']; + echo '
'; + + // Ce imamo vklopljen avtomatski prikaz sporcila (za pomembne zadeve), ga prikazemo po loadu + if($NO->checkForceShow()) + echo ''; + } + + // GDPR popup za prejemanje obvestil - force ce ga se ni izpolnil - SAMO NA www.1ka.si, test.1ka.si in virtualkah + if ( ($site_url == 'http://test.1ka.si/' + || isWWW() + || isAAI() + || ($cookie_domain == '.1ka.si' && isVirtual())) + && User::getInstance()->getSetting($setting='gdpr_agree') == '-1' + ) { + + // Avtomatsko prikazemo po loadu + echo ''; + } + + + // Zgornja vrstica v headerju + $this->displayHeaderTopLine($class='folders'); + + // Navigacija + echo '
'; + $SL->display_tabs(); + echo '
'; + + # smo v knjižnici + $SL->display_sub_tabs(); + } + + public function displayHeaderTopLine($class=''){ + global $lang, $site_url, $global_user_id, $admin_type, $site_domain; + + echo '
'; + + // logotip + $this->displayHeaderLogo(); + + // Nastavitve ankete + if($class != 'folders') + $this->displayHeaderAnketaSettings(); + + // Nastavitve zgoraj desno v headerju (search, help, profil...) + $this->displayHeaderRight(); + + // Utripajoc napis "Demo anketa" + $this->displayHeaderDemoSurvey(); + + echo '
'; + } + // Prikazemo podatke zgoraj desno v glavi (search, user, help) private function displayHeaderRight(){ global $site_url; @@ -603,198 +703,20 @@ class SurveyAdmin } // Prikazemo logo zgoraj levo - public function displayHeaderLogo(){ + private function displayHeaderLogo(){ global $lang; global $site_url; - echo ' '; - - // Prvi nivo navigacije - $this->showMainNavigation(); - - // Drugi nivo navigacije - $this->secondNavigation(); - - // Tretji nivo navigacije po potrebi glede na podstran - $this->thirdNavigation(); - } - - /** - * prikaze glavo v seznamu anket - * - */ - private function displayHeaderSeznamAnket(){ - global $lang, $site_url, $global_user_id, $admin_type, $site_domain; - - // Pobrisemo vse preview vnose - Common::deletePreviewData($this->anketa); - - # naložimo razred z seznamom anket - $SL = new SurveyList(); - $SLCount = $SL->countSurveys(); - $SLCountPhone = $SL->countPhoneSurveys(); - - // Obvestilo da ima uporabnik neprebrano sporocilo - $NO = new Notifications(); - $countMessages = $NO->countMessages(); - if ($countMessages > 0) { - echo '
'; - echo $lang['srv_notifications_alert']; - echo '
'; - - // Ce imamo vklopljen avtomatski prikaz sporcila (za pomembne zadeve), ga prikazemo po loadu - if($NO->checkForceShow()) - echo ''; - } - - // GDPR popup za prejemanje obvestil - force ce ga se ni izpolnil - SAMO NA www.1ka.si, test.1ka.si in virtualkah - if ( ($site_url == 'http://test.1ka.si/' - || isWWW() - || isAAI() - || ($cookie_domain == '.1ka.si' && isVirtual())) - && User::getInstance()->getSetting($setting='gdpr_agree') == '-1' - ) { - - // Avtomatsko prikazemo po loadu - echo ''; - } - - - echo '
'; - - echo '
 
'; - - echo '
'; - $SL->display_tabs(); - echo '
'; - - echo '
'; - - - # smo v knjižnici - $SL->display_sub_tabs(); - } - - - // Priakz footerja - private function displayFooter(){ - global $lang; - global $site_frontend; - global $mysql_database_name; - - - echo ''; - } - - // Prikaze ime ankete, zvezdico in tiste linke spodi (ker se vse refresha z ajaxom) - private function anketa_active() { + private function displayHeaderAnketaSettings() { global $lang; global $site_url; global $admin_type; @@ -816,35 +738,36 @@ class SurveyAdmin if ($this->skin == 0) { // Top navigacija - echo '
'; + echo '
'; // aktivni ki lahko tudi urejajo if ($this->checkDostopAktiven()) { - echo ''; + echo '
'; if($hierarhija_type == 10){ echo '' . $row['naslov'] . ''; - }else{ + } + else{ echo '' . $row['naslov'] . ''; } - $this->request_help(); - - $this->check_online_users(); - - echo ''; + echo '
'; } // pasivni lahko samo gledajo else { - echo ' '; - echo ' ' . $row['naslov'] . ''; - echo ' '; - + echo '
'.$row['naslov'].'
'; $link = SurveyInfo::getSurveyLink(); } + + // Pomoc + echo '
'; + $this->request_help(); + $this->check_online_users(); + echo '
'; + echo ''; - - // aktivacija, deaktivacija - echo 'isAnketar == true ? ' class="visibility_hidden"' : '') . '>'; + + // URL, aktivacija, deaktivacija + echo '
isAnketar == true ? ' class="visibility_hidden"' : '') . '>'; $this->displayAktivnost(); - echo ''; # id="anketa_activation" + echo '
'; - // Nastavitve ankete + // Nastavitve ankete - ikona $d = new Dostop(); if ($d->checkDostopSub('edit')) { + echo '
'; + if ($hierarhija_type == 10) { echo ' '; + echo ''; + echo ' '; } else { echo ' '; + echo ''; + echo ' '; } - echo ''; - echo ' '; + echo '
'; } @@ -890,7 +818,7 @@ class SurveyAdmin $button_text = ($current_package == '2') ? $lang['srv_access_upgrade2'] : $lang['srv_access_upgrade']; - echo '
'; + echo '
'; echo ''; echo '
'; } @@ -901,8 +829,10 @@ class SurveyAdmin $reloadSetting = ($_GET['a'] == "nastavitve") ? "'1'" : "'0'"; echo ''; - echo '
'; + + echo '
'; + SurveySetting::getInstance()->Init($this->anketa); // komentar na anketo, ki je vedno viden @@ -940,7 +870,6 @@ class SurveyAdmin $css_objava = 'off'; $css_data = 'off'; $css_analysis = 'off'; - $separatorli = '
  •  
  • '; if ($this->first_action == NAVI_STATUS) { $css_status = 'on'; @@ -969,14 +898,14 @@ class SurveyAdmin echo '
    '; echo ''; - echo '
      '; + echo '
        '; if ($this->skin == 0 /*&& $this->checkDostopAktiven()*/ && $this->isAnketar == false) { - echo $separatorli; + echo '
      1. '; if ($d->checkDostopSub('dashboard')) @@ -1004,7 +933,6 @@ class SurveyAdmin echo '
      2. '; } - echo $separatorli; echo '
      3. '; if ($d->checkDostopSub('edit') && $hierarhija_type < 5) { echo ''; @@ -1019,7 +947,7 @@ class SurveyAdmin # testiranje - ne prikazemo v glasovanju if ($this->survey_type != 0 && $this->survey_type != 1) { - echo $separatorli; + echo '
      4. '; if ($d->checkDostopSub('test')) { echo ''; @@ -1033,6 +961,7 @@ class SurveyAdmin echo '
      5. '; } + # če ni manager mora iti na vabila if (SurveyInfo::getInstance()->checkSurveyModule('email') && $this->user_role_cehck(U_ROLE_MANAGER) == true) { $link = 'invitations'; @@ -1041,13 +970,11 @@ class SurveyAdmin $link = A_VABILA; } - echo $separatorli; echo '
      6. '; if ($d->checkDostopSub('publish')) { echo ''; } echo '
        ' . $lang['srv_vabila'] . '
        '; - //echo $css_objavaRight; if ($d->checkDostopSub('publish')) { echo '
        '; } @@ -1056,7 +983,7 @@ class SurveyAdmin // Podatki - ne prikazemo v glasovanju if ($this->survey_type != 0) { - echo $separatorli; + echo '
      7. '; if ($d->checkDostopSub('data')) { echo ''; @@ -1080,7 +1007,7 @@ class SurveyAdmin } else { $_goto_m = '&m=' . M_ANALYSIS_SUMMARY; } - echo $separatorli; + echo '
      8. '; if ($d->checkDostopSub('analyse') && !isset($modules['hierarhija'])) { @@ -2138,6 +2065,91 @@ class SurveyAdmin } } + + // Priakz footerja + private function displayFooter(){ + global $lang; + global $site_frontend; + global $mysql_database_name; + + + echo ''; + } + + // Pohendla prikazovanje vsebine ankete private function displayAnketa(){ global $global_user_id; @@ -6779,6 +6791,8 @@ class SurveyAdmin // Predogled in testiranje (ikona monitor) + echo '
        '; + echo ''; echo ' '; echo ''; @@ -6817,25 +6831,33 @@ class SurveyAdmin echo ''; // expanded-tooltip bottom echo ''; // request-help - # url ankete - echo ''; + echo '
        '; + + + // URL ankete + echo '
        '; + if ($row['active'] == 1 && !SurveyInfo::getInstance()->checkSurveyModule('hierarhija')) { echo ''; //echo '  echo $link; echo ''; - } elseif (SurveyInfo::getInstance()->checkSurveyModule('hierarhija')) { + } + elseif (SurveyInfo::getInstance()->checkSurveyModule('hierarhija')) { echo ''.$site_url.'sa'; - } else { + } + else { echo $link; } - echo '  '; + + echo '
        '; + $d = new Dostop(); if ($d->checkDostopAktiven()) { - echo ''; + echo '
        '; if (SurveyInfo::getSurveyColumn('active') == 1) { # anketa je aktivna @@ -6878,6 +6900,12 @@ class SurveyAdmin echo ''; } + echo '
        '; + + + // Ikona kljucavnice + echo '
        '; + // Ce ima uporabnik prepreceno moznost odklepanja ankete, anketo ima vedno zaklenjeno če je vklopljena hierarhija $prevent_unlock = (SurveyInfo::getSurveyModules('hierarhija') == 2 || $d->checkDostopSub('lock') && $row['locked'] == 1 && ($admin_type != 0 && $admin_type != 1)) ? 1 : 0; if ($prevent_unlock == 1) { @@ -6897,7 +6925,7 @@ class SurveyAdmin echo ''; } - echo ''; + echo '
        '; } } diff --git a/admin/survey/SurveyAdminSettings.php b/admin/survey/SurveyAdminSettings.php index 63ba87ed4..9a6692dd8 100644 --- a/admin/survey/SurveyAdminSettings.php +++ b/admin/survey/SurveyAdminSettings.php @@ -106,20 +106,20 @@ class SurveyAdminSettings { echo '
        '; echo ''; - echo ''; - echo '' . strlen($row['naslov']) . '/'.ANKETA_NASLOV_MAXLENGTH.''; + echo ''; + echo '' . strlen($row['naslov']) . '/'.ANKETA_NASLOV_MAXLENGTH.''; echo '
        '; echo '
        '; echo ''; - echo ''; - echo '' . strlen($row['akronim']) . '/'.ANKETA_AKRONIM_MAXLENGTH.''; + echo ''; + echo '' . strlen($row['akronim']) . '/'.ANKETA_AKRONIM_MAXLENGTH.''; echo '
        '; echo '
        '; echo ''; - echo ''; - echo '' . strlen($row['intro_opomba']) . '/'.ANKETA_NOTE_MAXLENGTH.''; + echo ''; + echo '' . strlen($row['intro_opomba']) . '/'.ANKETA_NOTE_MAXLENGTH.''; echo '
        '; // Ce ima uporabnik mape, lahko izbere v katero mapo se anketa uvrsti @@ -695,9 +695,9 @@ class SurveyAdminSettings { // Pri volitvah ne moremo popravljati nastavitev piskotka if(SurveyInfo::getInstance()->checkSurveyModule('voting')){ - echo '
        '; + echo '
        '; echo '' . $lang['srv_cookie'] . ''; - echo ''.$lang['srv_voting_no_cookie'].''; + echo ''.$lang['srv_voting_no_cookie'].''; echo '
        '; echo ''; @@ -705,9 +705,9 @@ class SurveyAdminSettings { return; } - echo '
        '; + echo '
        '; - echo '
        '; // Masovno vnasanje - modul Vnos - echo '
        '.$lang['srv_vrsta_survey_type_5'].''; + echo '
        '.$lang['srv_vrsta_survey_type_5'].''; - echo '

        '.$lang['srv_vnos_navodila'].'

        '; + echo '
        '; + echo '

        '.$lang['srv_vnos_navodila'].'

        '; + echo '
        '; - echo ' '; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; + echo '
        '; + echo '' . $lang['srv_mass_input']. Help :: display('srv_mass_insert') . ':'; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; // For modul maza, show all cookie settings @@ -825,22 +904,21 @@ class SurveyAdminSettings { $sqlDostopAvtor = sisplet_query($stringDostopAvtor); $rowDostopAvtor = mysqli_fetch_assoc($sqlDostopAvtor); $avtorRow = SurveyInfo::getInstance()->getSurveyRow(); - - - echo '
        '; echo '
        '; echo '' . $lang['access'] . ''; - echo ''; - echo ' '; - echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo ''."\n"; - - echo '
        '; - - echo ''; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; - echo ' ' . "\n\r"; - echo '

        '.$lang['srv_block_ip_warning'].''; + + echo '
        '; + echo '' . $lang['srv_block_ip'] . Help :: display('srv_block_ip') . ':'; + + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + echo '
        '; + echo ''; + echo ''; + echo '
        '; + + echo '
        '; + + echo '
        '; + echo ''.$lang['srv_block_ip_warning'].''; + echo '
        '; + echo '
        '; - - - echo '
        '; - // Preverimo, ce je funkcionalnost v paketu, ki ga ima uporabnik global $global_user_id; @@ -881,7 +979,7 @@ class SurveyAdminSettings { } else{ - echo '
        '; + echo '
        '; $ss = new SurveySkupine($this->anketa); $spr_id = $ss->hasSkupine(2); @@ -912,9 +1010,14 @@ class SurveyAdminSettings { } } } - echo '

        '; - - echo ''.$lang['srv_password_add_mass'].''; + + echo '
        '; + echo ''; + echo ''; + echo '
        '; + + echo ''.$lang['srv_password_add_mass'].''; + echo '
        '; } @@ -8526,7 +8629,7 @@ class SurveyAdminSettings { echo '' . $lang['srv_activate_duration_manual_from'].''; echo '
        '; echo ''; - echo ''; + echo ''; echo '
        '; echo '
        '; @@ -8534,7 +8637,7 @@ class SurveyAdminSettings { echo '' . $lang['srv_activate_duration_manual_to'].''; echo '
        '; echo ''; - echo ''; + echo ''; echo '
        '; echo '
    '; diff --git a/admin/survey/classes/class.SurveyCopy.php b/admin/survey/classes/class.SurveyCopy.php index 18529e506..f27221104 100644 --- a/admin/survey/classes/class.SurveyCopy.php +++ b/admin/survey/classes/class.SurveyCopy.php @@ -1177,7 +1177,7 @@ class SurveyCopy { $dest_value = "''"; } // ce je polje NULL, ga moramo rocno nastavit na NULL - elseif ( $row_src[$dest_field] === NULL && !isset($pre_set[$dest_field]) ) { + elseif ( $row_src[$dest_field] === NULL ) { $dest_value = "NULL"; } else { diff --git a/frontend/api/class.ApiLogin.php b/frontend/api/class.ApiLogin.php index 798918d10..9b2b3216a 100644 --- a/frontend/api/class.ApiLogin.php +++ b/frontend/api/class.ApiLogin.php @@ -1306,6 +1306,13 @@ class ApiLogin // naredi link za aktivacijo $code = base64_encode((hash('SHA256', time().$pass_salt.$email.$ime))); + + // Dodatno preverimo ce imamo vse podatke da ne morejo spamati - dodatno varnostno + if ($email == '' || !validEmail($email) || $ime == '' || $g == '') { + die(); + } + + // Vstavimo novega userja v users_to_be kjer caka na aktivacijo $result = sisplet_query("INSERT INTO users_to_be (type, email, name, surname, pass, status, gdpr_agree, when_reg, came_from, timecode, code, lang) diff --git a/public/css/admin_new.css b/public/css/admin_new.css index dcb7133cb..b57ee32ae 100644 --- a/public/css/admin_new.css +++ b/public/css/admin_new.css @@ -1,3 +1,4 @@ +@charset "UTF-8"; /* Main scss with includes */ @@ -213,4767 +214,4767 @@ /* 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: "\f26e"; + content: ""; } .fa-accessible-icon:before { - content: "\f368"; + content: ""; } .fa-accusoft:before { - content: "\f369"; + content: ""; } .fa-ad:before { - content: "\f641"; + content: ""; } .fa-address-book:before { - content: "\f2b9"; + content: ""; } .fa-address-card:before { - content: "\f2bb"; + content: ""; } .fa-adjust:before { - content: "\f042"; + content: ""; } .fa-adn:before { - content: "\f170"; + content: ""; } .fa-adversal:before { - content: "\f36a"; + content: ""; } .fa-affiliatetheme:before { - content: "\f36b"; + content: ""; } .fa-air-freshener:before { - content: "\f5d0"; + content: ""; } .fa-algolia:before { - content: "\f36c"; + content: ""; } .fa-align-center:before { - content: "\f037"; + content: ""; } .fa-align-justify:before { - content: "\f039"; + content: ""; } .fa-align-left:before { - content: "\f036"; + content: ""; } .fa-align-right:before { - content: "\f038"; + content: ""; } .fa-alipay:before { - content: "\f642"; + content: ""; } .fa-allergies:before { - content: "\f461"; + content: ""; } .fa-amazon:before { - content: "\f270"; + content: ""; } .fa-amazon-pay:before { - content: "\f42c"; + content: ""; } .fa-ambulance:before { - content: "\f0f9"; + content: ""; } .fa-american-sign-language-interpreting:before { - content: "\f2a3"; + content: ""; } .fa-amilia:before { - content: "\f36d"; + content: ""; } .fa-anchor:before { - content: "\f13d"; + content: ""; } .fa-android:before { - content: "\f17b"; + content: ""; } .fa-angellist:before { - content: "\f209"; + content: ""; } .fa-angle-double-down:before { - content: "\f103"; + content: ""; } .fa-angle-double-left:before { - content: "\f100"; + content: ""; } .fa-angle-double-right:before { - content: "\f101"; + content: ""; } .fa-angle-double-up:before { - content: "\f102"; + content: ""; } .fa-angle-down:before { - content: "\f107"; + content: ""; } .fa-angle-left:before { - content: "\f104"; + content: ""; } .fa-angle-right:before { - content: "\f105"; + content: ""; } .fa-angle-up:before { - content: "\f106"; + content: ""; } .fa-angry:before { - content: "\f556"; + content: ""; } .fa-angrycreative:before { - content: "\f36e"; + content: ""; } .fa-angular:before { - content: "\f420"; + content: ""; } .fa-ankh:before { - content: "\f644"; + content: ""; } .fa-app-store:before { - content: "\f36f"; + content: ""; } .fa-app-store-ios:before { - content: "\f370"; + content: ""; } .fa-apper:before { - content: "\f371"; + content: ""; } .fa-apple:before { - content: "\f179"; + content: ""; } .fa-apple-alt:before { - content: "\f5d1"; + content: ""; } .fa-apple-pay:before { - content: "\f415"; + content: ""; } .fa-archive:before { - content: "\f187"; + content: ""; } .fa-archway:before { - content: "\f557"; + content: ""; } .fa-arrow-alt-circle-down:before { - content: "\f358"; + content: ""; } .fa-arrow-alt-circle-left:before { - content: "\f359"; + content: ""; } .fa-arrow-alt-circle-right:before { - content: "\f35a"; + content: ""; } .fa-arrow-alt-circle-up:before { - content: "\f35b"; + content: ""; } .fa-arrow-circle-down:before { - content: "\f0ab"; + content: ""; } .fa-arrow-circle-left:before { - content: "\f0a8"; + content: ""; } .fa-arrow-circle-right:before { - content: "\f0a9"; + content: ""; } .fa-arrow-circle-up:before { - content: "\f0aa"; + content: ""; } .fa-arrow-down:before { - content: "\f063"; + content: ""; } .fa-arrow-left:before { - content: "\f060"; + content: ""; } .fa-arrow-right:before { - content: "\f061"; + content: ""; } .fa-arrow-up:before { - content: "\f062"; + content: ""; } .fa-arrows-alt:before { - content: "\f0b2"; + content: ""; } .fa-arrows-alt-h:before { - content: "\f337"; + content: ""; } .fa-arrows-alt-v:before { - content: "\f338"; + content: ""; } .fa-assistive-listening-systems:before { - content: "\f2a2"; + content: ""; } .fa-asterisk:before { - content: "\f069"; + content: ""; } .fa-asymmetrik:before { - content: "\f372"; + content: ""; } .fa-at:before { - content: "\f1fa"; + content: ""; } .fa-atlas:before { - content: "\f558"; + content: ""; } .fa-atom:before { - content: "\f5d2"; + content: ""; } .fa-audible:before { - content: "\f373"; + content: ""; } .fa-audio-description:before { - content: "\f29e"; + content: ""; } .fa-autoprefixer:before { - content: "\f41c"; + content: ""; } .fa-avianex:before { - content: "\f374"; + content: ""; } .fa-aviato:before { - content: "\f421"; + content: ""; } .fa-award:before { - content: "\f559"; + content: ""; } .fa-aws:before { - content: "\f375"; + content: ""; } .fa-backspace:before { - content: "\f55a"; + content: ""; } .fa-backward:before { - content: "\f04a"; + content: ""; } .fa-balance-scale:before { - content: "\f24e"; + content: ""; } .fa-ban:before { - content: "\f05e"; + content: ""; } .fa-band-aid:before { - content: "\f462"; + content: ""; } .fa-bandcamp:before { - content: "\f2d5"; + content: ""; } .fa-barcode:before { - content: "\f02a"; + content: ""; } .fa-bars:before { - content: "\f0c9"; + content: ""; } .fa-baseball-ball:before { - content: "\f433"; + content: ""; } .fa-basketball-ball:before { - content: "\f434"; + content: ""; } .fa-bath:before { - content: "\f2cd"; + content: ""; } .fa-battery-empty:before { - content: "\f244"; + content: ""; } .fa-battery-full:before { - content: "\f240"; + content: ""; } .fa-battery-half:before { - content: "\f242"; + content: ""; } .fa-battery-quarter:before { - content: "\f243"; + content: ""; } .fa-battery-three-quarters:before { - content: "\f241"; + content: ""; } .fa-bed:before { - content: "\f236"; + content: ""; } .fa-beer:before { - content: "\f0fc"; + content: ""; } .fa-behance:before { - content: "\f1b4"; + content: ""; } .fa-behance-square:before { - content: "\f1b5"; + content: ""; } .fa-bell:before { - content: "\f0f3"; + content: ""; } .fa-bell-slash:before { - content: "\f1f6"; + content: ""; } .fa-bezier-curve:before { - content: "\f55b"; + content: ""; } .fa-bible:before { - content: "\f647"; + content: ""; } .fa-bicycle:before { - content: "\f206"; + content: ""; } .fa-bimobject:before { - content: "\f378"; + content: ""; } .fa-binoculars:before { - content: "\f1e5"; + content: ""; } .fa-birthday-cake:before { - content: "\f1fd"; + content: ""; } .fa-bitbucket:before { - content: "\f171"; + content: ""; } .fa-bitcoin:before { - content: "\f379"; + content: ""; } .fa-bity:before { - content: "\f37a"; + content: ""; } .fa-black-tie:before { - content: "\f27e"; + content: ""; } .fa-blackberry:before { - content: "\f37b"; + content: ""; } .fa-blender:before { - content: "\f517"; + content: ""; } .fa-blind:before { - content: "\f29d"; + content: ""; } .fa-blogger:before { - content: "\f37c"; + content: ""; } .fa-blogger-b:before { - content: "\f37d"; + content: ""; } .fa-bluetooth:before { - content: "\f293"; + content: ""; } .fa-bluetooth-b:before { - content: "\f294"; + content: ""; } .fa-bold:before { - content: "\f032"; + content: ""; } .fa-bolt:before { - content: "\f0e7"; + content: ""; } .fa-bomb:before { - content: "\f1e2"; + content: ""; } .fa-bone:before { - content: "\f5d7"; + content: ""; } .fa-bong:before { - content: "\f55c"; + content: ""; } .fa-book:before { - content: "\f02d"; + content: ""; } .fa-book-open:before { - content: "\f518"; + content: ""; } .fa-book-reader:before { - content: "\f5da"; + content: ""; } .fa-bookmark:before { - content: "\f02e"; + content: ""; } .fa-bowling-ball:before { - content: "\f436"; + content: ""; } .fa-box:before { - content: "\f466"; + content: ""; } .fa-box-open:before { - content: "\f49e"; + content: ""; } .fa-boxes:before { - content: "\f468"; + content: ""; } .fa-braille:before { - content: "\f2a1"; + content: ""; } .fa-brain:before { - content: "\f5dc"; + content: ""; } .fa-briefcase:before { - content: "\f0b1"; + content: ""; } .fa-briefcase-medical:before { - content: "\f469"; + content: ""; } .fa-broadcast-tower:before { - content: "\f519"; + content: ""; } .fa-broom:before { - content: "\f51a"; + content: ""; } .fa-brush:before { - content: "\f55d"; + content: ""; } .fa-btc:before { - content: "\f15a"; + content: ""; } .fa-bug:before { - content: "\f188"; + content: ""; } .fa-building:before { - content: "\f1ad"; + content: ""; } .fa-bullhorn:before { - content: "\f0a1"; + content: ""; } .fa-bullseye:before { - content: "\f140"; + content: ""; } .fa-burn:before { - content: "\f46a"; + content: ""; } .fa-buromobelexperte:before { - content: "\f37f"; + content: ""; } .fa-bus:before { - content: "\f207"; + content: ""; } .fa-bus-alt:before { - content: "\f55e"; + content: ""; } .fa-business-time:before { - content: "\f64a"; + content: ""; } .fa-buysellads:before { - content: "\f20d"; + content: ""; } .fa-calculator:before { - content: "\f1ec"; + content: ""; } .fa-calendar:before { - content: "\f133"; + content: ""; } .fa-calendar-alt:before { - content: "\f073"; + content: ""; } .fa-calendar-check:before { - content: "\f274"; + content: ""; } .fa-calendar-minus:before { - content: "\f272"; + content: ""; } .fa-calendar-plus:before { - content: "\f271"; + content: ""; } .fa-calendar-times:before { - content: "\f273"; + content: ""; } .fa-camera:before { - content: "\f030"; + content: ""; } .fa-camera-retro:before { - content: "\f083"; + content: ""; } .fa-cannabis:before { - content: "\f55f"; + content: ""; } .fa-capsules:before { - content: "\f46b"; + content: ""; } .fa-car:before { - content: "\f1b9"; + content: ""; } .fa-car-alt:before { - content: "\f5de"; + content: ""; } .fa-car-battery:before { - content: "\f5df"; + content: ""; } .fa-car-crash:before { - content: "\f5e1"; + content: ""; } .fa-car-side:before { - content: "\f5e4"; + content: ""; } .fa-caret-down:before { - content: "\f0d7"; + content: ""; } .fa-caret-left:before { - content: "\f0d9"; + content: ""; } .fa-caret-right:before { - content: "\f0da"; + content: ""; } .fa-caret-square-down:before { - content: "\f150"; + content: ""; } .fa-caret-square-left:before { - content: "\f191"; + content: ""; } .fa-caret-square-right:before { - content: "\f152"; + content: ""; } .fa-caret-square-up:before { - content: "\f151"; + content: ""; } .fa-caret-up:before { - content: "\f0d8"; + content: ""; } .fa-cart-arrow-down:before { - content: "\f218"; + content: ""; } .fa-cart-plus:before { - content: "\f217"; + content: ""; } .fa-cc-amazon-pay:before { - content: "\f42d"; + content: ""; } .fa-cc-amex:before { - content: "\f1f3"; + content: ""; } .fa-cc-apple-pay:before { - content: "\f416"; + content: ""; } .fa-cc-diners-club:before { - content: "\f24c"; + content: ""; } .fa-cc-discover:before { - content: "\f1f2"; + content: ""; } .fa-cc-jcb:before { - content: "\f24b"; + content: ""; } .fa-cc-mastercard:before { - content: "\f1f1"; + content: ""; } .fa-cc-paypal:before { - content: "\f1f4"; + content: ""; } .fa-cc-stripe:before { - content: "\f1f5"; + content: ""; } .fa-cc-visa:before { - content: "\f1f0"; + content: ""; } .fa-centercode:before { - content: "\f380"; + content: ""; } .fa-certificate:before { - content: "\f0a3"; + content: ""; } .fa-chalkboard:before { - content: "\f51b"; + content: ""; } .fa-chalkboard-teacher:before { - content: "\f51c"; + content: ""; } .fa-charging-station:before { - content: "\f5e7"; + content: ""; } .fa-chart-area:before { - content: "\f1fe"; + content: ""; } .fa-chart-bar:before { - content: "\f080"; + content: ""; } .fa-chart-line:before { - content: "\f201"; + content: ""; } .fa-chart-pie:before { - content: "\f200"; + content: ""; } .fa-check:before { - content: "\f00c"; + content: ""; } .fa-check-circle:before { - content: "\f058"; + content: ""; } .fa-check-double:before { - content: "\f560"; + content: ""; } .fa-check-square:before { - content: "\f14a"; + content: ""; } .fa-chess:before { - content: "\f439"; + content: ""; } .fa-chess-bishop:before { - content: "\f43a"; + content: ""; } .fa-chess-board:before { - content: "\f43c"; + content: ""; } .fa-chess-king:before { - content: "\f43f"; + content: ""; } .fa-chess-knight:before { - content: "\f441"; + content: ""; } .fa-chess-pawn:before { - content: "\f443"; + content: ""; } .fa-chess-queen:before { - content: "\f445"; + content: ""; } .fa-chess-rook:before { - content: "\f447"; + content: ""; } .fa-chevron-circle-down:before { - content: "\f13a"; + content: ""; } .fa-chevron-circle-left:before { - content: "\f137"; + content: ""; } .fa-chevron-circle-right:before { - content: "\f138"; + content: ""; } .fa-chevron-circle-up:before { - content: "\f139"; + content: ""; } .fa-chevron-down:before { - content: "\f078"; + content: ""; } .fa-chevron-left:before { - content: "\f053"; + content: ""; } .fa-chevron-right:before { - content: "\f054"; + content: ""; } .fa-chevron-up:before { - content: "\f077"; + content: ""; } .fa-child:before { - content: "\f1ae"; + content: ""; } .fa-chrome:before { - content: "\f268"; + content: ""; } .fa-church:before { - content: "\f51d"; + content: ""; } .fa-circle:before { - content: "\f111"; + content: ""; } .fa-circle-notch:before { - content: "\f1ce"; + content: ""; } .fa-city:before { - content: "\f64f"; + content: ""; } .fa-clipboard:before { - content: "\f328"; + content: ""; } .fa-clipboard-check:before { - content: "\f46c"; + content: ""; } .fa-clipboard-list:before { - content: "\f46d"; + content: ""; } .fa-clock:before { - content: "\f017"; + content: ""; } .fa-clone:before { - content: "\f24d"; + content: ""; } .fa-closed-captioning:before { - content: "\f20a"; + content: ""; } .fa-cloud:before { - content: "\f0c2"; + content: ""; } .fa-cloud-download-alt:before { - content: "\f381"; + content: ""; } .fa-cloud-upload-alt:before { - content: "\f382"; + content: ""; } .fa-cloudscale:before { - content: "\f383"; + content: ""; } .fa-cloudsmith:before { - content: "\f384"; + content: ""; } .fa-cloudversify:before { - content: "\f385"; + content: ""; } .fa-cocktail:before { - content: "\f561"; + content: ""; } .fa-code:before { - content: "\f121"; + content: ""; } .fa-code-branch:before { - content: "\f126"; + content: ""; } .fa-codepen:before { - content: "\f1cb"; + content: ""; } .fa-codiepie:before { - content: "\f284"; + content: ""; } .fa-coffee:before { - content: "\f0f4"; + content: ""; } .fa-cog:before { - content: "\f013"; + content: ""; } .fa-cogs:before { - content: "\f085"; + content: ""; } .fa-coins:before { - content: "\f51e"; + content: ""; } .fa-columns:before { - content: "\f0db"; + content: ""; } .fa-comment:before { - content: "\f075"; + content: ""; } .fa-comment-alt:before { - content: "\f27a"; + content: ""; } .fa-comment-dollar:before { - content: "\f651"; + content: ""; } .fa-comment-dots:before { - content: "\f4ad"; + content: ""; } .fa-comment-slash:before { - content: "\f4b3"; + content: ""; } .fa-comments:before { - content: "\f086"; + content: ""; } .fa-comments-dollar:before { - content: "\f653"; + content: ""; } .fa-compact-disc:before { - content: "\f51f"; + content: ""; } .fa-compass:before { - content: "\f14e"; + content: ""; } .fa-compress:before { - content: "\f066"; + content: ""; } .fa-concierge-bell:before { - content: "\f562"; + content: ""; } .fa-connectdevelop:before { - content: "\f20e"; + content: ""; } .fa-contao:before { - content: "\f26d"; + content: ""; } .fa-cookie:before { - content: "\f563"; + content: ""; } .fa-cookie-bite:before { - content: "\f564"; + content: ""; } .fa-copy:before { - content: "\f0c5"; + content: ""; } .fa-copyright:before { - content: "\f1f9"; + content: ""; } .fa-couch:before { - content: "\f4b8"; + content: ""; } .fa-cpanel:before { - content: "\f388"; + content: ""; } .fa-creative-commons:before { - content: "\f25e"; + content: ""; } .fa-creative-commons-by:before { - content: "\f4e7"; + content: ""; } .fa-creative-commons-nc:before { - content: "\f4e8"; + content: ""; } .fa-creative-commons-nc-eu:before { - content: "\f4e9"; + content: ""; } .fa-creative-commons-nc-jp:before { - content: "\f4ea"; + content: ""; } .fa-creative-commons-nd:before { - content: "\f4eb"; + content: ""; } .fa-creative-commons-pd:before { - content: "\f4ec"; + content: ""; } .fa-creative-commons-pd-alt:before { - content: "\f4ed"; + content: ""; } .fa-creative-commons-remix:before { - content: "\f4ee"; + content: ""; } .fa-creative-commons-sa:before { - content: "\f4ef"; + content: ""; } .fa-creative-commons-sampling:before { - content: "\f4f0"; + content: ""; } .fa-creative-commons-sampling-plus:before { - content: "\f4f1"; + content: ""; } .fa-creative-commons-share:before { - content: "\f4f2"; + content: ""; } .fa-credit-card:before { - content: "\f09d"; + content: ""; } .fa-crop:before { - content: "\f125"; + content: ""; } .fa-crop-alt:before { - content: "\f565"; + content: ""; } .fa-cross:before { - content: "\f654"; + content: ""; } .fa-crosshairs:before { - content: "\f05b"; + content: ""; } .fa-crow:before { - content: "\f520"; + content: ""; } .fa-crown:before { - content: "\f521"; + content: ""; } .fa-css3:before { - content: "\f13c"; + content: ""; } .fa-css3-alt:before { - content: "\f38b"; + content: ""; } .fa-cube:before { - content: "\f1b2"; + content: ""; } .fa-cubes:before { - content: "\f1b3"; + content: ""; } .fa-cut:before { - content: "\f0c4"; + content: ""; } .fa-cuttlefish:before { - content: "\f38c"; + content: ""; } .fa-d-and-d:before { - content: "\f38d"; + content: ""; } .fa-dashcube:before { - content: "\f210"; + content: ""; } .fa-database:before { - content: "\f1c0"; + content: ""; } .fa-deaf:before { - content: "\f2a4"; + content: ""; } .fa-delicious:before { - content: "\f1a5"; + content: ""; } .fa-deploydog:before { - content: "\f38e"; + content: ""; } .fa-deskpro:before { - content: "\f38f"; + content: ""; } .fa-desktop:before { - content: "\f108"; + content: ""; } .fa-deviantart:before { - content: "\f1bd"; + content: ""; } .fa-dharmachakra:before { - content: "\f655"; + content: ""; } .fa-diagnoses:before { - content: "\f470"; + content: ""; } .fa-dice:before { - content: "\f522"; + content: ""; } .fa-dice-five:before { - content: "\f523"; + content: ""; } .fa-dice-four:before { - content: "\f524"; + content: ""; } .fa-dice-one:before { - content: "\f525"; + content: ""; } .fa-dice-six:before { - content: "\f526"; + content: ""; } .fa-dice-three:before { - content: "\f527"; + content: ""; } .fa-dice-two:before { - content: "\f528"; + content: ""; } .fa-digg:before { - content: "\f1a6"; + content: ""; } .fa-digital-ocean:before { - content: "\f391"; + content: ""; } .fa-digital-tachograph:before { - content: "\f566"; + content: ""; } .fa-directions:before { - content: "\f5eb"; + content: ""; } .fa-discord:before { - content: "\f392"; + content: ""; } .fa-discourse:before { - content: "\f393"; + content: ""; } .fa-divide:before { - content: "\f529"; + content: ""; } .fa-dizzy:before { - content: "\f567"; + content: ""; } .fa-dna:before { - content: "\f471"; + content: ""; } .fa-dochub:before { - content: "\f394"; + content: ""; } .fa-docker:before { - content: "\f395"; + content: ""; } .fa-dollar-sign:before { - content: "\f155"; + content: ""; } .fa-dolly:before { - content: "\f472"; + content: ""; } .fa-dolly-flatbed:before { - content: "\f474"; + content: ""; } .fa-donate:before { - content: "\f4b9"; + content: ""; } .fa-door-closed:before { - content: "\f52a"; + content: ""; } .fa-door-open:before { - content: "\f52b"; + content: ""; } .fa-dot-circle:before { - content: "\f192"; + content: ""; } .fa-dove:before { - content: "\f4ba"; + content: ""; } .fa-download:before { - content: "\f019"; + content: ""; } .fa-draft2digital:before { - content: "\f396"; + content: ""; } .fa-drafting-compass:before { - content: "\f568"; + content: ""; } .fa-draw-polygon:before { - content: "\f5ee"; + content: ""; } .fa-dribbble:before { - content: "\f17d"; + content: ""; } .fa-dribbble-square:before { - content: "\f397"; + content: ""; } .fa-dropbox:before { - content: "\f16b"; + content: ""; } .fa-drum:before { - content: "\f569"; + content: ""; } .fa-drum-steelpan:before { - content: "\f56a"; + content: ""; } .fa-drupal:before { - content: "\f1a9"; + content: ""; } .fa-dumbbell:before { - content: "\f44b"; + content: ""; } .fa-dyalog:before { - content: "\f399"; + content: ""; } .fa-earlybirds:before { - content: "\f39a"; + content: ""; } .fa-ebay:before { - content: "\f4f4"; + content: ""; } .fa-edge:before { - content: "\f282"; + content: ""; } .fa-edit:before { - content: "\f044"; + content: ""; } .fa-eject:before { - content: "\f052"; + content: ""; } .fa-elementor:before { - content: "\f430"; + content: ""; } .fa-ellipsis-h:before { - content: "\f141"; + content: ""; } .fa-ellipsis-v:before { - content: "\f142"; + content: ""; } .fa-ello:before { - content: "\f5f1"; + content: ""; } .fa-ember:before { - content: "\f423"; + content: ""; } .fa-empire:before { - content: "\f1d1"; + content: ""; } .fa-envelope:before { - content: "\f0e0"; + content: ""; } .fa-envelope-open:before { - content: "\f2b6"; + content: ""; } .fa-envelope-open-text:before { - content: "\f658"; + content: ""; } .fa-envelope-square:before { - content: "\f199"; + content: ""; } .fa-envira:before { - content: "\f299"; + content: ""; } .fa-equals:before { - content: "\f52c"; + content: ""; } .fa-eraser:before { - content: "\f12d"; + content: ""; } .fa-erlang:before { - content: "\f39d"; + content: ""; } .fa-ethereum:before { - content: "\f42e"; + content: ""; } .fa-etsy:before { - content: "\f2d7"; + content: ""; } .fa-euro-sign:before { - content: "\f153"; + content: ""; } .fa-exchange-alt:before { - content: "\f362"; + content: ""; } .fa-exclamation:before { - content: "\f12a"; + content: ""; } .fa-exclamation-circle:before { - content: "\f06a"; + content: ""; } .fa-exclamation-triangle:before { - content: "\f071"; + content: ""; } .fa-expand:before { - content: "\f065"; + content: ""; } .fa-expand-arrows-alt:before { - content: "\f31e"; + content: ""; } .fa-expeditedssl:before { - content: "\f23e"; + content: ""; } .fa-external-link-alt:before { - content: "\f35d"; + content: ""; } .fa-external-link-square-alt:before { - content: "\f360"; + content: ""; } .fa-eye:before { - content: "\f06e"; + content: ""; } .fa-eye-dropper:before { - content: "\f1fb"; + content: ""; } .fa-eye-slash:before { - content: "\f070"; + content: ""; } .fa-facebook:before { - content: "\f09a"; + content: ""; } .fa-facebook-f:before { - content: "\f39e"; + content: ""; } .fa-facebook-messenger:before { - content: "\f39f"; + content: ""; } .fa-facebook-square:before { - content: "\f082"; + content: ""; } .fa-fast-backward:before { - content: "\f049"; + content: ""; } .fa-fast-forward:before { - content: "\f050"; + content: ""; } .fa-fax:before { - content: "\f1ac"; + content: ""; } .fa-feather:before { - content: "\f52d"; + content: ""; } .fa-feather-alt:before { - content: "\f56b"; + content: ""; } .fa-female:before { - content: "\f182"; + content: ""; } .fa-fighter-jet:before { - content: "\f0fb"; + content: ""; } .fa-file:before { - content: "\f15b"; + content: ""; } .fa-file-alt:before { - content: "\f15c"; + content: ""; } .fa-file-archive:before { - content: "\f1c6"; + content: ""; } .fa-file-audio:before { - content: "\f1c7"; + content: ""; } .fa-file-code:before { - content: "\f1c9"; + content: ""; } .fa-file-contract:before { - content: "\f56c"; + content: ""; } .fa-file-download:before { - content: "\f56d"; + content: ""; } .fa-file-excel:before { - content: "\f1c3"; + content: ""; } .fa-file-export:before { - content: "\f56e"; + content: ""; } .fa-file-image:before { - content: "\f1c5"; + content: ""; } .fa-file-import:before { - content: "\f56f"; + content: ""; } .fa-file-invoice:before { - content: "\f570"; + content: ""; } .fa-file-invoice-dollar:before { - content: "\f571"; + content: ""; } .fa-file-medical:before { - content: "\f477"; + content: ""; } .fa-file-medical-alt:before { - content: "\f478"; + content: ""; } .fa-file-pdf:before { - content: "\f1c1"; + content: ""; } .fa-file-powerpoint:before { - content: "\f1c4"; + content: ""; } .fa-file-prescription:before { - content: "\f572"; + content: ""; } .fa-file-signature:before { - content: "\f573"; + content: ""; } .fa-file-upload:before { - content: "\f574"; + content: ""; } .fa-file-video:before { - content: "\f1c8"; + content: ""; } .fa-file-word:before { - content: "\f1c2"; + content: ""; } .fa-fill:before { - content: "\f575"; + content: ""; } .fa-fill-drip:before { - content: "\f576"; + content: ""; } .fa-film:before { - content: "\f008"; + content: ""; } .fa-filter:before { - content: "\f0b0"; + content: ""; } .fa-fingerprint:before { - content: "\f577"; + content: ""; } .fa-fire:before { - content: "\f06d"; + content: ""; } .fa-fire-extinguisher:before { - content: "\f134"; + content: ""; } .fa-firefox:before { - content: "\f269"; + content: ""; } .fa-first-aid:before { - content: "\f479"; + content: ""; } .fa-first-order:before { - content: "\f2b0"; + content: ""; } .fa-first-order-alt:before { - content: "\f50a"; + content: ""; } .fa-firstdraft:before { - content: "\f3a1"; + content: ""; } .fa-fish:before { - content: "\f578"; + content: ""; } .fa-flag:before { - content: "\f024"; + content: ""; } .fa-flag-checkered:before { - content: "\f11e"; + content: ""; } .fa-flask:before { - content: "\f0c3"; + content: ""; } .fa-flickr:before { - content: "\f16e"; + content: ""; } .fa-flipboard:before { - content: "\f44d"; + content: ""; } .fa-flushed:before { - content: "\f579"; + content: ""; } .fa-fly:before { - content: "\f417"; + content: ""; } .fa-folder:before { - content: "\f07b"; + content: ""; } .fa-folder-minus:before { - content: "\f65d"; + content: ""; } .fa-folder-open:before { - content: "\f07c"; + content: ""; } .fa-folder-plus:before { - content: "\f65e"; + content: ""; } .fa-font:before { - content: "\f031"; + content: ""; } .fa-font-awesome:before { - content: "\f2b4"; + content: ""; } .fa-font-awesome-alt:before { - content: "\f35c"; + content: ""; } .fa-font-awesome-flag:before { - content: "\f425"; + content: ""; } .fa-font-awesome-logo-full:before { - content: "\f4e6"; + content: ""; } .fa-fonticons:before { - content: "\f280"; + content: ""; } .fa-fonticons-fi:before { - content: "\f3a2"; + content: ""; } .fa-football-ball:before { - content: "\f44e"; + content: ""; } .fa-fort-awesome:before { - content: "\f286"; + content: ""; } .fa-fort-awesome-alt:before { - content: "\f3a3"; + content: ""; } .fa-forumbee:before { - content: "\f211"; + content: ""; } .fa-forward:before { - content: "\f04e"; + content: ""; } .fa-foursquare:before { - content: "\f180"; + content: ""; } .fa-free-code-camp:before { - content: "\f2c5"; + content: ""; } .fa-freebsd:before { - content: "\f3a4"; + content: ""; } .fa-frog:before { - content: "\f52e"; + content: ""; } .fa-frown:before { - content: "\f119"; + content: ""; } .fa-frown-open:before { - content: "\f57a"; + content: ""; } .fa-fulcrum:before { - content: "\f50b"; + content: ""; } .fa-funnel-dollar:before { - content: "\f662"; + content: ""; } .fa-futbol:before { - content: "\f1e3"; + content: ""; } .fa-galactic-republic:before { - content: "\f50c"; + content: ""; } .fa-galactic-senate:before { - content: "\f50d"; + content: ""; } .fa-gamepad:before { - content: "\f11b"; + content: ""; } .fa-gas-pump:before { - content: "\f52f"; + content: ""; } .fa-gavel:before { - content: "\f0e3"; + content: ""; } .fa-gem:before { - content: "\f3a5"; + content: ""; } .fa-genderless:before { - content: "\f22d"; + content: ""; } .fa-get-pocket:before { - content: "\f265"; + content: ""; } .fa-gg:before { - content: "\f260"; + content: ""; } .fa-gg-circle:before { - content: "\f261"; + content: ""; } .fa-gift:before { - content: "\f06b"; + content: ""; } .fa-git:before { - content: "\f1d3"; + content: ""; } .fa-git-square:before { - content: "\f1d2"; + content: ""; } .fa-github:before { - content: "\f09b"; + content: ""; } .fa-github-alt:before { - content: "\f113"; + content: ""; } .fa-github-square:before { - content: "\f092"; + content: ""; } .fa-gitkraken:before { - content: "\f3a6"; + content: ""; } .fa-gitlab:before { - content: "\f296"; + content: ""; } .fa-gitter:before { - content: "\f426"; + content: ""; } .fa-glass-martini:before { - content: "\f000"; + content: ""; } .fa-glass-martini-alt:before { - content: "\f57b"; + content: ""; } .fa-glasses:before { - content: "\f530"; + content: ""; } .fa-glide:before { - content: "\f2a5"; + content: ""; } .fa-glide-g:before { - content: "\f2a6"; + content: ""; } .fa-globe:before { - content: "\f0ac"; + content: ""; } .fa-globe-africa:before { - content: "\f57c"; + content: ""; } .fa-globe-americas:before { - content: "\f57d"; + content: ""; } .fa-globe-asia:before { - content: "\f57e"; + content: ""; } .fa-gofore:before { - content: "\f3a7"; + content: ""; } .fa-golf-ball:before { - content: "\f450"; + content: ""; } .fa-goodreads:before { - content: "\f3a8"; + content: ""; } .fa-goodreads-g:before { - content: "\f3a9"; + content: ""; } .fa-google:before { - content: "\f1a0"; + content: ""; } .fa-google-drive:before { - content: "\f3aa"; + content: ""; } .fa-google-play:before { - content: "\f3ab"; + content: ""; } .fa-google-plus:before { - content: "\f2b3"; + content: ""; } .fa-google-plus-g:before { - content: "\f0d5"; + content: ""; } .fa-google-plus-square:before { - content: "\f0d4"; + content: ""; } .fa-google-wallet:before { - content: "\f1ee"; + content: ""; } .fa-gopuram:before { - content: "\f664"; + content: ""; } .fa-graduation-cap:before { - content: "\f19d"; + content: ""; } .fa-gratipay:before { - content: "\f184"; + content: ""; } .fa-grav:before { - content: "\f2d6"; + content: ""; } .fa-greater-than:before { - content: "\f531"; + content: ""; } .fa-greater-than-equal:before { - content: "\f532"; + content: ""; } .fa-grimace:before { - content: "\f57f"; + content: ""; } .fa-grin:before { - content: "\f580"; + content: ""; } .fa-grin-alt:before { - content: "\f581"; + content: ""; } .fa-grin-beam:before { - content: "\f582"; + content: ""; } .fa-grin-beam-sweat:before { - content: "\f583"; + content: ""; } .fa-grin-hearts:before { - content: "\f584"; + content: ""; } .fa-grin-squint:before { - content: "\f585"; + content: ""; } .fa-grin-squint-tears:before { - content: "\f586"; + content: ""; } .fa-grin-stars:before { - content: "\f587"; + content: ""; } .fa-grin-tears:before { - content: "\f588"; + content: ""; } .fa-grin-tongue:before { - content: "\f589"; + content: ""; } .fa-grin-tongue-squint:before { - content: "\f58a"; + content: ""; } .fa-grin-tongue-wink:before { - content: "\f58b"; + content: ""; } .fa-grin-wink:before { - content: "\f58c"; + content: ""; } .fa-grip-horizontal:before { - content: "\f58d"; + content: ""; } .fa-grip-vertical:before { - content: "\f58e"; + content: ""; } .fa-gripfire:before { - content: "\f3ac"; + content: ""; } .fa-grunt:before { - content: "\f3ad"; + content: ""; } .fa-gulp:before { - content: "\f3ae"; + content: ""; } .fa-h-square:before { - content: "\f0fd"; + content: ""; } .fa-hacker-news:before { - content: "\f1d4"; + content: ""; } .fa-hacker-news-square:before { - content: "\f3af"; + content: ""; } .fa-hackerrank:before { - content: "\f5f7"; + content: ""; } .fa-hamsa:before { - content: "\f665"; + content: ""; } .fa-hand-holding:before { - content: "\f4bd"; + content: ""; } .fa-hand-holding-heart:before { - content: "\f4be"; + content: ""; } .fa-hand-holding-usd:before { - content: "\f4c0"; + content: ""; } .fa-hand-lizard:before { - content: "\f258"; + content: ""; } .fa-hand-paper:before { - content: "\f256"; + content: ""; } .fa-hand-peace:before { - content: "\f25b"; + content: ""; } .fa-hand-point-down:before { - content: "\f0a7"; + content: ""; } .fa-hand-point-left:before { - content: "\f0a5"; + content: ""; } .fa-hand-point-right:before { - content: "\f0a4"; + content: ""; } .fa-hand-point-up:before { - content: "\f0a6"; + content: ""; } .fa-hand-pointer:before { - content: "\f25a"; + content: ""; } .fa-hand-rock:before { - content: "\f255"; + content: ""; } .fa-hand-scissors:before { - content: "\f257"; + content: ""; } .fa-hand-spock:before { - content: "\f259"; + content: ""; } .fa-hands:before { - content: "\f4c2"; + content: ""; } .fa-hands-helping:before { - content: "\f4c4"; + content: ""; } .fa-handshake:before { - content: "\f2b5"; + content: ""; } .fa-hashtag:before { - content: "\f292"; + content: ""; } .fa-haykal:before { - content: "\f666"; + content: ""; } .fa-hdd:before { - content: "\f0a0"; + content: ""; } .fa-heading:before { - content: "\f1dc"; + content: ""; } .fa-headphones:before { - content: "\f025"; + content: ""; } .fa-headphones-alt:before { - content: "\f58f"; + content: ""; } .fa-headset:before { - content: "\f590"; + content: ""; } .fa-heart:before { - content: "\f004"; + content: ""; } .fa-heartbeat:before { - content: "\f21e"; + content: ""; } .fa-helicopter:before { - content: "\f533"; + content: ""; } .fa-highlighter:before { - content: "\f591"; + content: ""; } .fa-hips:before { - content: "\f452"; + content: ""; } .fa-hire-a-helper:before { - content: "\f3b0"; + content: ""; } .fa-history:before { - content: "\f1da"; + content: ""; } .fa-hockey-puck:before { - content: "\f453"; + content: ""; } .fa-home:before { - content: "\f015"; + content: ""; } .fa-hooli:before { - content: "\f427"; + content: ""; } .fa-hornbill:before { - content: "\f592"; + content: ""; } .fa-hospital:before { - content: "\f0f8"; + content: ""; } .fa-hospital-alt:before { - content: "\f47d"; + content: ""; } .fa-hospital-symbol:before { - content: "\f47e"; + content: ""; } .fa-hot-tub:before { - content: "\f593"; + content: ""; } .fa-hotel:before { - content: "\f594"; + content: ""; } .fa-hotjar:before { - content: "\f3b1"; + content: ""; } .fa-hourglass:before { - content: "\f254"; + content: ""; } .fa-hourglass-end:before { - content: "\f253"; + content: ""; } .fa-hourglass-half:before { - content: "\f252"; + content: ""; } .fa-hourglass-start:before { - content: "\f251"; + content: ""; } .fa-houzz:before { - content: "\f27c"; + content: ""; } .fa-html5:before { - content: "\f13b"; + content: ""; } .fa-hubspot:before { - content: "\f3b2"; + content: ""; } .fa-i-cursor:before { - content: "\f246"; + content: ""; } .fa-id-badge:before { - content: "\f2c1"; + content: ""; } .fa-id-card:before { - content: "\f2c2"; + content: ""; } .fa-id-card-alt:before { - content: "\f47f"; + content: ""; } .fa-image:before { - content: "\f03e"; + content: ""; } .fa-images:before { - content: "\f302"; + content: ""; } .fa-imdb:before { - content: "\f2d8"; + content: ""; } .fa-inbox:before { - content: "\f01c"; + content: ""; } .fa-indent:before { - content: "\f03c"; + content: ""; } .fa-industry:before { - content: "\f275"; + content: ""; } .fa-infinity:before { - content: "\f534"; + content: ""; } .fa-info:before { - content: "\f129"; + content: ""; } .fa-info-circle:before { - content: "\f05a"; + content: ""; } .fa-instagram:before { - content: "\f16d"; + content: ""; } .fa-internet-explorer:before { - content: "\f26b"; + content: ""; } .fa-ioxhost:before { - content: "\f208"; + content: ""; } .fa-italic:before { - content: "\f033"; + content: ""; } .fa-itunes:before { - content: "\f3b4"; + content: ""; } .fa-itunes-note:before { - content: "\f3b5"; + content: ""; } .fa-java:before { - content: "\f4e4"; + content: ""; } .fa-jedi:before { - content: "\f669"; + content: ""; } .fa-jedi-order:before { - content: "\f50e"; + content: ""; } .fa-jenkins:before { - content: "\f3b6"; + content: ""; } .fa-joget:before { - content: "\f3b7"; + content: ""; } .fa-joint:before { - content: "\f595"; + content: ""; } .fa-joomla:before { - content: "\f1aa"; + content: ""; } .fa-journal-whills:before { - content: "\f66a"; + content: ""; } .fa-js:before { - content: "\f3b8"; + content: ""; } .fa-js-square:before { - content: "\f3b9"; + content: ""; } .fa-jsfiddle:before { - content: "\f1cc"; + content: ""; } .fa-kaaba:before { - content: "\f66b"; + content: ""; } .fa-kaggle:before { - content: "\f5fa"; + content: ""; } .fa-key:before { - content: "\f084"; + content: ""; } .fa-keybase:before { - content: "\f4f5"; + content: ""; } .fa-keyboard:before { - content: "\f11c"; + content: ""; } .fa-keycdn:before { - content: "\f3ba"; + content: ""; } .fa-khanda:before { - content: "\f66d"; + content: ""; } .fa-kickstarter:before { - content: "\f3bb"; + content: ""; } .fa-kickstarter-k:before { - content: "\f3bc"; + content: ""; } .fa-kiss:before { - content: "\f596"; + content: ""; } .fa-kiss-beam:before { - content: "\f597"; + content: ""; } .fa-kiss-wink-heart:before { - content: "\f598"; + content: ""; } .fa-kiwi-bird:before { - content: "\f535"; + content: ""; } .fa-korvue:before { - content: "\f42f"; + content: ""; } .fa-landmark:before { - content: "\f66f"; + content: ""; } .fa-language:before { - content: "\f1ab"; + content: ""; } .fa-laptop:before { - content: "\f109"; + content: ""; } .fa-laptop-code:before { - content: "\f5fc"; + content: ""; } .fa-laravel:before { - content: "\f3bd"; + content: ""; } .fa-lastfm:before { - content: "\f202"; + content: ""; } .fa-lastfm-square:before { - content: "\f203"; + content: ""; } .fa-laugh:before { - content: "\f599"; + content: ""; } .fa-laugh-beam:before { - content: "\f59a"; + content: ""; } .fa-laugh-squint:before { - content: "\f59b"; + content: ""; } .fa-laugh-wink:before { - content: "\f59c"; + content: ""; } .fa-layer-group:before { - content: "\f5fd"; + content: ""; } .fa-leaf:before { - content: "\f06c"; + content: ""; } .fa-leanpub:before { - content: "\f212"; + content: ""; } .fa-lemon:before { - content: "\f094"; + content: ""; } .fa-less:before { - content: "\f41d"; + content: ""; } .fa-less-than:before { - content: "\f536"; + content: ""; } .fa-less-than-equal:before { - content: "\f537"; + content: ""; } .fa-level-down-alt:before { - content: "\f3be"; + content: ""; } .fa-level-up-alt:before { - content: "\f3bf"; + content: ""; } .fa-life-ring:before { - content: "\f1cd"; + content: ""; } .fa-lightbulb:before { - content: "\f0eb"; + content: ""; } .fa-line:before { - content: "\f3c0"; + content: ""; } .fa-link:before { - content: "\f0c1"; + content: ""; } .fa-linkedin:before { - content: "\f08c"; + content: ""; } .fa-linkedin-in:before { - content: "\f0e1"; + content: ""; } .fa-linode:before { - content: "\f2b8"; + content: ""; } .fa-linux:before { - content: "\f17c"; + content: ""; } .fa-lira-sign:before { - content: "\f195"; + content: ""; } .fa-list:before { - content: "\f03a"; + content: ""; } .fa-list-alt:before { - content: "\f022"; + content: ""; } .fa-list-ol:before { - content: "\f0cb"; + content: ""; } .fa-list-ul:before { - content: "\f0ca"; + content: ""; } .fa-location-arrow:before { - content: "\f124"; + content: ""; } .fa-lock:before { - content: "\f023"; + content: ""; } .fa-lock-open:before { - content: "\f3c1"; + content: ""; } .fa-long-arrow-alt-down:before { - content: "\f309"; + content: ""; } .fa-long-arrow-alt-left:before { - content: "\f30a"; + content: ""; } .fa-long-arrow-alt-right:before { - content: "\f30b"; + content: ""; } .fa-long-arrow-alt-up:before { - content: "\f30c"; + content: ""; } .fa-low-vision:before { - content: "\f2a8"; + content: ""; } .fa-luggage-cart:before { - content: "\f59d"; + content: ""; } .fa-lyft:before { - content: "\f3c3"; + content: ""; } .fa-magento:before { - content: "\f3c4"; + content: ""; } .fa-magic:before { - content: "\f0d0"; + content: ""; } .fa-magnet:before { - content: "\f076"; + content: ""; } .fa-mail-bulk:before { - content: "\f674"; + content: ""; } .fa-mailchimp:before { - content: "\f59e"; + content: ""; } .fa-male:before { - content: "\f183"; + content: ""; } .fa-mandalorian:before { - content: "\f50f"; + content: ""; } .fa-map:before { - content: "\f279"; + content: ""; } .fa-map-marked:before { - content: "\f59f"; + content: ""; } .fa-map-marked-alt:before { - content: "\f5a0"; + content: ""; } .fa-map-marker:before { - content: "\f041"; + content: ""; } .fa-map-marker-alt:before { - content: "\f3c5"; + content: ""; } .fa-map-pin:before { - content: "\f276"; + content: ""; } .fa-map-signs:before { - content: "\f277"; + content: ""; } .fa-markdown:before { - content: "\f60f"; + content: ""; } .fa-marker:before { - content: "\f5a1"; + content: ""; } .fa-mars:before { - content: "\f222"; + content: ""; } .fa-mars-double:before { - content: "\f227"; + content: ""; } .fa-mars-stroke:before { - content: "\f229"; + content: ""; } .fa-mars-stroke-h:before { - content: "\f22b"; + content: ""; } .fa-mars-stroke-v:before { - content: "\f22a"; + content: ""; } .fa-mastodon:before { - content: "\f4f6"; + content: ""; } .fa-maxcdn:before { - content: "\f136"; + content: ""; } .fa-medal:before { - content: "\f5a2"; + content: ""; } .fa-medapps:before { - content: "\f3c6"; + content: ""; } .fa-medium:before { - content: "\f23a"; + content: ""; } .fa-medium-m:before { - content: "\f3c7"; + content: ""; } .fa-medkit:before { - content: "\f0fa"; + content: ""; } .fa-medrt:before { - content: "\f3c8"; + content: ""; } .fa-meetup:before { - content: "\f2e0"; + content: ""; } .fa-megaport:before { - content: "\f5a3"; + content: ""; } .fa-meh:before { - content: "\f11a"; + content: ""; } .fa-meh-blank:before { - content: "\f5a4"; + content: ""; } .fa-meh-rolling-eyes:before { - content: "\f5a5"; + content: ""; } .fa-memory:before { - content: "\f538"; + content: ""; } .fa-menorah:before { - content: "\f676"; + content: ""; } .fa-mercury:before { - content: "\f223"; + content: ""; } .fa-microchip:before { - content: "\f2db"; + content: ""; } .fa-microphone:before { - content: "\f130"; + content: ""; } .fa-microphone-alt:before { - content: "\f3c9"; + content: ""; } .fa-microphone-alt-slash:before { - content: "\f539"; + content: ""; } .fa-microphone-slash:before { - content: "\f131"; + content: ""; } .fa-microscope:before { - content: "\f610"; + content: ""; } .fa-microsoft:before { - content: "\f3ca"; + content: ""; } .fa-minus:before { - content: "\f068"; + content: ""; } .fa-minus-circle:before { - content: "\f056"; + content: ""; } .fa-minus-square:before { - content: "\f146"; + content: ""; } .fa-mix:before { - content: "\f3cb"; + content: ""; } .fa-mixcloud:before { - content: "\f289"; + content: ""; } .fa-mizuni:before { - content: "\f3cc"; + content: ""; } .fa-mobile:before { - content: "\f10b"; + content: ""; } .fa-mobile-alt:before { - content: "\f3cd"; + content: ""; } .fa-modx:before { - content: "\f285"; + content: ""; } .fa-monero:before { - content: "\f3d0"; + content: ""; } .fa-money-bill:before { - content: "\f0d6"; + content: ""; } .fa-money-bill-alt:before { - content: "\f3d1"; + content: ""; } .fa-money-bill-wave:before { - content: "\f53a"; + content: ""; } .fa-money-bill-wave-alt:before { - content: "\f53b"; + content: ""; } .fa-money-check:before { - content: "\f53c"; + content: ""; } .fa-money-check-alt:before { - content: "\f53d"; + content: ""; } .fa-monument:before { - content: "\f5a6"; + content: ""; } .fa-moon:before { - content: "\f186"; + content: ""; } .fa-mortar-pestle:before { - content: "\f5a7"; + content: ""; } .fa-mosque:before { - content: "\f678"; + content: ""; } .fa-motorcycle:before { - content: "\f21c"; + content: ""; } .fa-mouse-pointer:before { - content: "\f245"; + content: ""; } .fa-music:before { - content: "\f001"; + content: ""; } .fa-napster:before { - content: "\f3d2"; + content: ""; } .fa-neos:before { - content: "\f612"; + content: ""; } .fa-neuter:before { - content: "\f22c"; + content: ""; } .fa-newspaper:before { - content: "\f1ea"; + content: ""; } .fa-nimblr:before { - content: "\f5a8"; + content: ""; } .fa-nintendo-switch:before { - content: "\f418"; + content: ""; } .fa-node:before { - content: "\f419"; + content: ""; } .fa-node-js:before { - content: "\f3d3"; + content: ""; } .fa-not-equal:before { - content: "\f53e"; + content: ""; } .fa-notes-medical:before { - content: "\f481"; + content: ""; } .fa-npm:before { - content: "\f3d4"; + content: ""; } .fa-ns8:before { - content: "\f3d5"; + content: ""; } .fa-nutritionix:before { - content: "\f3d6"; + content: ""; } .fa-object-group:before { - content: "\f247"; + content: ""; } .fa-object-ungroup:before { - content: "\f248"; + content: ""; } .fa-odnoklassniki:before { - content: "\f263"; + content: ""; } .fa-odnoklassniki-square:before { - content: "\f264"; + content: ""; } .fa-oil-can:before { - content: "\f613"; + content: ""; } .fa-old-republic:before { - content: "\f510"; + content: ""; } .fa-om:before { - content: "\f679"; + content: ""; } .fa-opencart:before { - content: "\f23d"; + content: ""; } .fa-openid:before { - content: "\f19b"; + content: ""; } .fa-opera:before { - content: "\f26a"; + content: ""; } .fa-optin-monster:before { - content: "\f23c"; + content: ""; } .fa-osi:before { - content: "\f41a"; + content: ""; } .fa-outdent:before { - content: "\f03b"; + content: ""; } .fa-page4:before { - content: "\f3d7"; + content: ""; } .fa-pagelines:before { - content: "\f18c"; + content: ""; } .fa-paint-brush:before { - content: "\f1fc"; + content: ""; } .fa-paint-roller:before { - content: "\f5aa"; + content: ""; } .fa-palette:before { - content: "\f53f"; + content: ""; } .fa-palfed:before { - content: "\f3d8"; + content: ""; } .fa-pallet:before { - content: "\f482"; + content: ""; } .fa-paper-plane:before { - content: "\f1d8"; + content: ""; } .fa-paperclip:before { - content: "\f0c6"; + content: ""; } .fa-parachute-box:before { - content: "\f4cd"; + content: ""; } .fa-paragraph:before { - content: "\f1dd"; + content: ""; } .fa-parking:before { - content: "\f540"; + content: ""; } .fa-passport:before { - content: "\f5ab"; + content: ""; } .fa-pastafarianism:before { - content: "\f67b"; + content: ""; } .fa-paste:before { - content: "\f0ea"; + content: ""; } .fa-patreon:before { - content: "\f3d9"; + content: ""; } .fa-pause:before { - content: "\f04c"; + content: ""; } .fa-pause-circle:before { - content: "\f28b"; + content: ""; } .fa-paw:before { - content: "\f1b0"; + content: ""; } .fa-paypal:before { - content: "\f1ed"; + content: ""; } .fa-peace:before { - content: "\f67c"; + content: ""; } .fa-pen:before { - content: "\f304"; + content: ""; } .fa-pen-alt:before { - content: "\f305"; + content: ""; } .fa-pen-fancy:before { - content: "\f5ac"; + content: ""; } .fa-pen-nib:before { - content: "\f5ad"; + content: ""; } .fa-pen-square:before { - content: "\f14b"; + content: ""; } .fa-pencil-alt:before { - content: "\f303"; + content: ""; } .fa-pencil-ruler:before { - content: "\f5ae"; + content: ""; } .fa-people-carry:before { - content: "\f4ce"; + content: ""; } .fa-percent:before { - content: "\f295"; + content: ""; } .fa-percentage:before { - content: "\f541"; + content: ""; } .fa-periscope:before { - content: "\f3da"; + content: ""; } .fa-phabricator:before { - content: "\f3db"; + content: ""; } .fa-phoenix-framework:before { - content: "\f3dc"; + content: ""; } .fa-phoenix-squadron:before { - content: "\f511"; + content: ""; } .fa-phone:before { - content: "\f095"; + content: ""; } .fa-phone-slash:before { - content: "\f3dd"; + content: ""; } .fa-phone-square:before { - content: "\f098"; + content: ""; } .fa-phone-volume:before { - content: "\f2a0"; + content: ""; } .fa-php:before { - content: "\f457"; + content: ""; } .fa-pied-piper:before { - content: "\f2ae"; + content: ""; } .fa-pied-piper-alt:before { - content: "\f1a8"; + content: ""; } .fa-pied-piper-hat:before { - content: "\f4e5"; + content: ""; } .fa-pied-piper-pp:before { - content: "\f1a7"; + content: ""; } .fa-piggy-bank:before { - content: "\f4d3"; + content: ""; } .fa-pills:before { - content: "\f484"; + content: ""; } .fa-pinterest:before { - content: "\f0d2"; + content: ""; } .fa-pinterest-p:before { - content: "\f231"; + content: ""; } .fa-pinterest-square:before { - content: "\f0d3"; + content: ""; } .fa-place-of-worship:before { - content: "\f67f"; + content: ""; } .fa-plane:before { - content: "\f072"; + content: ""; } .fa-plane-arrival:before { - content: "\f5af"; + content: ""; } .fa-plane-departure:before { - content: "\f5b0"; + content: ""; } .fa-play:before { - content: "\f04b"; + content: ""; } .fa-play-circle:before { - content: "\f144"; + content: ""; } .fa-playstation:before { - content: "\f3df"; + content: ""; } .fa-plug:before { - content: "\f1e6"; + content: ""; } .fa-plus:before { - content: "\f067"; + content: ""; } .fa-plus-circle:before { - content: "\f055"; + content: ""; } .fa-plus-square:before { - content: "\f0fe"; + content: ""; } .fa-podcast:before { - content: "\f2ce"; + content: ""; } .fa-poll:before { - content: "\f681"; + content: ""; } .fa-poll-h:before { - content: "\f682"; + content: ""; } .fa-poo:before { - content: "\f2fe"; + content: ""; } .fa-poop:before { - content: "\f619"; + content: ""; } .fa-portrait:before { - content: "\f3e0"; + content: ""; } .fa-pound-sign:before { - content: "\f154"; + content: ""; } .fa-power-off:before { - content: "\f011"; + content: ""; } .fa-pray:before { - content: "\f683"; + content: ""; } .fa-praying-hands:before { - content: "\f684"; + content: ""; } .fa-prescription:before { - content: "\f5b1"; + content: ""; } .fa-prescription-bottle:before { - content: "\f485"; + content: ""; } .fa-prescription-bottle-alt:before { - content: "\f486"; + content: ""; } .fa-print:before { - content: "\f02f"; + content: ""; } .fa-procedures:before { - content: "\f487"; + content: ""; } .fa-product-hunt:before { - content: "\f288"; + content: ""; } .fa-project-diagram:before { - content: "\f542"; + content: ""; } .fa-pushed:before { - content: "\f3e1"; + content: ""; } .fa-puzzle-piece:before { - content: "\f12e"; + content: ""; } .fa-python:before { - content: "\f3e2"; + content: ""; } .fa-qq:before { - content: "\f1d6"; + content: ""; } .fa-qrcode:before { - content: "\f029"; + content: ""; } .fa-question:before { - content: "\f128"; + content: ""; } .fa-question-circle:before { - content: "\f059"; + content: ""; } .fa-quidditch:before { - content: "\f458"; + content: ""; } .fa-quinscape:before { - content: "\f459"; + content: ""; } .fa-quora:before { - content: "\f2c4"; + content: ""; } .fa-quote-left:before { - content: "\f10d"; + content: ""; } .fa-quote-right:before { - content: "\f10e"; + content: ""; } .fa-quran:before { - content: "\f687"; + content: ""; } .fa-r-project:before { - content: "\f4f7"; + content: ""; } .fa-random:before { - content: "\f074"; + content: ""; } .fa-ravelry:before { - content: "\f2d9"; + content: ""; } .fa-react:before { - content: "\f41b"; + content: ""; } .fa-readme:before { - content: "\f4d5"; + content: ""; } .fa-rebel:before { - content: "\f1d0"; + content: ""; } .fa-receipt:before { - content: "\f543"; + content: ""; } .fa-recycle:before { - content: "\f1b8"; + content: ""; } .fa-red-river:before { - content: "\f3e3"; + content: ""; } .fa-reddit:before { - content: "\f1a1"; + content: ""; } .fa-reddit-alien:before { - content: "\f281"; + content: ""; } .fa-reddit-square:before { - content: "\f1a2"; + content: ""; } .fa-redo:before { - content: "\f01e"; + content: ""; } .fa-redo-alt:before { - content: "\f2f9"; + content: ""; } .fa-registered:before { - content: "\f25d"; + content: ""; } .fa-rendact:before { - content: "\f3e4"; + content: ""; } .fa-renren:before { - content: "\f18b"; + content: ""; } .fa-reply:before { - content: "\f3e5"; + content: ""; } .fa-reply-all:before { - content: "\f122"; + content: ""; } .fa-replyd:before { - content: "\f3e6"; + content: ""; } .fa-researchgate:before { - content: "\f4f8"; + content: ""; } .fa-resolving:before { - content: "\f3e7"; + content: ""; } .fa-retweet:before { - content: "\f079"; + content: ""; } .fa-rev:before { - content: "\f5b2"; + content: ""; } .fa-ribbon:before { - content: "\f4d6"; + content: ""; } .fa-road:before { - content: "\f018"; + content: ""; } .fa-robot:before { - content: "\f544"; + content: ""; } .fa-rocket:before { - content: "\f135"; + content: ""; } .fa-rocketchat:before { - content: "\f3e8"; + content: ""; } .fa-rockrms:before { - content: "\f3e9"; + content: ""; } .fa-route:before { - content: "\f4d7"; + content: ""; } .fa-rss:before { - content: "\f09e"; + content: ""; } .fa-rss-square:before { - content: "\f143"; + content: ""; } .fa-ruble-sign:before { - content: "\f158"; + content: ""; } .fa-ruler:before { - content: "\f545"; + content: ""; } .fa-ruler-combined:before { - content: "\f546"; + content: ""; } .fa-ruler-horizontal:before { - content: "\f547"; + content: ""; } .fa-ruler-vertical:before { - content: "\f548"; + content: ""; } .fa-rupee-sign:before { - content: "\f156"; + content: ""; } .fa-sad-cry:before { - content: "\f5b3"; + content: ""; } .fa-sad-tear:before { - content: "\f5b4"; + content: ""; } .fa-safari:before { - content: "\f267"; + content: ""; } .fa-sass:before { - content: "\f41e"; + content: ""; } .fa-save:before { - content: "\f0c7"; + content: ""; } .fa-schlix:before { - content: "\f3ea"; + content: ""; } .fa-school:before { - content: "\f549"; + content: ""; } .fa-screwdriver:before { - content: "\f54a"; + content: ""; } .fa-scribd:before { - content: "\f28a"; + content: ""; } .fa-search:before { - content: "\f002"; + content: ""; } .fa-search-dollar:before { - content: "\f688"; + content: ""; } .fa-search-location:before { - content: "\f689"; + content: ""; } .fa-search-minus:before { - content: "\f010"; + content: ""; } .fa-search-plus:before { - content: "\f00e"; + content: ""; } .fa-searchengin:before { - content: "\f3eb"; + content: ""; } .fa-seedling:before { - content: "\f4d8"; + content: ""; } .fa-sellcast:before { - content: "\f2da"; + content: ""; } .fa-sellsy:before { - content: "\f213"; + content: ""; } .fa-server:before { - content: "\f233"; + content: ""; } .fa-servicestack:before { - content: "\f3ec"; + content: ""; } .fa-shapes:before { - content: "\f61f"; + content: ""; } .fa-share:before { - content: "\f064"; + content: ""; } .fa-share-alt:before { - content: "\f1e0"; + content: ""; } .fa-share-alt-square:before { - content: "\f1e1"; + content: ""; } .fa-share-square:before { - content: "\f14d"; + content: ""; } .fa-shekel-sign:before { - content: "\f20b"; + content: ""; } .fa-shield-alt:before { - content: "\f3ed"; + content: ""; } .fa-ship:before { - content: "\f21a"; + content: ""; } .fa-shipping-fast:before { - content: "\f48b"; + content: ""; } .fa-shirtsinbulk:before { - content: "\f214"; + content: ""; } .fa-shoe-prints:before { - content: "\f54b"; + content: ""; } .fa-shopping-bag:before { - content: "\f290"; + content: ""; } .fa-shopping-basket:before { - content: "\f291"; + content: ""; } .fa-shopping-cart:before { - content: "\f07a"; + content: ""; } .fa-shopware:before { - content: "\f5b5"; + content: ""; } .fa-shower:before { - content: "\f2cc"; + content: ""; } .fa-shuttle-van:before { - content: "\f5b6"; + content: ""; } .fa-sign:before { - content: "\f4d9"; + content: ""; } .fa-sign-in-alt:before { - content: "\f2f6"; + content: ""; } .fa-sign-language:before { - content: "\f2a7"; + content: ""; } .fa-sign-out-alt:before { - content: "\f2f5"; + content: ""; } .fa-signal:before { - content: "\f012"; + content: ""; } .fa-signature:before { - content: "\f5b7"; + content: ""; } .fa-simplybuilt:before { - content: "\f215"; + content: ""; } .fa-sistrix:before { - content: "\f3ee"; + content: ""; } .fa-sitemap:before { - content: "\f0e8"; + content: ""; } .fa-sith:before { - content: "\f512"; + content: ""; } .fa-skull:before { - content: "\f54c"; + content: ""; } .fa-skyatlas:before { - content: "\f216"; + content: ""; } .fa-skype:before { - content: "\f17e"; + content: ""; } .fa-slack:before { - content: "\f198"; + content: ""; } .fa-slack-hash:before { - content: "\f3ef"; + content: ""; } .fa-sliders-h:before { - content: "\f1de"; + content: ""; } .fa-slideshare:before { - content: "\f1e7"; + content: ""; } .fa-smile:before { - content: "\f118"; + content: ""; } .fa-smile-beam:before { - content: "\f5b8"; + content: ""; } .fa-smile-wink:before { - content: "\f4da"; + content: ""; } .fa-smoking:before { - content: "\f48d"; + content: ""; } .fa-smoking-ban:before { - content: "\f54d"; + content: ""; } .fa-snapchat:before { - content: "\f2ab"; + content: ""; } .fa-snapchat-ghost:before { - content: "\f2ac"; + content: ""; } .fa-snapchat-square:before { - content: "\f2ad"; + content: ""; } .fa-snowflake:before { - content: "\f2dc"; + content: ""; } .fa-socks:before { - content: "\f696"; + content: ""; } .fa-solar-panel:before { - content: "\f5ba"; + content: ""; } .fa-sort:before { - content: "\f0dc"; + content: ""; } .fa-sort-alpha-down:before { - content: "\f15d"; + content: ""; } .fa-sort-alpha-up:before { - content: "\f15e"; + content: ""; } .fa-sort-amount-down:before { - content: "\f160"; + content: ""; } .fa-sort-amount-up:before { - content: "\f161"; + content: ""; } .fa-sort-down:before { - content: "\f0dd"; + content: ""; } .fa-sort-numeric-down:before { - content: "\f162"; + content: ""; } .fa-sort-numeric-up:before { - content: "\f163"; + content: ""; } .fa-sort-up:before { - content: "\f0de"; + content: ""; } .fa-soundcloud:before { - content: "\f1be"; + content: ""; } .fa-spa:before { - content: "\f5bb"; + content: ""; } .fa-space-shuttle:before { - content: "\f197"; + content: ""; } .fa-speakap:before { - content: "\f3f3"; + content: ""; } .fa-spinner:before { - content: "\f110"; + content: ""; } .fa-splotch:before { - content: "\f5bc"; + content: ""; } .fa-spotify:before { - content: "\f1bc"; + content: ""; } .fa-spray-can:before { - content: "\f5bd"; + content: ""; } .fa-square:before { - content: "\f0c8"; + content: ""; } .fa-square-full:before { - content: "\f45c"; + content: ""; } .fa-square-root-alt:before { - content: "\f698"; + content: ""; } .fa-squarespace:before { - content: "\f5be"; + content: ""; } .fa-stack-exchange:before { - content: "\f18d"; + content: ""; } .fa-stack-overflow:before { - content: "\f16c"; + content: ""; } .fa-stamp:before { - content: "\f5bf"; + content: ""; } .fa-star:before { - content: "\f005"; + content: ""; } .fa-star-and-crescent:before { - content: "\f699"; + content: ""; } .fa-star-half:before { - content: "\f089"; + content: ""; } .fa-star-half-alt:before { - content: "\f5c0"; + content: ""; } .fa-star-of-david:before { - content: "\f69a"; + content: ""; } .fa-star-of-life:before { - content: "\f621"; + content: ""; } .fa-staylinked:before { - content: "\f3f5"; + content: ""; } .fa-steam:before { - content: "\f1b6"; + content: ""; } .fa-steam-square:before { - content: "\f1b7"; + content: ""; } .fa-steam-symbol:before { - content: "\f3f6"; + content: ""; } .fa-step-backward:before { - content: "\f048"; + content: ""; } .fa-step-forward:before { - content: "\f051"; + content: ""; } .fa-stethoscope:before { - content: "\f0f1"; + content: ""; } .fa-sticker-mule:before { - content: "\f3f7"; + content: ""; } .fa-sticky-note:before { - content: "\f249"; + content: ""; } .fa-stop:before { - content: "\f04d"; + content: ""; } .fa-stop-circle:before { - content: "\f28d"; + content: ""; } .fa-stopwatch:before { - content: "\f2f2"; + content: ""; } .fa-store:before { - content: "\f54e"; + content: ""; } .fa-store-alt:before { - content: "\f54f"; + content: ""; } .fa-strava:before { - content: "\f428"; + content: ""; } .fa-stream:before { - content: "\f550"; + content: ""; } .fa-street-view:before { - content: "\f21d"; + content: ""; } .fa-strikethrough:before { - content: "\f0cc"; + content: ""; } .fa-stripe:before { - content: "\f429"; + content: ""; } .fa-stripe-s:before { - content: "\f42a"; + content: ""; } .fa-stroopwafel:before { - content: "\f551"; + content: ""; } .fa-studiovinari:before { - content: "\f3f8"; + content: ""; } .fa-stumbleupon:before { - content: "\f1a4"; + content: ""; } .fa-stumbleupon-circle:before { - content: "\f1a3"; + content: ""; } .fa-subscript:before { - content: "\f12c"; + content: ""; } .fa-subway:before { - content: "\f239"; + content: ""; } .fa-suitcase:before { - content: "\f0f2"; + content: ""; } .fa-suitcase-rolling:before { - content: "\f5c1"; + content: ""; } .fa-sun:before { - content: "\f185"; + content: ""; } .fa-superpowers:before { - content: "\f2dd"; + content: ""; } .fa-superscript:before { - content: "\f12b"; + content: ""; } .fa-supple:before { - content: "\f3f9"; + content: ""; } .fa-surprise:before { - content: "\f5c2"; + content: ""; } .fa-swatchbook:before { - content: "\f5c3"; + content: ""; } .fa-swimmer:before { - content: "\f5c4"; + content: ""; } .fa-swimming-pool:before { - content: "\f5c5"; + content: ""; } .fa-synagogue:before { - content: "\f69b"; + content: ""; } .fa-sync:before { - content: "\f021"; + content: ""; } .fa-sync-alt:before { - content: "\f2f1"; + content: ""; } .fa-syringe:before { - content: "\f48e"; + content: ""; } .fa-table:before { - content: "\f0ce"; + content: ""; } .fa-table-tennis:before { - content: "\f45d"; + content: ""; } .fa-tablet:before { - content: "\f10a"; + content: ""; } .fa-tablet-alt:before { - content: "\f3fa"; + content: ""; } .fa-tablets:before { - content: "\f490"; + content: ""; } .fa-tachometer-alt:before { - content: "\f3fd"; + content: ""; } .fa-tag:before { - content: "\f02b"; + content: ""; } .fa-tags:before { - content: "\f02c"; + content: ""; } .fa-tape:before { - content: "\f4db"; + content: ""; } .fa-tasks:before { - content: "\f0ae"; + content: ""; } .fa-taxi:before { - content: "\f1ba"; + content: ""; } .fa-teamspeak:before { - content: "\f4f9"; + content: ""; } .fa-teeth:before { - content: "\f62e"; + content: ""; } .fa-teeth-open:before { - content: "\f62f"; + content: ""; } .fa-telegram:before { - content: "\f2c6"; + content: ""; } .fa-telegram-plane:before { - content: "\f3fe"; + content: ""; } .fa-tencent-weibo:before { - content: "\f1d5"; + content: ""; } .fa-terminal:before { - content: "\f120"; + content: ""; } .fa-text-height:before { - content: "\f034"; + content: ""; } .fa-text-width:before { - content: "\f035"; + content: ""; } .fa-th:before { - content: "\f00a"; + content: ""; } .fa-th-large:before { - content: "\f009"; + content: ""; } .fa-th-list:before { - content: "\f00b"; + content: ""; } .fa-the-red-yeti:before { - content: "\f69d"; + content: ""; } .fa-theater-masks:before { - content: "\f630"; + content: ""; } .fa-themeco:before { - content: "\f5c6"; + content: ""; } .fa-themeisle:before { - content: "\f2b2"; + content: ""; } .fa-thermometer:before { - content: "\f491"; + content: ""; } .fa-thermometer-empty:before { - content: "\f2cb"; + content: ""; } .fa-thermometer-full:before { - content: "\f2c7"; + content: ""; } .fa-thermometer-half:before { - content: "\f2c9"; + content: ""; } .fa-thermometer-quarter:before { - content: "\f2ca"; + content: ""; } .fa-thermometer-three-quarters:before { - content: "\f2c8"; + content: ""; } .fa-thumbs-down:before { - content: "\f165"; + content: ""; } .fa-thumbs-up:before { - content: "\f164"; + content: ""; } .fa-thumbtack:before { - content: "\f08d"; + content: ""; } .fa-ticket-alt:before { - content: "\f3ff"; + content: ""; } .fa-times:before { - content: "\f00d"; + content: ""; } .fa-times-circle:before { - content: "\f057"; + content: ""; } .fa-tint:before { - content: "\f043"; + content: ""; } .fa-tint-slash:before { - content: "\f5c7"; + content: ""; } .fa-tired:before { - content: "\f5c8"; + content: ""; } .fa-toggle-off:before { - content: "\f204"; + content: ""; } .fa-toggle-on:before { - content: "\f205"; + content: ""; } .fa-toolbox:before { - content: "\f552"; + content: ""; } .fa-tooth:before { - content: "\f5c9"; + content: ""; } .fa-torah:before { - content: "\f6a0"; + content: ""; } .fa-torii-gate:before { - content: "\f6a1"; + content: ""; } .fa-trade-federation:before { - content: "\f513"; + content: ""; } .fa-trademark:before { - content: "\f25c"; + content: ""; } .fa-traffic-light:before { - content: "\f637"; + content: ""; } .fa-train:before { - content: "\f238"; + content: ""; } .fa-transgender:before { - content: "\f224"; + content: ""; } .fa-transgender-alt:before { - content: "\f225"; + content: ""; } .fa-trash:before { - content: "\f1f8"; + content: ""; } .fa-trash-alt:before { - content: "\f2ed"; + content: ""; } .fa-tree:before { - content: "\f1bb"; + content: ""; } .fa-trello:before { - content: "\f181"; + content: ""; } .fa-tripadvisor:before { - content: "\f262"; + content: ""; } .fa-trophy:before { - content: "\f091"; + content: ""; } .fa-truck:before { - content: "\f0d1"; + content: ""; } .fa-truck-loading:before { - content: "\f4de"; + content: ""; } .fa-truck-monster:before { - content: "\f63b"; + content: ""; } .fa-truck-moving:before { - content: "\f4df"; + content: ""; } .fa-truck-pickup:before { - content: "\f63c"; + content: ""; } .fa-tshirt:before { - content: "\f553"; + content: ""; } .fa-tty:before { - content: "\f1e4"; + content: ""; } .fa-tumblr:before { - content: "\f173"; + content: ""; } .fa-tumblr-square:before { - content: "\f174"; + content: ""; } .fa-tv:before { - content: "\f26c"; + content: ""; } .fa-twitch:before { - content: "\f1e8"; + content: ""; } .fa-twitter:before { - content: "\f099"; + content: ""; } .fa-twitter-square:before { - content: "\f081"; + content: ""; } .fa-typo3:before { - content: "\f42b"; + content: ""; } .fa-uber:before { - content: "\f402"; + content: ""; } .fa-uikit:before { - content: "\f403"; + content: ""; } .fa-umbrella:before { - content: "\f0e9"; + content: ""; } .fa-umbrella-beach:before { - content: "\f5ca"; + content: ""; } .fa-underline:before { - content: "\f0cd"; + content: ""; } .fa-undo:before { - content: "\f0e2"; + content: ""; } .fa-undo-alt:before { - content: "\f2ea"; + content: ""; } .fa-uniregistry:before { - content: "\f404"; + content: ""; } .fa-universal-access:before { - content: "\f29a"; + content: ""; } .fa-university:before { - content: "\f19c"; + content: ""; } .fa-unlink:before { - content: "\f127"; + content: ""; } .fa-unlock:before { - content: "\f09c"; + content: ""; } .fa-unlock-alt:before { - content: "\f13e"; + content: ""; } .fa-untappd:before { - content: "\f405"; + content: ""; } .fa-upload:before { - content: "\f093"; + content: ""; } .fa-usb:before { - content: "\f287"; + content: ""; } .fa-user:before { - content: "\f007"; + content: ""; } .fa-user-alt:before { - content: "\f406"; + content: ""; } .fa-user-alt-slash:before { - content: "\f4fa"; + content: ""; } .fa-user-astronaut:before { - content: "\f4fb"; + content: ""; } .fa-user-check:before { - content: "\f4fc"; + content: ""; } .fa-user-circle:before { - content: "\f2bd"; + content: ""; } .fa-user-clock:before { - content: "\f4fd"; + content: ""; } .fa-user-cog:before { - content: "\f4fe"; + content: ""; } .fa-user-edit:before { - content: "\f4ff"; + content: ""; } .fa-user-friends:before { - content: "\f500"; + content: ""; } .fa-user-graduate:before { - content: "\f501"; + content: ""; } .fa-user-lock:before { - content: "\f502"; + content: ""; } .fa-user-md:before { - content: "\f0f0"; + content: ""; } .fa-user-minus:before { - content: "\f503"; + content: ""; } .fa-user-ninja:before { - content: "\f504"; + content: ""; } .fa-user-plus:before { - content: "\f234"; + content: ""; } .fa-user-secret:before { - content: "\f21b"; + content: ""; } .fa-user-shield:before { - content: "\f505"; + content: ""; } .fa-user-slash:before { - content: "\f506"; + content: ""; } .fa-user-tag:before { - content: "\f507"; + content: ""; } .fa-user-tie:before { - content: "\f508"; + content: ""; } .fa-user-times:before { - content: "\f235"; + content: ""; } .fa-users:before { - content: "\f0c0"; + content: ""; } .fa-users-cog:before { - content: "\f509"; + content: ""; } .fa-ussunnah:before { - content: "\f407"; + content: ""; } .fa-utensil-spoon:before { - content: "\f2e5"; + content: ""; } .fa-utensils:before { - content: "\f2e7"; + content: ""; } .fa-vaadin:before { - content: "\f408"; + content: ""; } .fa-vector-square:before { - content: "\f5cb"; + content: ""; } .fa-venus:before { - content: "\f221"; + content: ""; } .fa-venus-double:before { - content: "\f226"; + content: ""; } .fa-venus-mars:before { - content: "\f228"; + content: ""; } .fa-viacoin:before { - content: "\f237"; + content: ""; } .fa-viadeo:before { - content: "\f2a9"; + content: ""; } .fa-viadeo-square:before { - content: "\f2aa"; + content: ""; } .fa-vial:before { - content: "\f492"; + content: ""; } .fa-vials:before { - content: "\f493"; + content: ""; } .fa-viber:before { - content: "\f409"; + content: ""; } .fa-video:before { - content: "\f03d"; + content: ""; } .fa-video-slash:before { - content: "\f4e2"; + content: ""; } .fa-vihara:before { - content: "\f6a7"; + content: ""; } .fa-vimeo:before { - content: "\f40a"; + content: ""; } .fa-vimeo-square:before { - content: "\f194"; + content: ""; } .fa-vimeo-v:before { - content: "\f27d"; + content: ""; } .fa-vine:before { - content: "\f1ca"; + content: ""; } .fa-vk:before { - content: "\f189"; + content: ""; } .fa-vnv:before { - content: "\f40b"; + content: ""; } .fa-volleyball-ball:before { - content: "\f45f"; + content: ""; } .fa-volume-down:before { - content: "\f027"; + content: ""; } .fa-volume-off:before { - content: "\f026"; + content: ""; } .fa-volume-up:before { - content: "\f028"; + content: ""; } .fa-vuejs:before { - content: "\f41f"; + content: ""; } .fa-walking:before { - content: "\f554"; + content: ""; } .fa-wallet:before { - content: "\f555"; + content: ""; } .fa-warehouse:before { - content: "\f494"; + content: ""; } .fa-weebly:before { - content: "\f5cc"; + content: ""; } .fa-weibo:before { - content: "\f18a"; + content: ""; } .fa-weight:before { - content: "\f496"; + content: ""; } .fa-weight-hanging:before { - content: "\f5cd"; + content: ""; } .fa-weixin:before { - content: "\f1d7"; + content: ""; } .fa-whatsapp:before { - content: "\f232"; + content: ""; } .fa-whatsapp-square:before { - content: "\f40c"; + content: ""; } .fa-wheelchair:before { - content: "\f193"; + content: ""; } .fa-whmcs:before { - content: "\f40d"; + content: ""; } .fa-wifi:before { - content: "\f1eb"; + content: ""; } .fa-wikipedia-w:before { - content: "\f266"; + content: ""; } .fa-window-close:before { - content: "\f410"; + content: ""; } .fa-window-maximize:before { - content: "\f2d0"; + content: ""; } .fa-window-minimize:before { - content: "\f2d1"; + content: ""; } .fa-window-restore:before { - content: "\f2d2"; + content: ""; } .fa-windows:before { - content: "\f17a"; + content: ""; } .fa-wine-glass:before { - content: "\f4e3"; + content: ""; } .fa-wine-glass-alt:before { - content: "\f5ce"; + content: ""; } .fa-wix:before { - content: "\f5cf"; + content: ""; } .fa-wolf-pack-battalion:before { - content: "\f514"; + content: ""; } .fa-won-sign:before { - content: "\f159"; + content: ""; } .fa-wordpress:before { - content: "\f19a"; + content: ""; } .fa-wordpress-simple:before { - content: "\f411"; + content: ""; } .fa-wpbeginner:before { - content: "\f297"; + content: ""; } .fa-wpexplorer:before { - content: "\f2de"; + content: ""; } .fa-wpforms:before { - content: "\f298"; + content: ""; } .fa-wrench:before { - content: "\f0ad"; + content: ""; } .fa-x-ray:before { - content: "\f497"; + content: ""; } .fa-xbox:before { - content: "\f412"; + content: ""; } .fa-xing:before { - content: "\f168"; + content: ""; } .fa-xing-square:before { - content: "\f169"; + content: ""; } .fa-y-combinator:before { - content: "\f23b"; + content: ""; } .fa-yahoo:before { - content: "\f19e"; + content: ""; } .fa-yandex:before { - content: "\f413"; + content: ""; } .fa-yandex-international:before { - content: "\f414"; + content: ""; } .fa-yelp:before { - content: "\f1e9"; + content: ""; } .fa-yen-sign:before { - content: "\f157"; + content: ""; } .fa-yin-yang:before { - content: "\f6ad"; + content: ""; } .fa-yoast:before { - content: "\f2b1"; + content: ""; } .fa-youtube:before { - content: "\f167"; + content: ""; } .fa-youtube-square:before { - content: "\f431"; + content: ""; } .fa-zhihu:before { - content: "\f63f"; + content: ""; } .sr-only { @@ -5151,47 +5152,47 @@ a.faicon.fa-stack { } span.faicon.lock_open::before { - content: "\f3c1"; + content: ""; } span.faicon.lock_close::before { - content: "\f023"; + content: ""; } span.faicon.bell::before { - content: "\f0f3"; + content: ""; } span.faicon.bell_slash::before { - content: "\f1f6"; + content: ""; } span.faicon.trash::before { - content: "\f2ed"; + content: ""; } span.faicon.copy::before { - content: "\f0c5"; + content: ""; } span.faicon.circle::before { - content: "\f111"; + content: ""; } span.faicon.plus::before { - content: "\f067"; + content: ""; } span.faicon.plus_circle::before { - content: "\f055"; + content: ""; } span.faicon.minus_circle::before { - content: "\f056"; + content: ""; } span.faicon.calendar_icon::before { - content: "\f073"; + content: ""; } div.icon_holder { @@ -5228,10 +5229,449 @@ a.help { /* Components scss */ -header { - height: 170px; - background-color: #eee; - overflow: scroll; +/* + Header scss - top line, menu... +*/ +header .mobile_header { + display: none; +} + +header #top_line { + display: flex; + align-items: center; + height: 58px; + padding: 0 32px; + /*tooltips on survey*/ +} +header #top_line #logo_holder { + width: 87px; + height: 40px; +} +header #top_line #logo_holder a { + display: block; + width: 87px; + height: 40px; + background-image: url(../img/logo/1ka_logo_slo.svg); + background-repeat: no-repeat; +} +header #top_line #logo_holder.english a { + background-image: url(../img/logo/1ka_logo_eng.svg); +} +header #top_line #anketa_header_settings { + display: flex; + margin-left: 30px; +} +header #top_line #anketa_header_settings .anketa_header_naslov a { + font-size: 20px; + color: #333333; + text-decoration: none; + font-weight: 600; +} +header #top_line #anketa_header_settings .anketa_header_help { + margin-left: 37px; +} +header #top_line #anketa_header_settings .anketa_header_activation { + display: flex; + align-items: center; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_preview { + margin-left: 32px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url { + margin-left: 32px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_url a { + font-size: 16px; + text-decoration: none; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate { + margin-left: 32px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa { + position: relative; + display: block; + width: 50px; + height: 20px; + color: white; + font-size: 12px; + font-weight: 400; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding-top: 1px; + background-color: #1E88E5; + border-radius: 20px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa .switch_anketa_content:before { + position: absolute; + content: ""; + height: 15px; + width: 15px; + bottom: 1px; + background-color: white; + border-radius: 50%; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content { + padding-left: 9px; + background-color: #1E88E5; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on .switch_anketa_content:before { + right: 2px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_on:hover .switch_anketa_content { + background-color: #FFC700; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content { + padding-left: 19px; + background-color: #1E88E5; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off .switch_anketa_content:before { + left: 2px; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_activate .switch_anketa.anketa_off:hover .switch_anketa_content { + background-color: #1E88E5; +} +header #top_line #anketa_header_settings .anketa_header_activation .anketa_header_lock { + margin-left: 32px; +} +header #top_line #anketa_header_settings .anketa_header_quick_settings { + margin-left: 32px; +} +header #top_line #enka_nav { + position: absolute; + right: 32px; +} +header #top_line #enka_nav #search_holder { + display: inline-block; + vertical-align: middle; +} +header #top_line #enka_nav #help_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; +} +header #top_line #enka_nav #fieldwork_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; +} +header #top_line #enka_nav #notification_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; +} +header #top_line #enka_nav input#searchSurvey { + display: none; + width: 150px; + padding: 3px 0 3px 5px; + margin-top: -8px; + border: 1px solid #1E88E5; +} +header #top_line span.sprites.mail_unread { + color: #ffffff; + font-size: 11px; + font-weight: bold; + line-height: 23px; + text-align: center; + text-indent: 10px; +} +header #top_line #xtradiv { + display: inline-block; + width: auto; + margin-left: 15px; + vertical-align: middle; +} +header #top_line #xtradiv .xtraname { + cursor: pointer; + display: inline-block; + width: auto; + font-weight: 500; + color: #1E88E5; +} +header #top_line #xtradiv .xtraname:hover { + color: #FFC700; +} +header #top_line #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 #1E88E5 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); +} +header #top_line #xtradiv #xtradivSettings span.xtraSetting { + clear: both; + float: left; + padding: 6px 0; +} +header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra { + display: inline; + vertical-align: middle; + font-size: 13px; + color: #4d4d4d; +} +header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra:hover { + color: #FFC700; +} +header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra:hover .faicon { + color: #FFC700; +} +header #top_line #xtradiv #xtradivSettings span.xtraSetting a.xtra span.faicon { + display: inline; + vertical-align: middle; + margin-right: 10px; +} +header #top_line .tooltip { + position: relative; +} +header #top_line .tooltip .expanded-tooltip { + display: none; + white-space: normal; +} +header #top_line .tooltip:hover .expanded-tooltip { + display: block; +} +header #top_line .tooltip.monitor { + cursor: pointer; +} + +header #surveyNavigation { + height: 58px; + background-color: #1E88E5; +} +header #surveyNavigation #firstNavigation { + display: flex; + height: 50px; + width: 100%; + padding-top: 10px; + font-size: 16px; + font-weight: 400; + text-align: center; +} +header #surveyNavigation #firstNavigation #mojeAnketeLink a { + color: #FFFFFF; + text-decoration: none; +} +header #surveyNavigation #firstNavigation ol { + display: flex; +} +header #surveyNavigation #firstNavigation ol li { + list-style-image: none; + list-style-position: outside; + list-style-type: none; +} +header #surveyNavigation #firstNavigation ol li a { + color: #FFFFFF; + text-decoration: none; +} +header #quick_comments_link.newCss { + font-size: 12px; + margin-top: 3px !important; + margin-right: 5px !important; +} +header #quick_comments_link.newCss a { + margin-right: 0px !important; + color: #1E88E5 !important; + font-weight: 600; +} +header #quick_comments_link.newCss a:hover { + color: #FFC700 !important; +} +header #quick_comments_link.newCss a span.comments_blue_off { + margin-top: 4px !important; +} +header #quick_comments_link.newCss a span.comments_orange_off { + margin-top: 4px !important; +} +header #quick_comments_link.newCss a span.comments_blue_on { + margin-top: -1px !important; +} +header #quick_comments_link.newCss a span.comments_orange_on { + margin-top: -1px !important; +} +header span.sprites.comments_blue_on { + color: #ffffff; + font-size: 11px; + font-weight: bold; + line-height: 12px; + text-align: center; +} +header span.sprites.comments_orange_on { + color: #ffffff; + font-size: 11px; + font-weight: bold; + line-height: 12px; + text-align: center; +} +header #secondNavigation { + display: block; + z-index: 1; + left: 0px; + right: 0px; + padding: 8px 20px 0 145px; + height: 33px; + border-bottom: 1px solid #1E88E5; + background-color: #ffffff; +} +header ul.secondNavigation { + display: inline-block; + float: left; + width: auto; + margin-top: 1px !important; + margin-bottom: 0; +} +header .secondNavigation { + display: inline-block; + list-style-image: none; + list-style-position: outside; + list-style-type: none; + padding: 0px; + width: 100%; +} +header .secondNavigation li { + display: list-item; + float: left; + padding: 0px; + margin: 0px; +} +header .secondNavigation .blank { + height: 12px; + width: 6px; +} +header .secondNavigation .no-img { + padding: 0px 12px !important; + background-image: none !important; +} +header .secondNavigation a { + display: block; + line-height: 30px; + font-size: 14px; + color: #E5E5E5; +} +header .secondNavigation a:hover { + border-bottom: 2px solid #FFC700; +} +header .secondNavigation a.active { + color: #FFC700; + background-color: inherit; + border-bottom: 2px solid #FFC700; +} +header .secondNavigation .side-left { + padding-left: 10px; +} +header .secondNavigation .side-right { + padding-right: 12px; +} +header .secondNavigation .space { + width: 20px; + height: 19px; + padding: 0px; +} +header .secondNavigation .single { + padding: 0px 12px 0px 24px¸; +} +header .secondNavigation .single:hover { + text-shadow: 0px 1px 0px #fff; +} +header .secondNavigation .single:active { + color: #E5E5E5; +} +header #secondNavigation.library { + padding-left: 35px; +} +header #secondNavigation.library a { + font-size: 14px; +} +header #secondNavigation.library ul.secondNavigation .space { + width: 25px; +} +header #secondNavigation_links { + position: relative; + float: right; + width: auto; + margin-top: -7px; + line-height: 38px; + z-index: 2; + text-align: right; +} +header #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 #1E88E5 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); +} +header #secondNavigation_links #hover_export a { + display: block; + padding: 6px 0; + color: #E5E5E5; + font-size: 14px; + transition: 0.2s; +} +header #secondNavigation_links #hover_export a:hover { + color: #FFC700; +} +header #secondNavigation_links #hover_export span.hover_export_icon { + display: inline-block; + width: 40px; +} +header 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 #1E88E5; +} +header ul.secondNavigationArchive li { + display: list-item; + padding: 0 12px; + float: left; + margin: 0px; + transition: 0.2s; +} +header ul.secondNavigationArchive li a { + color: #E5E5E5; + line-height: 31px; +} +header ul.secondNavigationArchive li a.active { + color: #FFC700; +} +header ul.secondNavigationArchive li:hover { + border-bottom: 2px solid #FFC700; +} +header ul.secondNavigationArchive li.aactive { + border-bottom: 2px solid #FFC700; +} +header div.breadcrumbs { + display: none; } footer { @@ -5475,17 +5915,17 @@ input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:b color: #1E88E5; } input[type=checkbox] + label:before { - content: "\f0c8"; + content: ""; } input[type=checkbox]:checked + label:before { - content: "\f14a"; + content: ""; font-weight: bold; } input[type=radio] + label:before { - content: "\f111"; + content: ""; } input[type=radio]:checked + label:before { - content: "\f192"; + content: ""; } input[type=checkbox][disabled] + label:before { color: #C4C4C4; @@ -5550,6 +5990,10 @@ fieldset .setting_holder span.charalimit { font-size: 12px; line-height: 15px; color: #777777; + text-align: right; +} +fieldset .setting_holder.indent { + margin-left: 27px; } select.dropdown { diff --git a/public/img/logo/1ka_logo_eng.svg b/public/img/logo/1ka_logo_eng.svg new file mode 100644 index 000000000..f7ebf0f74 --- /dev/null +++ b/public/img/logo/1ka_logo_eng.svg @@ -0,0 +1 @@ +1ka_logo \ No newline at end of file diff --git a/public/img/logo/1ka_logo_slo.svg b/public/img/logo/1ka_logo_slo.svg new file mode 100644 index 000000000..f7ebf0f74 --- /dev/null +++ b/public/img/logo/1ka_logo_slo.svg @@ -0,0 +1 @@ +1ka_logo \ No newline at end of file diff --git a/resources/sass/admin_new/components/form/fieldset.scss b/resources/sass/admin_new/components/form/fieldset.scss index b6decf7a9..e5898fb8a 100644 --- a/resources/sass/admin_new/components/form/fieldset.scss +++ b/resources/sass/admin_new/components/form/fieldset.scss @@ -38,6 +38,11 @@ fieldset{ font-size: 12px; line-height: 15px; color: $very-dark-gray; + text-align: right; + } + + &.indent { + margin-left: 27px; } } } \ No newline at end of file diff --git a/resources/sass/admin_new/components/header/header.scss b/resources/sass/admin_new/components/header/header.scss index e1c80a65c..8190c8d1e 100644 --- a/resources/sass/admin_new/components/header/header.scss +++ b/resources/sass/admin_new/components/header/header.scss @@ -1,6 +1,12 @@ -header{ - height: 170px; +/* + Header scss - top line, menu... +*/ - background-color: #eee; - overflow:scroll; -} \ No newline at end of file +header{ + .mobile_header{ + display: none; + } +} + +@import "top_line"; +@import "navigation"; \ No newline at end of file diff --git a/resources/sass/admin_new/components/header/navigation.scss b/resources/sass/admin_new/components/header/navigation.scss new file mode 100644 index 000000000..ca9f272f0 --- /dev/null +++ b/resources/sass/admin_new/components/header/navigation.scss @@ -0,0 +1,272 @@ +$first_navigation_text: $gray; +$comment_number_text: #ffffff; +$second_navigation_text: $gray; +$export_dropdown_text: $gray; +$second_navigation_background: #ffffff; + +header{ + + #surveyNavigation { + height: 58px; + + background-color: $blue; + + #firstNavigation { + display: flex; + + height: 50px; + width: 100%; + + padding-top: 10px; + + font-size: 16px; + font-weight: 400; + text-align: center; + + #mojeAnketeLink { + a { + color: $white; + text-decoration: none; + } + } + + ol { + display: flex; + + li { + list-style-image: none; + list-style-position: outside; + list-style-type: none; + + a { + color: $white; + text-decoration: none; + } + } + } + } + } + + + + + + #quick_comments_link.newCss { + font-size: 12px; + margin-top: 3px !important; + margin-right: 5px !important; + a { + margin-right: 0px !important; + color: $blue !important; + font-weight: 600; + &:hover { + color: $yellow !important; + } + span.comments_blue_off { + margin-top: 4px !important; + } + span.comments_orange_off { + margin-top: 4px !important; + } + span.comments_blue_on { + margin-top: -1px !important; + } + span.comments_orange_on { + margin-top: -1px !important; + } + } + } + span.sprites.comments_blue_on { + color: $comment_number_text; + font-size: 11px; + font-weight: bold; + line-height: 12px; + text-align: center; + } + span.sprites.comments_orange_on { + color: $comment_number_text; + font-size: 11px; + font-weight: bold; + line-height: 12px; + text-align: center; + } + + + #secondNavigation { + display: block; + z-index: 1; + left: 0px; + right: 0px; + padding: 8px 20px 0 145px; + height: 33px; + border-bottom: 1px solid $blue; + background-color: $second_navigation_background; + } + + 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%; + li { + display: list-item; + float: left; + padding: 0px; + margin: 0px; + } + .blank { + height: 12px; + width: 6px; + } + .no-img { + padding: 0px 12px !important; + background-image: none !important; + } + a { + display: block; + line-height: 30px; + font-size: 14px; + color: $second_navigation_text; + + &:hover { + border-bottom: 2px solid $yellow; + } + } + a.active { + color: $yellow; + background-color: inherit; + border-bottom: 2px solid $yellow; + } + .side-left { + padding-left: 10px; + } + .side-right { + padding-right: 12px; + } + .space { + width: 20px; + height: 19px; + padding: 0px; + } + .single { + padding: 0px 12px 0px 24px¸; + &:hover { + text-shadow: 0px 1px 0px #fff; + } + &:active { + color: $gray; + } + } + } + + #secondNavigation.library { + padding-left: 35px; + a { + font-size: 14px; + } + 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; + #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: $second_navigation_background; + border: 1px $blue 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); + a { + display: block; + padding: 6px 0; + color: $export_dropdown_text; + font-size: 14px; + + transition: 0.2s; + + &:hover { + color: $yellow; + } + } + 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 $blue; + + li { + display: list-item; + padding: 0 12px; + float: left; + margin: 0px; + + transition: 0.2s; + + a { + color: $second_navigation_text; + line-height: 31px; + } + a.active { + color: $yellow; + } + &:hover { + border-bottom: 2px solid $yellow; + } + } + li.aactive{ + border-bottom: 2px solid $yellow; + } + } + + + // skrijemo breadcrumbs na desktopu + div.breadcrumbs { + display: none; + } + +} diff --git a/resources/sass/admin_new/components/header/top_line.scss b/resources/sass/admin_new/components/header/top_line.scss new file mode 100644 index 000000000..b97f7fada --- /dev/null +++ b/resources/sass/admin_new/components/header/top_line.scss @@ -0,0 +1,274 @@ +$anketa_title: $gray; +$anketa_url_disabled: $gray; +$anketa_url_enabled: $blue; +$mail_unread: #ffffff; +$user_dropdown_text: #4d4d4d; +$header_background: #ffffff; + +header #top_line{ + display: flex; + align-items: center; + + height: 58px; + + padding: 0 32px; + + + // Logo zgoraj levo + #logo_holder { + width: 87px; + height: 40px; + + a{ + display: block; + width: 87px; + height: 40px; + + background-image: url(../img/logo/1ka_logo_slo.svg); + background-repeat: no-repeat; + } + + &.english a{ + background-image: url(../img/logo/1ka_logo_eng.svg); + } + } + + + // Podatki o anketi v zgornji vrstici (naslov, aktivacija, preview...) + #anketa_header_settings{ + display: flex; + + margin-left: 30px; + + .anketa_header_naslov { + a { + font-size: 20px; + color: $black; + text-decoration: none; + font-weight: 600; + } + } + + // Help, preview ikone + .anketa_header_help{ + margin-left: 37px; + } + + .anketa_header_activation{ + display: flex; + align-items: center; + + .anketa_header_preview{ + margin-left: 32px; + } + + .anketa_header_url{ + margin-left: 32px; + + a{ + font-size: 16px; + text-decoration: none; + } + } + + .anketa_header_activate{ + margin-left: 32px; + + // Gumb za aktivacijo ankete + .switch_anketa { + position: relative; + display: block; + + width: 50px; + height: 20px; + + color: white; + font-size: 12px; + font-weight: 400; + + .switch_anketa_content { + position: absolute; + cursor: pointer; + top: 0; + left: 0; + right: 0; + bottom: 0; + padding-top: 1px; + + background-color: $blue; + border-radius: 20px; + } + .switch_anketa_content:before { + position: absolute; + content: ""; + + height: 15px; + width: 15px; + bottom: 1px; + + background-color: white; + border-radius: 50%; + } + } + + .switch_anketa.anketa_on{ + .switch_anketa_content{ + padding-left: 9px; + background-color: $blue; + } + .switch_anketa_content:before{ + right: 2px; + } + &:hover{ + .switch_anketa_content{ + background-color: $yellow; + } + } + } + + .switch_anketa.anketa_off{ + .switch_anketa_content{ + padding-left: 19px; + background-color: $blue; + } + .switch_anketa_content:before{ + left: 2px; + } + &:hover{ + .switch_anketa_content{ + background-color: $blue; + } + } + } + } + + .anketa_header_lock{ + margin-left: 32px; + } + } + + .anketa_header_quick_settings{ + margin-left: 32px; + } + } + + + // Nastavitve zgoraj desno (search, uporabnik...) + #enka_nav { + position: absolute; + right: 32px; + + + #search_holder { + display: inline-block; + vertical-align: middle; + } + #help_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; + } + #fieldwork_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; + } + #notification_holder { + display: inline-block; + vertical-align: middle; + margin-left: 12px; + } + + input#searchSurvey { + display: none; + width: 150px; + padding: 3px 0 3px 5px; + margin-top: -8px; + border: 1px solid $blue; + } + } + span.sprites.mail_unread { + color: $mail_unread; + 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; + .xtraname { + cursor: pointer; + display: inline-block; + width: auto; + font-weight: 500; + color: $blue; + + &:hover{ + color: $yellow; + } + } + #xtradivSettings { + display: none; + position: absolute; + z-index: 99999; + right: 8px; + top: 35px; + padding: 5px 10px; + width: 120px; + text-align: left; + background-color: $header_background; + border: 1px $blue 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); + span.xtraSetting { + clear: both; + float: left; + padding: 6px 0; + a.xtra { + display: inline; + vertical-align: middle; + + font-size: 13px; + color: $user_dropdown_text; + + &:hover { + color: $yellow; + .faicon { + color: $yellow; + } + } + + span.faicon { + display: inline; + vertical-align: middle; + margin-right: 10px; + } + } + } + + } + } + + /*tooltips on survey*/ + .tooltip { + position: relative; + .expanded-tooltip { + display: none; + white-space: normal; + } + &:hover { + .expanded-tooltip { + display: block; + } + } + } + .tooltip.monitor { + cursor: pointer; + } + +} \ No newline at end of file diff --git a/utils/1kaUtils/app_settings_copy.php b/utils/1kaUtils/app_settings_copy.php index 7449f3a5a..6d8481a20 100644 --- a/utils/1kaUtils/app_settings_copy.php +++ b/utils/1kaUtils/app_settings_copy.php @@ -14,10 +14,20 @@ error_reporting(E_ALL); include_once('../../function.php'); include_once('../../vendor/autoload.php'); -include_once('../../settings_optional.php'); +include_once($site_path.'/settings_optional.php'); -global $site_domain; +echo '

    '; +echo $site_url; +echo '

    '; +echo $site_path; +echo '

    '; + + +if($site_domain == '') + die(); + +$sql = sisplet_query("DELETE FROM app_settings WHERE domain='".$site_domain."'"); // Debuging - 0 ali 1, ali imamo debug vključen (privzeto je izključen)