From a00123a37b5e49ea9238de89151c8c6eca071a35 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 10:50:41 +0200
Subject: [PATCH 1/8] Objava - pregled
---
admin/survey/SurveyAdminSettings.php | 1 +
public/css/admin_new.css | 33 +++++++-
public/img/icons/lock_yellow.svg | 6 ++
.../pages/survey_objava/pregled.scss | 82 ++++++++++++++++++-
4 files changed, 119 insertions(+), 3 deletions(-)
create mode 100644 public/img/icons/lock_yellow.svg
diff --git a/admin/survey/SurveyAdminSettings.php b/admin/survey/SurveyAdminSettings.php
index 5fd1ee2c6..c97d9b0f4 100644
--- a/admin/survey/SurveyAdminSettings.php
+++ b/admin/survey/SurveyAdminSettings.php
@@ -2797,6 +2797,7 @@ class SurveyAdminSettings {
echo '';
echo '
';
echo $lang['srv_publication_invitations'];
+ echo '

';
echo '
';
echo $lang['srv_publication_invitations_text'];
echo '';
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index 3ad9e8245..eed51eb39 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -24596,11 +24596,20 @@ div#vabila div.more div.more_block div.more_title div.more_title_icon span.fa-1
bottom: 1px;
right: 1px;
}
+div#vabila div.more div.more_block div.more_title .mail_yellow {
+ margin-left: 32px;
+}
div#vabila div.more div.more_block div.more_title a.help {
color: inherit;
text-decoration: none;
margin-left: 5px;
}
+div#vabila div.more div.more_block:first-of-type .more_title {
+ color: #FFC700;
+}
+div#vabila div.more div.more_block:first-of-type span.faicon.empty {
+ color: #FFC700;
+}
div#general_popup div.popup_content.publish {
max-width: 600px;
@@ -24646,7 +24655,7 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
display: none;
}
-@media screen and (max-width: 1300px) {
+@media screen and (max-width: 1025px) {
#vabila .copy_survey_url_holder .input_box {
width: 300px;
}
@@ -24658,6 +24667,28 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
}
#vabila .button_holder #nice_url_holder {
margin: 16px 0px !important;
+ flex-direction: row;
+ }
+}
+@media screen and (max-width: 850px) {
+ .page_vabila #vabila .button_holder #nice_url_holder {
+ flex-direction: row !important;
+ }
+ .page_vabila #vabila .button_holder #nice_url_holder .buttons {
+ margin: 0px !important;
+ }
+}
+@media screen and (max-width: 725px) {
+ h2 {
+ font-size: 20px !important;
+ }
+}
+@media screen and (max-width: 500px) {
+ .page_vabila #vabila .button_holder #nice_url_holder {
+ flex-direction: column !important;
+ }
+ .page_vabila #vabila .button_holder #nice_url_holder .buttons {
+ margin: 0px !important;
}
}
.page_invitations .invitations_holder.half-half {
diff --git a/public/img/icons/lock_yellow.svg b/public/img/icons/lock_yellow.svg
new file mode 100644
index 000000000..c623e3512
--- /dev/null
+++ b/public/img/icons/lock_yellow.svg
@@ -0,0 +1,6 @@
+
+
+
+
diff --git a/resources/sass/admin_new/pages/survey_objava/pregled.scss b/resources/sass/admin_new/pages/survey_objava/pregled.scss
index d48d8bcc4..b5c3d08fa 100644
--- a/resources/sass/admin_new/pages/survey_objava/pregled.scss
+++ b/resources/sass/admin_new/pages/survey_objava/pregled.scss
@@ -246,6 +246,10 @@ div#vabila {
}
}
+ .mail_yellow{
+ margin-left: 32px;
+ }
+
a.help {
color: inherit;
text-decoration: none;
@@ -255,6 +259,16 @@ div#vabila {
}
}
+
+ div.more_block:first-of-type{
+ .more_title{
+ color: #FFC700;
+ }
+
+ span.faicon.empty{
+ color: #FFC700;
+ }
+ }
}
}
@@ -324,7 +338,7 @@ div#general_popup {
}
-@media screen and (max-width: 1300px){
+@media screen and (max-width: 1025px){
#vabila{
@@ -346,6 +360,9 @@ div#general_popup {
#nice_url_holder {
margin: 16px 0px !important;
+ flex-direction: row;
+
+
}
@@ -355,7 +372,68 @@ div#general_popup {
}
+
+}
+
+@media screen and (max-width: 850px) {
+ .page_vabila{
+
+ #vabila{
+
+ .button_holder{
+
+ #nice_url_holder {
+
+ flex-direction: row !important;
+
+ .buttons{
+ margin: 0px !important;
+ }
+
+ }
+
+
+
+ }
+
+ }
+
+ }
+}
+
+@media screen and (max-width: 725px) {
+
+ h2 {
+ font-size: 20px !important ;
+ }
+}
+
+@media screen and (max-width: 500px) {
+ .page_vabila{
+
+ #vabila{
+
+ .button_holder{
-}
\ No newline at end of file
+ #nice_url_holder {
+
+ flex-direction: column !important;
+
+ .buttons{
+ margin: 0px !important;
+ }
+
+ }
+
+
+
+ }
+
+ }
+
+ }
+
+
+}
From f354c1eba74b0a6df9187094e41884df698a14f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 11:08:46 +0200
Subject: [PATCH 2/8] Objava - pregled
---
public/css/admin_new.css | 11 +++++++
.../pages/survey_objava/pregled.scss | 33 +++++++++++++++++--
2 files changed, 42 insertions(+), 2 deletions(-)
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index eed51eb39..853cdfce7 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -24655,6 +24655,11 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
display: none;
}
+@media screen and (max-width: 1130px) {
+ .more_block {
+ width: 40% !important;
+ }
+}
@media screen and (max-width: 1025px) {
#vabila .copy_survey_url_holder .input_box {
width: 300px;
@@ -24683,6 +24688,12 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
font-size: 20px !important;
}
}
+@media screen and (max-width: 540px) {
+ .page_vabila #vabila .more .more_block {
+ width: unset !important;
+ width: 100% !important;
+ }
+}
@media screen and (max-width: 500px) {
.page_vabila #vabila .button_holder #nice_url_holder {
flex-direction: column !important;
diff --git a/resources/sass/admin_new/pages/survey_objava/pregled.scss b/resources/sass/admin_new/pages/survey_objava/pregled.scss
index b5c3d08fa..568c24018 100644
--- a/resources/sass/admin_new/pages/survey_objava/pregled.scss
+++ b/resources/sass/admin_new/pages/survey_objava/pregled.scss
@@ -338,6 +338,15 @@ div#general_popup {
}
+@media screen and (max-width: 1130px){
+
+ .more_block{
+ width: 40% !important;
+ }
+}
+
+
+
@media screen and (max-width: 1025px){
#vabila{
@@ -410,6 +419,27 @@ div#general_popup {
}
}
+@media screen and (max-width: 540px) {
+ .page_vabila{
+
+ #vabila{
+
+
+ .more{
+
+ .more_block{
+ width: unset !important;
+ width: 100% !important;
+ }
+ }
+
+
+ }
+
+ }
+}
+
+
@media screen and (max-width: 500px) {
.page_vabila{
@@ -429,8 +459,7 @@ div#general_popup {
- }
-
+ }
}
}
From 9372f5f0a29d86b99660047c22df02ee0734f2ee Mon Sep 17 00:00:00 2001
From: pero1203
Date: Mon, 18 Jul 2022 11:51:52 +0200
Subject: [PATCH 3/8] Redesign - popravek sirine texta "stran 1"... pri
urejanju
---
frontend/simple/css/style.css | 21 +-
public/css/admin_new.css | 2965 +++++++++--------
.../pages/survey_edit/branching.scss | 7 +-
.../survey_edit/branching_collapsed.scss | 1 +
4 files changed, 1540 insertions(+), 1454 deletions(-)
diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css
index 433c72ab7..5ba03cda1 100644
--- a/frontend/simple/css/style.css
+++ b/frontend/simple/css/style.css
@@ -3,7 +3,8 @@
Created on : 28.3.2020
Author : Peter Hrvatin
*/
-/* BARVE */ /* FONTI */
+/* BARVE */
+/* FONTI */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,600,700&subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");
.thin {
@@ -723,13 +724,16 @@ body.reset_password_activate div.label {
#main .main_content {
min-height: unset;
}
+
/* --------------HAMBURGER---------------------------------- */
.nav-desktop {
display: none;
}
+
.mobile {
display: block;
}
+
#nav-icon3 {
width: 38px;
height: 20px;
@@ -773,35 +777,42 @@ body.reset_password_activate div.label {
#nav-icon3 span:nth-child(4) {
top: 18px;
}
+
#nav-icon3.open span:nth-child(1) {
top: 9px;
width: 0%;
left: 50%;
}
+
#nav-icon3.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
+
#nav-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
+
#nav-icon3.open span:nth-child(4) {
top: 9px;
width: 0%;
left: 50%;
}
+
#links {
display: none;
}
+
/* */
.aai a {
color: #333333;
}
+
#links.open {
position: absolute;
top: 72px;
@@ -811,8 +822,9 @@ body.reset_password_activate div.label {
align-items: center;
width: 100%;
height: 100vh;
- background-color: rgb(255, 255, 255);
+ background-color: white;
}
+
#links .menu_item {
font-size: 30px;
margin-top: 30px;
@@ -824,6 +836,7 @@ body.reset_password_activate div.label {
#links .menu_item a:hover {
color: #1E88E5;
}
+
body #main .main_content {
padding: 10px 20px 40px 20px;
}
@@ -865,6 +878,7 @@ body #main .main_content input[type=button] {
margin: 0;
width: 100%;
}
+
body.landing_page,
body.login,
body.register,
@@ -951,6 +965,7 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
width: 100%;
box-sizing: border-box;
}
+
footer {
padding: 0 20px;
}
@@ -981,6 +996,7 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
footer .footer_content .logo_holder img {
margin: 20px auto 30px auto;
}
+
.cookie_notice {
flex-direction: column;
}
@@ -988,6 +1004,7 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
margin: 0 0 20px 0;
text-align: center;
}
+
body #main .main_content .register_holder h1 {
font-size: 50px;
font-weight: 300;
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index 853cdfce7..f8436a52a 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -214,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 {
@@ -5353,22 +5353,22 @@ and open the template in the editor.
color: #E5E5E5;
}
.enka-custom-radio.star::before {
- content: "\f005";
+ content: "";
}
.enka-custom-radio.thumb::before {
- content: "\f164";
+ content: "";
}
.enka-custom-radio.smiley::before {
- content: "\f118";
+ content: "";
}
.enka-custom-radio.heart::before {
- content: "\f004";
+ content: "";
}
.enka-custom-radio.flag::before {
- content: "\f024";
+ content: "";
}
.enka-custom-radio.user::before {
- content: "\f007";
+ content: "";
}
/* visual analog scale - radio buttons */
@@ -5379,25 +5379,25 @@ and open the template in the editor.
color: #E5E5E5;
}
.enka-vizualna-skala.siv-61::before, .enka-vizualna-skala.siv-71::before {
- content: "\f5b4";
+ content: "";
}
.enka-vizualna-skala.siv-41::before, .enka-vizualna-skala.siv-51::before, .enka-vizualna-skala.siv-62::before, .enka-vizualna-skala.siv-72::before {
- content: "\f57a";
+ content: "";
}
.enka-vizualna-skala.siv-21::before, .enka-vizualna-skala.siv-31::before, .enka-vizualna-skala.siv-42::before, .enka-vizualna-skala.siv-52::before, .enka-vizualna-skala.siv-63::before, .enka-vizualna-skala.siv-73::before {
- content: "\f119";
+ content: "";
}
.enka-vizualna-skala.siv-32::before, .enka-vizualna-skala.siv-53::before, .enka-vizualna-skala.siv-74::before {
- content: "\f11a";
+ content: "";
}
.enka-vizualna-skala.siv-22::before, .enka-vizualna-skala.siv-33::before, .enka-vizualna-skala.siv-43::before, .enka-vizualna-skala.siv-54::before, .enka-vizualna-skala.siv-64::before, .enka-vizualna-skala.siv-75::before {
- content: "\f118";
+ content: "";
}
.enka-vizualna-skala.siv-44::before, .enka-vizualna-skala.siv-55::before, .enka-vizualna-skala.siv-65::before, .enka-vizualna-skala.siv-76::before {
- content: "\f580";
+ content: "";
}
.enka-vizualna-skala.siv-66::before, .enka-vizualna-skala.siv-77::before {
- content: "\f59c";
+ content: "";
}
/*
@@ -5411,88 +5411,88 @@ and open the template in the editor.
*/
/* icons */
span.faicon.plus::before {
- content: "\f067";
+ content: "";
}
span.faicon.minus::before {
- content: "\f068";
+ content: "";
}
span.faicon.success::before,
span.circle-check::before {
- content: "\f058";
+ content: "";
}
span.faicon.close::before {
font-size: 18px;
font-weight: 400;
- content: "\f057";
+ content: "";
}
span.faicon.dropdown_blue::before {
font-size: 16px;
- content: "\f13a";
+ content: "";
}
span.faicon.dropup_blue::before {
font-size: 16px;
- content: "\f139";
+ content: "";
}
span.faicon.arrow_back::before {
font-weight: 600;
font-size: 16px;
- content: "\f137";
+ content: "";
}
span.faicon.add::before {
font-size: 18px;
- content: "\f055";
+ content: "";
}
span.faicon.remove::before {
font-size: 18px;
- content: "\f056";
+ content: "";
}
span.faicon.delete::before {
font-size: 18px;
font-weight: 400;
- content: "\f2ed";
+ content: "";
}
span.faicon.anketa_delete::before {
font-size: 24px;
font-weight: 400;
- content: "\f2ed";
+ content: "";
}
span.faicon.copy::before {
font-size: 18px;
- content: "\f0c5";
+ content: "";
font-weight: 400;
}
span.faicon.anketa_copy::before {
font-size: 24px;
- content: "\f0c5";
+ content: "";
font-weight: 400;
}
span.faicon.export::before {
font-size: 24px;
- content: "\f56e";
+ content: "";
}
span.faicon.file-import::before {
- content: "\f56f";
+ content: "";
transform: scaleX(-1);
}
span.faicon.import::before {
font-size: 24px;
font-weight: 400;
- content: "\f1c2";
+ content: "";
}
/*span.faicon.import::after{
@@ -5502,137 +5502,137 @@ span.faicon.import::before {
}*/
span.faicon.library::before {
font-size: 24px;
- content: "\f518";
+ content: "";
}
span.faicon.folder::before {
font-size: 16px;
font-weight: 600;
- content: "\f07b";
+ content: "";
}
span.faicon.folder_empty::before {
font-size: 16px;
font-weight: 400;
- content: "\f07b";
+ content: "";
}
span.faicon.after.sort_down_arrow::after {
- content: "\f0d7";
+ content: "";
margin-left: 5px;
}
span.faicon.after.sort_up_arrow::after {
- content: "\f0d8";
+ content: "";
margin-left: 5px;
}
span.faicon.info::before {
font-size: 28px;
- content: "\f05a";
+ content: "";
vertical-align: middle;
}
span.faicon.pagination_left::before {
margin: 0 1px 0 1px;
- content: "\f104";
+ content: "";
}
span.faicon.pagination_right::before {
margin: 0 0 0 1px;
- content: "\f105";
+ content: "";
}
span.faicon.edit::before,
span.faicon.edit2::before {
- content: "\f304";
+ content: "";
}
span.faicon.refresh::before {
font-size: 18px;
- content: "\f2f1";
+ content: "";
}
span.faicon.filter::before {
font-size: 18px;
- content: "\f0b0";
+ content: "";
}
span.faicon.grip::before {
- content: "\f58e";
+ content: "";
}
span.faicon.star::before,
span.faicon.star_off::before {
font-size: 14px;
font-weight: 400;
- content: "\f005";
+ content: "";
}
span.faicon.star_on::before {
font-size: 14px;
font-weight: 700;
- content: "\f005";
+ content: "";
}
span.faicon.search::before {
font-size: 20px;
- content: "\f002";
+ content: "";
}
span.faicon.clipboard_notes::before {
font-size: 20px;
- content: "\f46d";
+ content: "";
}
span.faicon.help2::before {
font-size: 20px;
- content: "\f059";
+ content: "";
}
span.faicon.user::before {
font-size: 18px;
- content: "\f007";
+ content: "";
}
span.faicon.logout::before {
font-size: 20px;
- content: "\f2f5";
+ content: "";
}
.faicon.monitor::before {
- content: "\f108";
+ content: "";
}
.faicon.mobile::before {
- content: "\f3cd";
+ content: "";
}
.faicon.tablet::before {
- content: "\f3fa";
+ content: "";
}
span.faicon.users::before {
- content: "\f500";
+ content: "";
}
span.faicon.lock_open::before {
- content: "\f3c1";
+ content: "";
}
span.faicon.lock_close::before {
- content: "\f023";
+ content: "";
}
span.faicon.bottom_saving::before {
font-size: 24px;
font-weight: 400;
- content: "\f0c7";
+ content: "";
}
span.faicon.bottom_publish::before {
font-size: 24px;
- content: "\f093";
+ content: "";
}
span.faicon.bottom_preview {
@@ -5642,63 +5642,63 @@ span.faicon.bottom_preview {
span.faicon.bottom_preview::before {
font-size: 24px;
font-weight: 400;
- content: "\f15b";
+ content: "";
}
span.faicon.bottom_preview::after {
font-size: 14px;
- content: "\f002";
+ content: "";
display: inline-block;
margin-left: -70%;
}
span.faicon.bottom_test::before {
font-size: 24px;
- content: "\f492";
+ content: "";
}
span.faicon.language::before {
font-size: 24px;
- content: "\f0ac";
+ content: "";
}
span.faicon.mobile_off::before {
font-size: 24px;
- content: "\f3cd";
+ content: "";
}
span.faicon.mobile_off::after {
font-size: 24px;
- content: "\f715";
+ content: "";
margin-left: -23px;
}
span.faicon.comments::before {
- content: "\f27a";
+ content: "";
font-weight: 700;
}
span.faicon.comments_empty::before {
- content: "\f27a";
+ content: "";
font-weight: 400;
}
span.faicon.data_link::before {
- content: "\f0c1";
+ content: "";
}
span.faicon.data_link_small::before {
- content: "\f0c1";
+ content: "";
}
span.faicon.print::before {
font-size: 24px;
- content: "\f02f";
+ content: "";
}
span.faicon.print_small::before {
font-size: 16px;
- content: "\f02f";
+ content: "";
}
span.faicon.preview {
@@ -5708,11 +5708,11 @@ span.faicon.preview {
span.faicon.preview::before {
font-size: 18px;
font-weight: 400;
- content: "\f15b";
+ content: "";
}
span.faicon.preview::after {
- content: "\f002";
+ content: "";
display: inline-block;
font-size: 11px;
margin-left: -50%;
@@ -5720,87 +5720,87 @@ span.faicon.preview::after {
span.faicon.palette::before {
font-size: 18px;
- content: "\f53f";
+ content: "";
}
span.faicon.inline_comment::before {
font-size: 14px;
font-weight: 400;
- content: "\f075";
+ content: "";
}
span.faicon.inline_double_comment::before {
font-size: 14px;
font-weight: 400;
- content: "\f086";
+ content: "";
}
span.faicon.comments_creport::before {
font-size: 16px;
- content: "\f086";
+ content: "";
}
span.faicon.compress::before {
font-size: 15px;
- content: "\f066";
+ content: "";
}
span.faicon.expand::before {
font-size: 15px;
- content: "\f065";
+ content: "";
}
span.faicon.hashtag::before {
font-size: 15px;
- content: "\f292";
+ content: "";
}
span.faicon.bug::before {
font-size: 15px;
- content: "\f188";
+ content: "";
}
span.faicon.paragraph::before {
font-size: 15px;
- content: "\f1dd";
+ content: "";
}
span.faicon.replace::before {
font-size: 15px;
- content: "\f362";
+ content: "";
}
span.faicon.plus_square::before {
font-size: 15px;
font-weight: 400;
- content: "\f0fe";
+ content: "";
}
span.faicon.minus_square::before {
font-size: 15px;
font-weight: 400;
- content: "\f146";
+ content: "";
}
span.faicon.delete_circle::before {
font-size: 14px;
- content: "\f056";
+ content: "";
}
span.faicon.quick_view::before {
font-size: 15px;
font-weight: 400;
- content: "\f06e";
+ content: "";
}
span.faicon.edit_square::before {
font-size: 15px;
- content: "\f044";
+ content: "";
}
span.faicon.test::before {
font-size: 15px;
- content: "\f492";
+ content: "";
}
a.faicon.if_add {
@@ -5836,7 +5836,7 @@ span.faicon.if_add:hover:before {
}
span.faicon.text_file::before {
- content: "\f15c";
+ content: "";
}
span.faicon.text_file_small {
@@ -5846,40 +5846,40 @@ span.faicon.text_file_small {
span.faicon.text_file_small:before {
font-size: 18px;
font-weight: 400;
- content: "\f15c";
+ content: "";
}
span.faicon.warning::before {
font-size: 16px;
- content: "\f071";
+ content: "";
}
span.faicon.users_small::before {
font-size: 16px;
- content: "\f0c0";
+ content: "";
}
span.faicon.popup_0::before {
font-size: 14px;
- content: "\f065";
+ content: "";
color: #1E88E5;
}
span.faicon.popup_1::before {
font-size: 14px;
- content: "\f065";
+ content: "";
color: #0059ab;
}
span.faicon.flat_0::before {
font-size: 14px;
- content: "\f03c";
+ content: "";
color: #0059ab;
}
span.faicon.flat_1::before {
font-size: 14px;
- content: "\f03c";
+ content: "";
color: #1E88E5;
}
@@ -5894,46 +5894,46 @@ span.basic-icon.spss::before {
span.faicon.external_link::before {
font-size: 14px;
font-weight: 600;
- content: "\f35d";
+ content: "";
}
span.faicon.cog_large::before {
font-size: 34px;
font-weight: 600;
- content: "\f013";
+ content: "";
}
span.faicon.chart_large::before {
font-size: 34px;
font-weight: 600;
- content: "\f201";
+ content: "";
}
span.faicon.reload_large::before {
font-size: 34px;
font-weight: 600;
- content: "\f021";
+ content: "";
}
span.faicon.chart::before {
- content: "\f080";
+ content: "";
font-size: 16px;
font-weight: 600;
}
span.faicon.data::before {
- content: "\f1c0";
+ content: "";
font-size: 16px;
font-weight: 600;
}
span.faicon.publish::before {
- content: "\f093";
+ content: "";
font-size: 16px;
}
span.faicon.test::before {
- content: "\f492";
+ content: "";
font-size: 16px;
}
@@ -5943,63 +5943,63 @@ button.ui-datepicker-trigger::before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 16px;
- content: "\f073";
+ content: "";
}
/* ARROWS */
span.faicon.arrow_up::before {
font-size: 14px;
- content: "\f062";
+ content: "";
}
span.faicon.arrow2_r::before {
font-size: 14px;
- content: "\f054";
+ content: "";
}
span.faicon.arrow2_l::before {
font-size: 14px;
- content: "\f053";
+ content: "";
}
span.faicon.arrow2_d::before {
font-size: 14px;
- content: "\f078";
+ content: "";
}
span.faicon.arrow2_u::before {
font-size: 14px;
- content: "\f077";
+ content: "";
}
span.faicon.arrow_large2_r::before {
font-size: 35px;
- content: "\f054";
+ content: "";
}
span.faicon.arrow_large2_l::before {
font-size: 35px;
- content: "\f053";
+ content: "";
}
span.faicon.arrow_verylarge2_r::before {
font-size: 40px;
- content: "\f054";
+ content: "";
}
span.faicon.arrow_verylarge2_l::before {
font-size: 40px;
- content: "\f053";
+ content: "";
}
span.faicon.sort_descending::before {
font-size: 14px;
- content: "\f0d7";
+ content: "";
}
span.faicon.sort_ascending::before {
font-size: 14px;
- content: "\f0d8";
+ content: "";
}
/* Plus/minus sqare */
@@ -6011,127 +6011,127 @@ span.folder_plusminus {
span.faicon.plus_orange::before {
font-size: 12px;
font-weight: 400;
- content: "\f0fe";
+ content: "";
}
span.faicon.minus_orange::before {
font-size: 12px;
font-weight: 400;
- content: "\f146";
+ content: "";
}
/* Spinner */
span.faicon.spinner::before {
font-size: 18px;
- content: "\f1ce";
+ content: "";
}
/* Bars - mobile menu */
span.faicon.bars::before {
font-size: 26px;
- content: "\f0c9";
+ content: "";
}
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: "";
vertical-align: middle;
}
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: "";
}
span.faicon.clipboard::before {
- content: "\f328";
+ content: "";
}
span.faicon.list-alt::before {
- content: "\f022";
+ content: "";
}
span.faicon.vote-yes::before {
- content: "\f772";
+ content: "";
}
span.faicon.file-preview::before {
- content: "\f865";
+ content: "";
}
span.faicon.dots::before {
- content: "\f141";
+ content: "";
font-size: 16px;
font-weight: 600;
}
span.faicon.dots_ver:before {
- content: "\f142";
+ content: "";
font-size: 16px;
font-weight: 600;
}
span.faicon.open_icon::before,
a.faicon.open_icon::before {
- content: "\f35d";
+ content: "";
}
span.faicon.table_icon::before {
- content: "\f0ce";
+ content: "";
}
span.faicon.list::before {
- content: "\f03a";
+ content: "";
}
span.faicon.link-chain::before {
- content: "\f0c1";
+ content: "";
}
span.fa-brands.html5::before {
- content: "\f13b";
+ content: "";
}
span.faicon.stopwatch20::before {
- content: "\e06f";
+ content: "";
}
span.faicon.checkbox-empty::before {
- content: "\f0c8";
+ content: "";
font-weight: 400 !important;
}
@@ -6140,11 +6140,11 @@ span.faicon.fa-1::before {
}
span.faicon.phone::before {
- content: "\f095";
+ content: "";
}
span.faicon.screwdriver::before {
- content: "\f7d9";
+ content: "";
font-weight: 600 !important;
}
@@ -6282,23 +6282,23 @@ and open the template in the editor.
*/
/* Toolbox na levi strani */
span.faicon.wheel_32::before {
- content: "\f013";
+ content: "";
}
span.faicon.radio_32::before {
- content: "\f192";
+ content: "";
font-weight: 400;
font-size: 18px;
}
span.faicon.check_32::before {
- content: "\f14a";
+ content: "";
font-weight: 400;
font-size: 18px;
}
span.faicon.matrix_32::before {
- content: "\f192\f192\a\f192\f192";
+ content: "\a";
white-space: pre;
font-weight: 400;
font-size: 12px;
@@ -6322,7 +6322,7 @@ span.faicon.nagovor::before {
}
span.faicon.plus_32::before {
- content: "\f055";
+ content: "";
font-size: 18px;
}
@@ -6366,12 +6366,12 @@ span.faicon.edit-vprasanje {
}
span.faicon.edit-vprasanje:before {
font-size: 18px;
- content: "\f031";
+ content: "";
}
a.faicon.edit::before {
font-size: 16px;
- content: "\f304";
+ content: "";
}
a.faicon.addif::before {
@@ -6383,22 +6383,22 @@ a.faicon.addif::before {
a.faicon.copy::before {
font-size: 18px;
font-weight: 400;
- content: "\f0c5";
+ content: "";
}
a.faicon.copycond::before {
font-size: 18px;
- content: "\f0c5";
+ content: "";
}
a.faicon.preview::before {
font-size: 18px;
font-weight: 400;
- content: "\f15b";
+ content: "";
}
a.faicon.preview::after {
- content: "\f002";
+ content: "";
display: inline-block;
font-size: 11px;
margin-left: -50%;
@@ -6406,25 +6406,25 @@ a.faicon.preview::after {
a.faicon.arhiv::before {
font-size: 18px;
- content: "\f044";
+ content: "";
}
a.faicon.delete::before {
font-size: 18px;
font-weight: 400;
- content: "\f2ed";
+ content: "";
}
a.faicon.hide::before {
font-size: 18px;
font-weight: 400;
- content: "\f06e";
+ content: "";
}
a.faicon.unhide_icon::before {
font-size: 18px;
font-weight: 400;
- content: "\f070";
+ content: "";
}
/* Urejanje vrednosti inline */
@@ -6438,12 +6438,12 @@ a.faicon.unhide_icon::before {
.variabla span.inline.faicon.edit2::before {
font-size: 14px;
- content: "\f304";
+ content: "";
}
.variabla span.inline.faicon.odg_hidden::before {
font-size: 14px;
- content: "\f05e";
+ content: "";
}
.variabla span.inline.faicon.odg_hidden.show-hidden::before {
@@ -6471,23 +6471,23 @@ span.inline.faicon.odg_if_not::before {
.variabla span.inline.faicon.odg_if_follow::after {
font-size: 14px;
margin-left: 2px;
- content: "\f0da";
+ content: "";
}
.variabla span.inline.faicon.correct::before {
font-size: 14px;
font-weight: 900;
- content: "\f00c";
+ content: "";
}
.faicon.move_updown::before {
font-size: 16px;
color: #0059ab;
- content: "\f338";
+ content: "";
}
.faicon.image_upload::before {
- content: "\f03e";
+ content: "";
font-weight: 400;
}
@@ -6504,22 +6504,22 @@ and open the template in the editor.
span.faicon.mapca.anketa::before {
font-size: 16px;
font-weight: 400;
- content: "\f022";
+ content: "";
}
span.faicon.table::before {
font-size: 16px;
- content: "\f00b";
+ content: "";
}
span.faicon.other_vprasanja::before {
font-size: 16px;
- content: "\f0ca" !important;
+ content: "" !important;
}
span.faicon.osnovna_vprasanja::before {
font-size: 16px;
- content: "\f0ca";
+ content: "";
}
span.faicon.mapca.if::before {
@@ -6547,7 +6547,7 @@ and open the template in the editor.
*/
/* Izvozi */
span.faicon.pdf::before {
- content: "\f1c1";
+ content: "";
font-size: 16px;
font-weight: 400;
color: #ed1c24;
@@ -6571,7 +6571,7 @@ span.faicon.pdf.black::before {
span.faicon.xls::before {
font-size: 16px;
font-weight: 400;
- content: "\f1c3";
+ content: "";
color: #008000;
}
@@ -6593,7 +6593,7 @@ span.faicon.xls.black::before {
span.faicon.rtf::before {
font-size: 16px;
font-weight: 400;
- content: "\f1c2";
+ content: "";
color: #0f3ea8;
}
@@ -6615,7 +6615,7 @@ span.faicon.rtf.black::before {
span.faicon.ppt::before {
font-size: 16px;
font-weight: 400;
- content: "\f1c4";
+ content: "";
color: #fa4913;
}
@@ -6637,7 +6637,7 @@ span.faicon.ppt.black::before {
span.faicon.xml::before {
font-size: 16px;
font-weight: 400;
- content: "\f1c9";
+ content: "";
color: #00a000;
}
@@ -6657,17 +6657,17 @@ span.faicon.xml.black::before {
}
span.faicon.arhiv::before {
- content: "\f187";
+ content: "";
}
span.faicon.arhiv_mail::before {
font-size: 16px;
font-weight: 400;
- content: "\f14d";
+ content: "";
}
span.faicon.share-arrow::before {
- content: "\f14d";
+ content: "";
}
/*
@@ -6717,7 +6717,7 @@ span.faicon.an_chart_bar::before {
font-size: 14px;
font-weight: 700;
/*content: "\f080";*/
- content: "\f200";
+ content: "";
}
/*
@@ -6731,35 +6731,35 @@ and open the template in the editor.
*/
/* Invitation table */
span.faicon.inv_sent_0::before {
- content: "\f2b6";
+ content: "";
}
span.faicon.inv_sent_1::before {
- content: "\f0e0";
+ content: "";
}
span.faicon.inv_responded_0::before {
font-size: 14px;
font-weight: 400;
- content: "\f005";
+ content: "";
}
span.faicon.inv_responded_1::before {
font-size: 14px;
font-weight: 700;
- content: "\f005";
+ content: "";
}
span.faicon.inv_unsubscribed_0::before {
font-size: 14px;
font-weight: 400;
- content: "\f111";
+ content: "";
}
span.faicon.inv_unsubscribed_1::before {
font-size: 14px;
font-weight: 700;
- content: "\f111";
+ content: "";
color: #FF0000;
}
@@ -6860,7 +6860,7 @@ a.read-more .faicon:before {
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content h1::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f059";
+ content: "";
font-size: 20px;
color: #1E88E5;
vertical-align: -1px;
@@ -6897,7 +6897,7 @@ a.read-more .faicon:before {
padding-left: 8px;
vertical-align: middle;
font-family: "Font Awesome 5 Free";
- content: "\f054";
+ content: "";
font-size: 8px;
color: #1E88E5;
transition: 0.2s;
@@ -7220,7 +7220,7 @@ a.read-more .faicon:before {
.divPopUp.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -7261,7 +7261,7 @@ a.read-more .faicon:before {
.divPopUp_info.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -7753,7 +7753,7 @@ body.waitlong #loading {
#check_pogoji.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -7934,7 +7934,7 @@ body.waitlong #loading {
#dropped_alert.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -9175,7 +9175,7 @@ header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLink
right: 8px;
top: 5px;
font-family: "Font Awesome 5 Free";
- content: "\f078";
+ content: "";
font-size: 10px;
font-weight: 600;
}
@@ -9448,7 +9448,7 @@ footer#srv_footer .footer_right span.faicon.external_link:before {
footer#srv_footer .footer_right .right_help_button {
position: fixed;
right: -71px;
- top: 50%;
+ top: calc(50%);
width: 150px;
padding: 4px 8px;
border: 1px #1E88E5 solid;
@@ -9828,17 +9828,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;
@@ -10336,7 +10336,7 @@ header #top_line #enka_nav .anketa_header_upgrade_package button {
#popup_user_access.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -10623,7 +10623,7 @@ header #top_line #enka_nav .anketa_header_upgrade_package button {
#survey_list .second_line .filters #folderSwitch#sortButton:after {
position: absolute;
font-family: "Font Awesome 5 Free";
- content: "\f078";
+ content: "";
right: 8px;
top: 13px;
font-weight: 600;
@@ -10969,13 +10969,13 @@ body.eng #survey_list .filters #folderSwitch {
cursor: pointer;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_arrow_icon::before {
- content: "\f078";
+ content: "";
font-size: 14px;
color: #333333;
margin-right: 8px;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_icon::before {
- content: "\f07b";
+ content: "";
font-size: 16px;
font-weight: 400;
color: #1E88E5;
@@ -10985,7 +10985,7 @@ body.eng #survey_list .filters #folderSwitch {
background-color: #F8F8F8;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_arrow_icon::before {
- content: "\f077";
+ content: "";
}
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_icon::before {
font-weight: 600;
@@ -12080,13 +12080,13 @@ div.page_obvestila #unread_notifications .gdpr_popup_radio input {
cursor: pointer;
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder_arrow_icon::before {
- content: "\f078";
+ content: "";
font-size: 14px;
color: #333333;
margin-right: 8px;
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder::before {
- content: "\f07b";
+ content: "";
font-size: 16px;
font-weight: 400;
color: #1E88E5;
@@ -12112,7 +12112,7 @@ div.page_obvestila #unread_notifications .gdpr_popup_radio input {
}*/
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder_arrow_icon::before {
- content: "\f077";
+ content: "";
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder::before {
font-weight: 600;
@@ -12365,7 +12365,7 @@ and open the template in the editor.
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f111";
+ content: "";
letter-spacing: 10px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-custom-radio:before {
@@ -12373,7 +12373,7 @@ and open the template in the editor.
display: inline-block;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] {
display: none !important;
@@ -12386,11 +12386,11 @@ and open the template in the editor.
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
letter-spacing: 8px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .custom_radio_picture.obarvan > label > span.enka-custom-radio:before {
@@ -12683,7 +12683,7 @@ and open the template in the editor.
}
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
- content: "\f111";
+ content: "";
display: inline-block;
font-size: 14px;
color: #C4C4C4;
@@ -13295,20 +13295,20 @@ div.drop_setting_transition {
font-weight: 400;
}
#branching input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
#branching input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "\f111";
+ content: "";
letter-spacing: 8px;
}
#branching input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
color: #D3D3D3;
letter-spacing: 8px;
}
#branching input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
color: #D3D3D3;
}
#branching span.faicon.delete_circle::before {
@@ -13411,7 +13411,8 @@ div.drop_setting_transition {
#branching ul li .pb_new .pb_page {
display: flex;
align-items: center;
- width: 200px;
+ white-space: nowrap;
+ padding-right: 16px;
font-size: 16px;
font-weight: 600;
line-height: 16px;
@@ -13421,7 +13422,8 @@ div.drop_setting_transition {
#branching ul li .pb_new .pb_page_hover {
display: none;
align-items: center;
- width: 200px;
+ white-space: nowrap;
+ padding-right: 16px;
font-weight: 400;
font-size: 12px;
}
@@ -14522,6 +14524,7 @@ div#variabla_new span.correct {
flex-shrink: 0;
width: auto;
margin-left: 8px;
+ padding-right: 0px;
font-weight: 600;
font-size: 10px;
text-align: right;
@@ -19927,7 +19930,7 @@ and open the template in the editor.
transition: 0.2s;
}
.tab_content .content_left ul li.folder_item .faicon.arrow:before {
- content: "\f078";
+ content: "";
}
.tab_content .content_left ul li.folder_item .faicon.folder:before,
.tab_content .content_left ul li.folder_item .faicon.clipboard:before {
@@ -19944,7 +19947,7 @@ and open the template in the editor.
color: #1E88E5;
}
.tab_content .content_left ul li.folder_item.open .faicon.arrow:before {
- content: "\f077";
+ content: "";
}
.tab_content .content_left ul li.folder_item.no_arrow .faicon.arrow:before {
display: none;
@@ -20435,7 +20438,7 @@ img.mapster_el {
border-radius: 4px;
}
.jquery-selectbox .jquery-selectbox-moreButton::before {
- content: "\f078";
+ content: "";
padding-left: 2px;
color: #333333;
font-size: 10px;
@@ -21159,7 +21162,7 @@ div#theme-edit-wrap div#theme-editor #picker .button_holder button:last-child {
div#theme-edit-wrap div#theme-editor #picker.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -21518,7 +21521,7 @@ span.faicon.st-besede-popup {
#vrednost_edit.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -21759,7 +21762,7 @@ span.faicon.st-besede-popup {
#quota.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -22086,7 +22089,7 @@ and open the template in the editor.
#preview_spremenljivka.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -22707,22 +22710,22 @@ and open the template in the editor.
}
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
/*content: "\f096";*/
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
/*content: "\f10c";*/
- content: "\f111";
+ content: "";
letter-spacing: 8px;
}
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
/*content: "\f046";*/
- content: "\f14a";
+ content: "";
letter-spacing: 8px;
}
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
/*content: "\f192";*/
- content: "\f192";
+ content: "";
}
#preview_spremenljivka input[type=radio] {
margin: 0 8px 4px 0;
@@ -22735,7 +22738,7 @@ and open the template in the editor.
#preview_spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f111";
+ content: "";
letter-spacing: 10px;
}
#preview_spremenljivka input[type=radio] + span.enka-custom-radio:before {
@@ -22743,7 +22746,7 @@ and open the template in the editor.
display: inline-block;
}
#preview_spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
}
#preview_spremenljivka input[type=checkbox] {
display: none !important;
@@ -22756,11 +22759,11 @@ and open the template in the editor.
#preview_spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
#preview_spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
letter-spacing: 8px;
}
@@ -22845,7 +22848,7 @@ and open the template in the editor.
}
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
- content: "\f111";
+ content: "";
display: inline-block;
font-size: 14px;
color: #E5E5E5;
@@ -22853,7 +22856,7 @@ and open the template in the editor.
font-weight: 400;
}
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
color: #E5E5E5;
}
@@ -23116,7 +23119,7 @@ dl.arch_email dd {
#inv_view_arch_recipients.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -24110,23 +24113,23 @@ div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admi
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "\f111";
+ content: "";
letter-spacing: 8px;
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
color: #D3D3D3;
letter-spacing: 8px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
color: #D3D3D3;
}
div.page_komentarji ul .spremenljivka_content input[type=radio],
@@ -24143,7 +24146,7 @@ div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-chec
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f111";
+ content: "";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-custom-radio:before,
@@ -24153,7 +24156,7 @@ div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.en
}
div.page_komentarji ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox],
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] {
@@ -24169,12 +24172,12 @@ div.page_komentarji ul .spremenljivka_content input[type=checkbox] + span.enka-c
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
letter-spacing: 8px;
}
div.page_komentarji ul div.question_comment_holder,
@@ -26144,7 +26147,7 @@ div.subpage_coding .coding-refresh .button_holder button:last-child {
div.subpage_coding .coding-refresh.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -26326,7 +26329,7 @@ div.subpage_coding #coding .button_holder button:last-child {
div.subpage_coding #coding.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -26650,7 +26653,7 @@ div.subpage_coding .floatRecodeSpremenljivka .button_holder button:last-child {
div.subpage_coding .floatRecodeSpremenljivka.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -27001,18 +27004,18 @@ ul#merge li {
-webkit-text-stroke: 0.35px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
- content: "\f0c8";
+ content: "";
letter-spacing: 10px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "\f14a";
+ content: "";
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
- content: "\f111";
+ content: "";
letter-spacing: 10px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "\f192";
+ content: "";
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio,
@@ -27511,7 +27514,7 @@ and open the template in the editor.
#div_export_setting_show.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -29048,15 +29051,15 @@ iframe#ifmcontentstoprint {
}
.rsdl_bck1 {
- background-color: rgb(250, 226, 226) !important;
+ background-color: #fae2e2 !important;
}
.rsdl_bck2 {
- background-color: rgb(255, 157, 157) !important;
+ background-color: #ff9d9d !important;
}
.rsdl_bck3 {
- background-color: rgb(248, 66, 66) !important;
+ background-color: #f84242 !important;
}
.rsdl_bck4 {
@@ -30569,7 +30572,7 @@ ul.vrednost_sort input[type=text] {
.subpage_analysis_creport #anketa_custom_report #newCReportProfile.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -30853,7 +30856,7 @@ and open the template in the editor.
#dsp_inspect_cover.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -31387,7 +31390,7 @@ input#endDate {
.mc_table_settings.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -31600,7 +31603,7 @@ input#endDate {
#newMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -31789,7 +31792,7 @@ input#endDate {
#renameMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -31978,7 +31981,7 @@ input#endDate {
#deleteMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "\f071";
+ content: "";
font-size: 14px;
color: #FFC700;
}
@@ -32364,7 +32367,7 @@ button.buttons-columnVisibility.active {
table.usersTable {
margin-left: 14px;
margin-right: 14px;
- width: calc(100% - 28px);
+ width: calc(100% - 2*14px);
white-space: nowrap;
border-collapse: collapse !important;
}
@@ -32485,19 +32488,24 @@ table.dataTable td:not(:first-of-type), table.dataTable th:not(:first-of-type) {
#quick_comments_link.newCss {
display: none;
}
+
#firstNavigation ol.right-side {
display: none;
}
+
div.status_advanced {
flex-direction: column;
}
+
div.status_advanced_box {
width: 100%;
box-sizing: border-box;
}
+
a.status_advanced_link {
width: 95%;
}
+
.content_div_normalmode {
overflow-x: auto;
}
@@ -32565,6 +32573,7 @@ body #main_holder #main .wide {
width: 100%;
margin: 0;
}
+
fieldset {
width: 100% !important;
box-sizing: border-box !important;
@@ -32594,36 +32603,44 @@ fieldset textarea {
fieldset .setting {
height: auto !important;
}
+
.setting_horizontal_wrapper {
flex-direction: column !important;
}
+
#vnosi_paginacija div select {
display: inline-block;
width: fit-content;
margin: 0 5px;
text-align: center;
}
+
div.breadcrumbs {
display: block;
padding: 15px;
color: #1e88e5;
font-weight: 600;
}
+
button.small, submit.small {
min-width: auto;
padding: 5px 16px;
}
+
button.medium, submit.medium {
min-width: auto;
padding: 10px 24px;
}
+
button.large, submit.large {
min-width: auto;
padding: 12px 32px;
}
+
.top_note {
padding: 8px 16px;
}
+
header {
/* Mobile meni */
/* Mobile meni - NASTAVITVE V UREJANJU ANKETE*/
@@ -32879,6 +32896,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
header .mobile_settings .mobile_settings_content a .setting_text {
width: auto;
}
+
footer#srv_footer {
display: flex;
flex-direction: column;
@@ -32900,6 +32918,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
padding: 0;
border: 0;
}
+
/* Popup za vprasajcke */
.qtip {
position: fixed !important;
@@ -32910,6 +32929,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
left: 10% !important;
box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.34) !important;
}
+
.divPopUp {
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
@@ -32920,10 +32940,12 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
}
+
/* Vse povezano s paketi in placili */
.dt-buttons {
display: none;
}
+
#main #moje_ankete_edit #anketa_edit {
padding: 0 !important;
}
@@ -33001,6 +33023,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #moje_ankete_edit fieldset div.setting {
margin-bottom: 10px;
}
+
#new_anketa_div {
display: flex;
flex-direction: column;
@@ -33084,6 +33107,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
border: 1px solid #c8e3f8 !important;
border-radius: 1px;
}
+
.dashboard_top_settings {
flex-direction: column;
}
@@ -33096,16 +33120,19 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin-left: 0;
margin-right: 16px;
}
+
.dashboard_boxes {
flex-direction: column;
}
.dashboard_boxes .dashboard_box {
margin: 0 0 32px 0;
}
+
.locked .add-variable-mobile,
.spremenljivka_content .add-variable {
display: none !important;
}
+
#branching {
width: 100%;
margin: 0;
@@ -33210,9 +33237,11 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin: 0;
padding: 0 12px;
}
+
.toolbox_holder {
display: none;
}
+
.mobile_add_question {
display: block;
position: fixed;
@@ -33232,6 +33261,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
line-height: 15px;
font-weight: 600;
}
+
.mobile_add_question_popup {
z-index: 9999;
position: fixed;
@@ -33285,6 +33315,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
font-size: 14px;
font-weight: 500;
}
+
#vprasanje_float_editing .vprasanje_edit_holder {
position: fixed;
z-index: 99999;
@@ -33337,6 +33368,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin-left: 0 !important;
text-align: center;
}
+
#main #anketa #globalSetingsList {
max-width: 100% !important;
width: 100% !important;
@@ -33349,6 +33381,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #anketa #globalSetingsList fieldset span.charalimit#anketa_note_chars {
width: 100%;
}
+
/* NASTAVITVE in ARHIVI */
/* OBLIKA */
#main #anketa #anketa_edit.page_tema #div_theme_group_holder {
@@ -33364,15 +33397,18 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: 100%;
height: auto;
}
+
#theme-editor {
width: 100% !important;
float: none !important;
}
+
#theme-preview {
width: 100% !important;
float: none !important;
margin-top: 80px !important;
}
+
/* ARHIVI */
#main #anketa #anketa_edit.page_arhivi {
flex-direction: column-reverse;
@@ -33390,6 +33426,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input {
width: 100% !important;
}
+
div.page_tema .theme_list {
flex-wrap: wrap;
}
@@ -33416,6 +33453,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options .button {
margin-right: 8px;
}
+
.page_theme-editor #theme-preview {
display: none;
}
@@ -33423,6 +33461,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: 100% !important;
flex-wrap: wrap;
}
+
#srv_diagnostic br {
display: none;
}
@@ -33443,6 +33482,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#srv_diagnostic #srv_diagnostic_results_right table td + td {
width: auto !important;
}
+
.subpage_testnipodatki {
line-height: 20px;
}
@@ -33456,6 +33496,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.subpage_testnipodatki form label input {
vertical-align: bottom;
}
+
.lastnosti_wrapper {
flex-direction: column !important;
}
@@ -33463,6 +33504,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.lastnosti_wrapper .lastnosti_right {
width: 100% !important;
}
+
.page_vabila #vabila .button_holder {
flex-direction: column;
align-items: flex-start;
@@ -33487,6 +33529,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.page_vabila #vabila .more_block {
width: 100%;
}
+
.page_invitations #inv_top_navi {
flex-direction: column;
align-items: flex-start;
@@ -33554,6 +33597,7 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.page_invitations .button_holder button {
margin-bottom: 8px;
}
+
#vabila > table,
table.invitations_settings,
#inv_msg_preview table,
@@ -33637,6 +33681,7 @@ table.invitations_settings p label input[type=password],
width: 100% !important;
box-sizing: border-box;
}
+
#surveyInvitationSetting,
#surveyInvitationSettingServer {
min-width: 100% !important;
@@ -33644,6 +33689,7 @@ table.invitations_settings p label input[type=password],
margin: 10px 0 !important;
box-sizing: border-box !important;
}
+
#inv_top_navi {
display: flex;
flex-direction: column;
@@ -33682,6 +33728,7 @@ table.invitations_settings p label input[type=password],
#inv_top_navi > #inv_step_nav.yellow .inv_step_space {
display: none;
}
+
#inv_recipients_profiles_holder,
#inv_import_list_container,
#inv_messages_profiles_holder,
@@ -33702,6 +33749,7 @@ table.invitations_settings p label input[type=password],
#inv_select_mail_preview textarea {
width: 100%;
}
+
#inv_msg_preview table th {
height: auto !important;
width: 100% !important;
@@ -33713,6 +33761,7 @@ table.invitations_settings p label input[type=password],
width: 100%;
box-sizing: border-box;
}
+
.addthis_toolbox {
line-height: 24px;
}
@@ -33727,9 +33776,11 @@ table.invitations_settings p label input[type=password],
.addthis_toolbox .addthis_separator {
font-size: 16px;
}
+
#inv_field_container ul li {
width: 45%;
}
+
/* grafika ko ni podatkov */
div.no_data_alert img {
width: 100%;
@@ -33741,6 +33792,7 @@ table.invitations_settings p label input[type=password],
flex-direction: column;
align-items: center;
}
+
.page_data .data_table_top_holder {
flex-direction: column;
align-items: flex-start;
@@ -33811,9 +33863,11 @@ table.invitations_settings p label input[type=password],
width: 100%;
margin-bottom: 16px;
}
+
body.data_fullscreen #analiza_data {
top: 68px;
}
+
.subpage_append .anketa_edit_main,
.subpage_merge .anketa_edit_main,
.subpage_calculation .anketa_edit_main,
@@ -33854,6 +33908,7 @@ table.invitations_settings p label input[type=password],
clear: both;
margin: 40px 0 0 0 !important;
}
+
.subpage_quick_edit #quick_edit_top_line {
flex-direction: column-reverse;
}
@@ -33873,6 +33928,7 @@ table.invitations_settings p label input[type=password],
.subpage_quick_edit .quick_edit_container .quick_edit_bottom_line {
justify-content: center;
}
+
.analysis_bottom_settings {
flex-wrap: wrap;
}
@@ -33882,13 +33938,16 @@ table.invitations_settings p label input[type=password],
margin: 0 0 16px 0 !important;
border: 0;
}
+
.div_analiza_icons,
.div_analiza_scale {
opacity: 1 !important;
}
+
.analysis_icons_holder {
display: none;
}
+
.chart_holder {
width: 100%;
box-sizing: border-box;
@@ -33911,6 +33970,7 @@ table.invitations_settings p label input[type=password],
display: block;
clear: both;
}
+
table.analysis_reports {
border-spacing: 0px;
}
@@ -33927,12 +33987,14 @@ table.analysis_reports > tbody > tr > td {
table.analysis_reports fieldset {
margin-bottom: 0 !important;
}
+
.reports_holder {
flex-direction: column;
}
.reports_holder fieldset {
width: 100%;
}
+
.noSurvey_sequence {
padding: 0;
}
@@ -33954,11 +34016,13 @@ table.analysis_reports > tbody > tr > td {
.noSurvey_sequence .buttons_holder a .button {
margin: 10px 30px;
}
+
#table-horizontal-scroll-wrapper1-userchanges {
display: table;
table-layout: fixed;
width: 100%;
}
+
#table-horizontal-scroll-wrapper2-userchanges {
display: table-cell;
overflow-x: auto;
@@ -33969,6 +34033,7 @@ table.analysis_reports > tbody > tr > td {
border-collapse: collapse;
white-space: nowrap;
}
+
.page_arhivi .anketa_edit_left,
.page_tracking .anketa_edit_left,
.subpage_anal_arch .anketa_edit_left,
diff --git a/resources/sass/admin_new/pages/survey_edit/branching.scss b/resources/sass/admin_new/pages/survey_edit/branching.scss
index 040d8beca..88ccf5df3 100644
--- a/resources/sass/admin_new/pages/survey_edit/branching.scss
+++ b/resources/sass/admin_new/pages/survey_edit/branching.scss
@@ -118,7 +118,8 @@ $branching_main_size_small: calc(100% - 525px);
display: flex;
align-items: center;
- width: 200px;
+ white-space: nowrap;
+ padding-right: 16px;
font-size: 16px;
font-weight: 600;
@@ -130,7 +131,9 @@ $branching_main_size_small: calc(100% - 525px);
.pb_page_hover{
display: none;
align-items: center;
- width: 200px;
+
+ white-space: nowrap;
+ padding-right: 16px;
font-weight: 400;
font-size: 12px;
diff --git a/resources/sass/admin_new/pages/survey_edit/branching_collapsed.scss b/resources/sass/admin_new/pages/survey_edit/branching_collapsed.scss
index 2e6ee2471..d942e31d7 100644
--- a/resources/sass/admin_new/pages/survey_edit/branching_collapsed.scss
+++ b/resources/sass/admin_new/pages/survey_edit/branching_collapsed.scss
@@ -55,6 +55,7 @@
width: auto;
margin-left: 8px;
+ padding-right: 0px;
font-weight: 600;
font-size: 10px;
From 4f0e9dfa5a011be774344bf024ccffd451fab69f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 11:55:33 +0200
Subject: [PATCH 4/8] Register form - potrdilo registracije font: sans pro
---
frontend/simple/css/style.css | 7 +++++++
resources/sass/frontend_simple/modules/pages.scss | 7 +++++++
2 files changed, 14 insertions(+)
diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css
index 433c72ab7..03133ee89 100644
--- a/frontend/simple/css/style.css
+++ b/frontend/simple/css/style.css
@@ -508,6 +508,10 @@ body.login_noEmail #main .landing_page_window .g-recaptcha {
display: none !important;
}
}*/
+body {
+ font-family: "Source Sans Pro", "sans-serif";
+}
+
/************GDPR OBRAZEC***************/
body.gdpr {
line-height: 26px;
@@ -542,6 +546,9 @@ body.gdpr div.label {
/******************************/
/************REGISTRACIJSKI OBRAZEC***************/
+body.register .register_holder {
+ background-color: red;
+}
body.register .register_holder .subtitle {
padding: 0;
margin: 0;
diff --git a/resources/sass/frontend_simple/modules/pages.scss b/resources/sass/frontend_simple/modules/pages.scss
index a1f317a4d..7cac65514 100644
--- a/resources/sass/frontend_simple/modules/pages.scss
+++ b/resources/sass/frontend_simple/modules/pages.scss
@@ -1,3 +1,7 @@
+body {
+ font-family: $SansPro_font;
+}
+
/************GDPR OBRAZEC***************/
body.gdpr{
line-height: 26px;
@@ -40,8 +44,11 @@ body.gdpr{
/************REGISTRACIJSKI OBRAZEC***************/
body.register{
+
.register_holder{
+ background-color: red;
+
.subtitle{
padding: 0;
margin: 0;
From 89808de65bf139a773c0df3ddb6296d0cb105d02 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 12:10:52 +0200
Subject: [PATCH 5/8] Objava - pregled
---
admin/survey/SurveyAdminAjax.php | 10 +-
admin/survey/SurveyAdminSettings.php | 28 +-
public/css/admin_new.css | 2964 ++++++++---------
.../pages/survey_objava/pregled.scss | 16 +-
4 files changed, 1475 insertions(+), 1543 deletions(-)
diff --git a/admin/survey/SurveyAdminAjax.php b/admin/survey/SurveyAdminAjax.php
index 6b680b65a..92d34185a 100644
--- a/admin/survey/SurveyAdminAjax.php
+++ b/admin/survey/SurveyAdminAjax.php
@@ -6943,13 +6943,13 @@ class SurveyAdminAjax {
echo '
';
}
- # Prevod
+ // # Prevod
- echo ' Prevod: ';
- echo 'Belarussian, ';
- echo 'Bulgarian';
+ // echo '
Prevod: ';
+ // echo 'Belarussian, ';
+ // echo 'Bulgarian';
- echo '
';
+ // echo '';
diff --git a/admin/survey/SurveyAdminSettings.php b/admin/survey/SurveyAdminSettings.php
index c97d9b0f4..72c8032a8 100644
--- a/admin/survey/SurveyAdminSettings.php
+++ b/admin/survey/SurveyAdminSettings.php
@@ -2797,7 +2797,7 @@ class SurveyAdminSettings {
echo '';
echo '
';
echo $lang['srv_publication_invitations'];
- echo '

';
+ // echo '

';
echo '
';
echo $lang['srv_publication_invitations_text'];
echo '';
@@ -2924,23 +2924,23 @@ class SurveyAdminSettings {
$link1 = $site_url.'a/'.$row['hash'];
echo '';
echo '
'.$link1.''.(count($lang_array) > 0 ? ' - '.$base_lang_resp : '');
- echo '
- English
';
+ // echo '
- English
';
echo '
';
echo '
';
- $link1 = $site_url.'a/'.$row['hash'];
- echo '';
- echo '
'.$link1.''.(count($lang_array) > 0 ? ' - '.$base_lang_resp : '');
- echo '
- Slovenščina
';
- echo '
';
- echo '
';
+ // $link1 = $site_url.'a/'.$row['hash'];
+ // echo '';
+ // echo '
'.$link1.''.(count($lang_array) > 0 ? ' - '.$base_lang_resp : '');
+ // echo '
- Slovenščina
';
+ // echo '
';
+ // echo '
';
- $link1 = $site_url.'a/'.$row['hash'];
- echo '';
- echo '
'.$link1.''.(count($lang_array) > 0 ? ' - '.$base_lang_resp : '');
- echo '
- Italian
';
- echo '
';
- echo '
';
+ // $link1 = $site_url.'a/'.$row['hash'];
+ // echo '';
+ // echo '
'.$link1.''.(count($lang_array) > 0 ? ' - '.$base_lang_resp : '');
+ // echo '
- Italian
';
+ // echo '
';
+ // echo '
';
// Imamo vec linkov za skupine
$ss = new SurveySkupine($this->anketa);
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index f8436a52a..086979607 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -214,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: "";
+ content: "\f26e";
}
.fa-accessible-icon:before {
- content: "";
+ content: "\f368";
}
.fa-accusoft:before {
- content: "";
+ content: "\f369";
}
.fa-ad:before {
- content: "";
+ content: "\f641";
}
.fa-address-book:before {
- content: "";
+ content: "\f2b9";
}
.fa-address-card:before {
- content: "";
+ content: "\f2bb";
}
.fa-adjust:before {
- content: "";
+ content: "\f042";
}
.fa-adn:before {
- content: "";
+ content: "\f170";
}
.fa-adversal:before {
- content: "";
+ content: "\f36a";
}
.fa-affiliatetheme:before {
- content: "";
+ content: "\f36b";
}
.fa-air-freshener:before {
- content: "";
+ content: "\f5d0";
}
.fa-algolia:before {
- content: "";
+ content: "\f36c";
}
.fa-align-center:before {
- content: "";
+ content: "\f037";
}
.fa-align-justify:before {
- content: "";
+ content: "\f039";
}
.fa-align-left:before {
- content: "";
+ content: "\f036";
}
.fa-align-right:before {
- content: "";
+ content: "\f038";
}
.fa-alipay:before {
- content: "";
+ content: "\f642";
}
.fa-allergies:before {
- content: "";
+ content: "\f461";
}
.fa-amazon:before {
- content: "";
+ content: "\f270";
}
.fa-amazon-pay:before {
- content: "";
+ content: "\f42c";
}
.fa-ambulance:before {
- content: "";
+ content: "\f0f9";
}
.fa-american-sign-language-interpreting:before {
- content: "";
+ content: "\f2a3";
}
.fa-amilia:before {
- content: "";
+ content: "\f36d";
}
.fa-anchor:before {
- content: "";
+ content: "\f13d";
}
.fa-android:before {
- content: "";
+ content: "\f17b";
}
.fa-angellist:before {
- content: "";
+ content: "\f209";
}
.fa-angle-double-down:before {
- content: "";
+ content: "\f103";
}
.fa-angle-double-left:before {
- content: "";
+ content: "\f100";
}
.fa-angle-double-right:before {
- content: "";
+ content: "\f101";
}
.fa-angle-double-up:before {
- content: "";
+ content: "\f102";
}
.fa-angle-down:before {
- content: "";
+ content: "\f107";
}
.fa-angle-left:before {
- content: "";
+ content: "\f104";
}
.fa-angle-right:before {
- content: "";
+ content: "\f105";
}
.fa-angle-up:before {
- content: "";
+ content: "\f106";
}
.fa-angry:before {
- content: "";
+ content: "\f556";
}
.fa-angrycreative:before {
- content: "";
+ content: "\f36e";
}
.fa-angular:before {
- content: "";
+ content: "\f420";
}
.fa-ankh:before {
- content: "";
+ content: "\f644";
}
.fa-app-store:before {
- content: "";
+ content: "\f36f";
}
.fa-app-store-ios:before {
- content: "";
+ content: "\f370";
}
.fa-apper:before {
- content: "";
+ content: "\f371";
}
.fa-apple:before {
- content: "";
+ content: "\f179";
}
.fa-apple-alt:before {
- content: "";
+ content: "\f5d1";
}
.fa-apple-pay:before {
- content: "";
+ content: "\f415";
}
.fa-archive:before {
- content: "";
+ content: "\f187";
}
.fa-archway:before {
- content: "";
+ content: "\f557";
}
.fa-arrow-alt-circle-down:before {
- content: "";
+ content: "\f358";
}
.fa-arrow-alt-circle-left:before {
- content: "";
+ content: "\f359";
}
.fa-arrow-alt-circle-right:before {
- content: "";
+ content: "\f35a";
}
.fa-arrow-alt-circle-up:before {
- content: "";
+ content: "\f35b";
}
.fa-arrow-circle-down:before {
- content: "";
+ content: "\f0ab";
}
.fa-arrow-circle-left:before {
- content: "";
+ content: "\f0a8";
}
.fa-arrow-circle-right:before {
- content: "";
+ content: "\f0a9";
}
.fa-arrow-circle-up:before {
- content: "";
+ content: "\f0aa";
}
.fa-arrow-down:before {
- content: "";
+ content: "\f063";
}
.fa-arrow-left:before {
- content: "";
+ content: "\f060";
}
.fa-arrow-right:before {
- content: "";
+ content: "\f061";
}
.fa-arrow-up:before {
- content: "";
+ content: "\f062";
}
.fa-arrows-alt:before {
- content: "";
+ content: "\f0b2";
}
.fa-arrows-alt-h:before {
- content: "";
+ content: "\f337";
}
.fa-arrows-alt-v:before {
- content: "";
+ content: "\f338";
}
.fa-assistive-listening-systems:before {
- content: "";
+ content: "\f2a2";
}
.fa-asterisk:before {
- content: "";
+ content: "\f069";
}
.fa-asymmetrik:before {
- content: "";
+ content: "\f372";
}
.fa-at:before {
- content: "";
+ content: "\f1fa";
}
.fa-atlas:before {
- content: "";
+ content: "\f558";
}
.fa-atom:before {
- content: "";
+ content: "\f5d2";
}
.fa-audible:before {
- content: "";
+ content: "\f373";
}
.fa-audio-description:before {
- content: "";
+ content: "\f29e";
}
.fa-autoprefixer:before {
- content: "";
+ content: "\f41c";
}
.fa-avianex:before {
- content: "";
+ content: "\f374";
}
.fa-aviato:before {
- content: "";
+ content: "\f421";
}
.fa-award:before {
- content: "";
+ content: "\f559";
}
.fa-aws:before {
- content: "";
+ content: "\f375";
}
.fa-backspace:before {
- content: "";
+ content: "\f55a";
}
.fa-backward:before {
- content: "";
+ content: "\f04a";
}
.fa-balance-scale:before {
- content: "";
+ content: "\f24e";
}
.fa-ban:before {
- content: "";
+ content: "\f05e";
}
.fa-band-aid:before {
- content: "";
+ content: "\f462";
}
.fa-bandcamp:before {
- content: "";
+ content: "\f2d5";
}
.fa-barcode:before {
- content: "";
+ content: "\f02a";
}
.fa-bars:before {
- content: "";
+ content: "\f0c9";
}
.fa-baseball-ball:before {
- content: "";
+ content: "\f433";
}
.fa-basketball-ball:before {
- content: "";
+ content: "\f434";
}
.fa-bath:before {
- content: "";
+ content: "\f2cd";
}
.fa-battery-empty:before {
- content: "";
+ content: "\f244";
}
.fa-battery-full:before {
- content: "";
+ content: "\f240";
}
.fa-battery-half:before {
- content: "";
+ content: "\f242";
}
.fa-battery-quarter:before {
- content: "";
+ content: "\f243";
}
.fa-battery-three-quarters:before {
- content: "";
+ content: "\f241";
}
.fa-bed:before {
- content: "";
+ content: "\f236";
}
.fa-beer:before {
- content: "";
+ content: "\f0fc";
}
.fa-behance:before {
- content: "";
+ content: "\f1b4";
}
.fa-behance-square:before {
- content: "";
+ content: "\f1b5";
}
.fa-bell:before {
- content: "";
+ content: "\f0f3";
}
.fa-bell-slash:before {
- content: "";
+ content: "\f1f6";
}
.fa-bezier-curve:before {
- content: "";
+ content: "\f55b";
}
.fa-bible:before {
- content: "";
+ content: "\f647";
}
.fa-bicycle:before {
- content: "";
+ content: "\f206";
}
.fa-bimobject:before {
- content: "";
+ content: "\f378";
}
.fa-binoculars:before {
- content: "";
+ content: "\f1e5";
}
.fa-birthday-cake:before {
- content: "";
+ content: "\f1fd";
}
.fa-bitbucket:before {
- content: "";
+ content: "\f171";
}
.fa-bitcoin:before {
- content: "";
+ content: "\f379";
}
.fa-bity:before {
- content: "";
+ content: "\f37a";
}
.fa-black-tie:before {
- content: "";
+ content: "\f27e";
}
.fa-blackberry:before {
- content: "";
+ content: "\f37b";
}
.fa-blender:before {
- content: "";
+ content: "\f517";
}
.fa-blind:before {
- content: "";
+ content: "\f29d";
}
.fa-blogger:before {
- content: "";
+ content: "\f37c";
}
.fa-blogger-b:before {
- content: "";
+ content: "\f37d";
}
.fa-bluetooth:before {
- content: "";
+ content: "\f293";
}
.fa-bluetooth-b:before {
- content: "";
+ content: "\f294";
}
.fa-bold:before {
- content: "";
+ content: "\f032";
}
.fa-bolt:before {
- content: "";
+ content: "\f0e7";
}
.fa-bomb:before {
- content: "";
+ content: "\f1e2";
}
.fa-bone:before {
- content: "";
+ content: "\f5d7";
}
.fa-bong:before {
- content: "";
+ content: "\f55c";
}
.fa-book:before {
- content: "";
+ content: "\f02d";
}
.fa-book-open:before {
- content: "";
+ content: "\f518";
}
.fa-book-reader:before {
- content: "";
+ content: "\f5da";
}
.fa-bookmark:before {
- content: "";
+ content: "\f02e";
}
.fa-bowling-ball:before {
- content: "";
+ content: "\f436";
}
.fa-box:before {
- content: "";
+ content: "\f466";
}
.fa-box-open:before {
- content: "";
+ content: "\f49e";
}
.fa-boxes:before {
- content: "";
+ content: "\f468";
}
.fa-braille:before {
- content: "";
+ content: "\f2a1";
}
.fa-brain:before {
- content: "";
+ content: "\f5dc";
}
.fa-briefcase:before {
- content: "";
+ content: "\f0b1";
}
.fa-briefcase-medical:before {
- content: "";
+ content: "\f469";
}
.fa-broadcast-tower:before {
- content: "";
+ content: "\f519";
}
.fa-broom:before {
- content: "";
+ content: "\f51a";
}
.fa-brush:before {
- content: "";
+ content: "\f55d";
}
.fa-btc:before {
- content: "";
+ content: "\f15a";
}
.fa-bug:before {
- content: "";
+ content: "\f188";
}
.fa-building:before {
- content: "";
+ content: "\f1ad";
}
.fa-bullhorn:before {
- content: "";
+ content: "\f0a1";
}
.fa-bullseye:before {
- content: "";
+ content: "\f140";
}
.fa-burn:before {
- content: "";
+ content: "\f46a";
}
.fa-buromobelexperte:before {
- content: "";
+ content: "\f37f";
}
.fa-bus:before {
- content: "";
+ content: "\f207";
}
.fa-bus-alt:before {
- content: "";
+ content: "\f55e";
}
.fa-business-time:before {
- content: "";
+ content: "\f64a";
}
.fa-buysellads:before {
- content: "";
+ content: "\f20d";
}
.fa-calculator:before {
- content: "";
+ content: "\f1ec";
}
.fa-calendar:before {
- content: "";
+ content: "\f133";
}
.fa-calendar-alt:before {
- content: "";
+ content: "\f073";
}
.fa-calendar-check:before {
- content: "";
+ content: "\f274";
}
.fa-calendar-minus:before {
- content: "";
+ content: "\f272";
}
.fa-calendar-plus:before {
- content: "";
+ content: "\f271";
}
.fa-calendar-times:before {
- content: "";
+ content: "\f273";
}
.fa-camera:before {
- content: "";
+ content: "\f030";
}
.fa-camera-retro:before {
- content: "";
+ content: "\f083";
}
.fa-cannabis:before {
- content: "";
+ content: "\f55f";
}
.fa-capsules:before {
- content: "";
+ content: "\f46b";
}
.fa-car:before {
- content: "";
+ content: "\f1b9";
}
.fa-car-alt:before {
- content: "";
+ content: "\f5de";
}
.fa-car-battery:before {
- content: "";
+ content: "\f5df";
}
.fa-car-crash:before {
- content: "";
+ content: "\f5e1";
}
.fa-car-side:before {
- content: "";
+ content: "\f5e4";
}
.fa-caret-down:before {
- content: "";
+ content: "\f0d7";
}
.fa-caret-left:before {
- content: "";
+ content: "\f0d9";
}
.fa-caret-right:before {
- content: "";
+ content: "\f0da";
}
.fa-caret-square-down:before {
- content: "";
+ content: "\f150";
}
.fa-caret-square-left:before {
- content: "";
+ content: "\f191";
}
.fa-caret-square-right:before {
- content: "";
+ content: "\f152";
}
.fa-caret-square-up:before {
- content: "";
+ content: "\f151";
}
.fa-caret-up:before {
- content: "";
+ content: "\f0d8";
}
.fa-cart-arrow-down:before {
- content: "";
+ content: "\f218";
}
.fa-cart-plus:before {
- content: "";
+ content: "\f217";
}
.fa-cc-amazon-pay:before {
- content: "";
+ content: "\f42d";
}
.fa-cc-amex:before {
- content: "";
+ content: "\f1f3";
}
.fa-cc-apple-pay:before {
- content: "";
+ content: "\f416";
}
.fa-cc-diners-club:before {
- content: "";
+ content: "\f24c";
}
.fa-cc-discover:before {
- content: "";
+ content: "\f1f2";
}
.fa-cc-jcb:before {
- content: "";
+ content: "\f24b";
}
.fa-cc-mastercard:before {
- content: "";
+ content: "\f1f1";
}
.fa-cc-paypal:before {
- content: "";
+ content: "\f1f4";
}
.fa-cc-stripe:before {
- content: "";
+ content: "\f1f5";
}
.fa-cc-visa:before {
- content: "";
+ content: "\f1f0";
}
.fa-centercode:before {
- content: "";
+ content: "\f380";
}
.fa-certificate:before {
- content: "";
+ content: "\f0a3";
}
.fa-chalkboard:before {
- content: "";
+ content: "\f51b";
}
.fa-chalkboard-teacher:before {
- content: "";
+ content: "\f51c";
}
.fa-charging-station:before {
- content: "";
+ content: "\f5e7";
}
.fa-chart-area:before {
- content: "";
+ content: "\f1fe";
}
.fa-chart-bar:before {
- content: "";
+ content: "\f080";
}
.fa-chart-line:before {
- content: "";
+ content: "\f201";
}
.fa-chart-pie:before {
- content: "";
+ content: "\f200";
}
.fa-check:before {
- content: "";
+ content: "\f00c";
}
.fa-check-circle:before {
- content: "";
+ content: "\f058";
}
.fa-check-double:before {
- content: "";
+ content: "\f560";
}
.fa-check-square:before {
- content: "";
+ content: "\f14a";
}
.fa-chess:before {
- content: "";
+ content: "\f439";
}
.fa-chess-bishop:before {
- content: "";
+ content: "\f43a";
}
.fa-chess-board:before {
- content: "";
+ content: "\f43c";
}
.fa-chess-king:before {
- content: "";
+ content: "\f43f";
}
.fa-chess-knight:before {
- content: "";
+ content: "\f441";
}
.fa-chess-pawn:before {
- content: "";
+ content: "\f443";
}
.fa-chess-queen:before {
- content: "";
+ content: "\f445";
}
.fa-chess-rook:before {
- content: "";
+ content: "\f447";
}
.fa-chevron-circle-down:before {
- content: "";
+ content: "\f13a";
}
.fa-chevron-circle-left:before {
- content: "";
+ content: "\f137";
}
.fa-chevron-circle-right:before {
- content: "";
+ content: "\f138";
}
.fa-chevron-circle-up:before {
- content: "";
+ content: "\f139";
}
.fa-chevron-down:before {
- content: "";
+ content: "\f078";
}
.fa-chevron-left:before {
- content: "";
+ content: "\f053";
}
.fa-chevron-right:before {
- content: "";
+ content: "\f054";
}
.fa-chevron-up:before {
- content: "";
+ content: "\f077";
}
.fa-child:before {
- content: "";
+ content: "\f1ae";
}
.fa-chrome:before {
- content: "";
+ content: "\f268";
}
.fa-church:before {
- content: "";
+ content: "\f51d";
}
.fa-circle:before {
- content: "";
+ content: "\f111";
}
.fa-circle-notch:before {
- content: "";
+ content: "\f1ce";
}
.fa-city:before {
- content: "";
+ content: "\f64f";
}
.fa-clipboard:before {
- content: "";
+ content: "\f328";
}
.fa-clipboard-check:before {
- content: "";
+ content: "\f46c";
}
.fa-clipboard-list:before {
- content: "";
+ content: "\f46d";
}
.fa-clock:before {
- content: "";
+ content: "\f017";
}
.fa-clone:before {
- content: "";
+ content: "\f24d";
}
.fa-closed-captioning:before {
- content: "";
+ content: "\f20a";
}
.fa-cloud:before {
- content: "";
+ content: "\f0c2";
}
.fa-cloud-download-alt:before {
- content: "";
+ content: "\f381";
}
.fa-cloud-upload-alt:before {
- content: "";
+ content: "\f382";
}
.fa-cloudscale:before {
- content: "";
+ content: "\f383";
}
.fa-cloudsmith:before {
- content: "";
+ content: "\f384";
}
.fa-cloudversify:before {
- content: "";
+ content: "\f385";
}
.fa-cocktail:before {
- content: "";
+ content: "\f561";
}
.fa-code:before {
- content: "";
+ content: "\f121";
}
.fa-code-branch:before {
- content: "";
+ content: "\f126";
}
.fa-codepen:before {
- content: "";
+ content: "\f1cb";
}
.fa-codiepie:before {
- content: "";
+ content: "\f284";
}
.fa-coffee:before {
- content: "";
+ content: "\f0f4";
}
.fa-cog:before {
- content: "";
+ content: "\f013";
}
.fa-cogs:before {
- content: "";
+ content: "\f085";
}
.fa-coins:before {
- content: "";
+ content: "\f51e";
}
.fa-columns:before {
- content: "";
+ content: "\f0db";
}
.fa-comment:before {
- content: "";
+ content: "\f075";
}
.fa-comment-alt:before {
- content: "";
+ content: "\f27a";
}
.fa-comment-dollar:before {
- content: "";
+ content: "\f651";
}
.fa-comment-dots:before {
- content: "";
+ content: "\f4ad";
}
.fa-comment-slash:before {
- content: "";
+ content: "\f4b3";
}
.fa-comments:before {
- content: "";
+ content: "\f086";
}
.fa-comments-dollar:before {
- content: "";
+ content: "\f653";
}
.fa-compact-disc:before {
- content: "";
+ content: "\f51f";
}
.fa-compass:before {
- content: "";
+ content: "\f14e";
}
.fa-compress:before {
- content: "";
+ content: "\f066";
}
.fa-concierge-bell:before {
- content: "";
+ content: "\f562";
}
.fa-connectdevelop:before {
- content: "";
+ content: "\f20e";
}
.fa-contao:before {
- content: "";
+ content: "\f26d";
}
.fa-cookie:before {
- content: "";
+ content: "\f563";
}
.fa-cookie-bite:before {
- content: "";
+ content: "\f564";
}
.fa-copy:before {
- content: "";
+ content: "\f0c5";
}
.fa-copyright:before {
- content: "";
+ content: "\f1f9";
}
.fa-couch:before {
- content: "";
+ content: "\f4b8";
}
.fa-cpanel:before {
- content: "";
+ content: "\f388";
}
.fa-creative-commons:before {
- content: "";
+ content: "\f25e";
}
.fa-creative-commons-by:before {
- content: "";
+ content: "\f4e7";
}
.fa-creative-commons-nc:before {
- content: "";
+ content: "\f4e8";
}
.fa-creative-commons-nc-eu:before {
- content: "";
+ content: "\f4e9";
}
.fa-creative-commons-nc-jp:before {
- content: "";
+ content: "\f4ea";
}
.fa-creative-commons-nd:before {
- content: "";
+ content: "\f4eb";
}
.fa-creative-commons-pd:before {
- content: "";
+ content: "\f4ec";
}
.fa-creative-commons-pd-alt:before {
- content: "";
+ content: "\f4ed";
}
.fa-creative-commons-remix:before {
- content: "";
+ content: "\f4ee";
}
.fa-creative-commons-sa:before {
- content: "";
+ content: "\f4ef";
}
.fa-creative-commons-sampling:before {
- content: "";
+ content: "\f4f0";
}
.fa-creative-commons-sampling-plus:before {
- content: "";
+ content: "\f4f1";
}
.fa-creative-commons-share:before {
- content: "";
+ content: "\f4f2";
}
.fa-credit-card:before {
- content: "";
+ content: "\f09d";
}
.fa-crop:before {
- content: "";
+ content: "\f125";
}
.fa-crop-alt:before {
- content: "";
+ content: "\f565";
}
.fa-cross:before {
- content: "";
+ content: "\f654";
}
.fa-crosshairs:before {
- content: "";
+ content: "\f05b";
}
.fa-crow:before {
- content: "";
+ content: "\f520";
}
.fa-crown:before {
- content: "";
+ content: "\f521";
}
.fa-css3:before {
- content: "";
+ content: "\f13c";
}
.fa-css3-alt:before {
- content: "";
+ content: "\f38b";
}
.fa-cube:before {
- content: "";
+ content: "\f1b2";
}
.fa-cubes:before {
- content: "";
+ content: "\f1b3";
}
.fa-cut:before {
- content: "";
+ content: "\f0c4";
}
.fa-cuttlefish:before {
- content: "";
+ content: "\f38c";
}
.fa-d-and-d:before {
- content: "";
+ content: "\f38d";
}
.fa-dashcube:before {
- content: "";
+ content: "\f210";
}
.fa-database:before {
- content: "";
+ content: "\f1c0";
}
.fa-deaf:before {
- content: "";
+ content: "\f2a4";
}
.fa-delicious:before {
- content: "";
+ content: "\f1a5";
}
.fa-deploydog:before {
- content: "";
+ content: "\f38e";
}
.fa-deskpro:before {
- content: "";
+ content: "\f38f";
}
.fa-desktop:before {
- content: "";
+ content: "\f108";
}
.fa-deviantart:before {
- content: "";
+ content: "\f1bd";
}
.fa-dharmachakra:before {
- content: "";
+ content: "\f655";
}
.fa-diagnoses:before {
- content: "";
+ content: "\f470";
}
.fa-dice:before {
- content: "";
+ content: "\f522";
}
.fa-dice-five:before {
- content: "";
+ content: "\f523";
}
.fa-dice-four:before {
- content: "";
+ content: "\f524";
}
.fa-dice-one:before {
- content: "";
+ content: "\f525";
}
.fa-dice-six:before {
- content: "";
+ content: "\f526";
}
.fa-dice-three:before {
- content: "";
+ content: "\f527";
}
.fa-dice-two:before {
- content: "";
+ content: "\f528";
}
.fa-digg:before {
- content: "";
+ content: "\f1a6";
}
.fa-digital-ocean:before {
- content: "";
+ content: "\f391";
}
.fa-digital-tachograph:before {
- content: "";
+ content: "\f566";
}
.fa-directions:before {
- content: "";
+ content: "\f5eb";
}
.fa-discord:before {
- content: "";
+ content: "\f392";
}
.fa-discourse:before {
- content: "";
+ content: "\f393";
}
.fa-divide:before {
- content: "";
+ content: "\f529";
}
.fa-dizzy:before {
- content: "";
+ content: "\f567";
}
.fa-dna:before {
- content: "";
+ content: "\f471";
}
.fa-dochub:before {
- content: "";
+ content: "\f394";
}
.fa-docker:before {
- content: "";
+ content: "\f395";
}
.fa-dollar-sign:before {
- content: "";
+ content: "\f155";
}
.fa-dolly:before {
- content: "";
+ content: "\f472";
}
.fa-dolly-flatbed:before {
- content: "";
+ content: "\f474";
}
.fa-donate:before {
- content: "";
+ content: "\f4b9";
}
.fa-door-closed:before {
- content: "";
+ content: "\f52a";
}
.fa-door-open:before {
- content: "";
+ content: "\f52b";
}
.fa-dot-circle:before {
- content: "";
+ content: "\f192";
}
.fa-dove:before {
- content: "";
+ content: "\f4ba";
}
.fa-download:before {
- content: "";
+ content: "\f019";
}
.fa-draft2digital:before {
- content: "";
+ content: "\f396";
}
.fa-drafting-compass:before {
- content: "";
+ content: "\f568";
}
.fa-draw-polygon:before {
- content: "";
+ content: "\f5ee";
}
.fa-dribbble:before {
- content: "";
+ content: "\f17d";
}
.fa-dribbble-square:before {
- content: "";
+ content: "\f397";
}
.fa-dropbox:before {
- content: "";
+ content: "\f16b";
}
.fa-drum:before {
- content: "";
+ content: "\f569";
}
.fa-drum-steelpan:before {
- content: "";
+ content: "\f56a";
}
.fa-drupal:before {
- content: "";
+ content: "\f1a9";
}
.fa-dumbbell:before {
- content: "";
+ content: "\f44b";
}
.fa-dyalog:before {
- content: "";
+ content: "\f399";
}
.fa-earlybirds:before {
- content: "";
+ content: "\f39a";
}
.fa-ebay:before {
- content: "";
+ content: "\f4f4";
}
.fa-edge:before {
- content: "";
+ content: "\f282";
}
.fa-edit:before {
- content: "";
+ content: "\f044";
}
.fa-eject:before {
- content: "";
+ content: "\f052";
}
.fa-elementor:before {
- content: "";
+ content: "\f430";
}
.fa-ellipsis-h:before {
- content: "";
+ content: "\f141";
}
.fa-ellipsis-v:before {
- content: "";
+ content: "\f142";
}
.fa-ello:before {
- content: "";
+ content: "\f5f1";
}
.fa-ember:before {
- content: "";
+ content: "\f423";
}
.fa-empire:before {
- content: "";
+ content: "\f1d1";
}
.fa-envelope:before {
- content: "";
+ content: "\f0e0";
}
.fa-envelope-open:before {
- content: "";
+ content: "\f2b6";
}
.fa-envelope-open-text:before {
- content: "";
+ content: "\f658";
}
.fa-envelope-square:before {
- content: "";
+ content: "\f199";
}
.fa-envira:before {
- content: "";
+ content: "\f299";
}
.fa-equals:before {
- content: "";
+ content: "\f52c";
}
.fa-eraser:before {
- content: "";
+ content: "\f12d";
}
.fa-erlang:before {
- content: "";
+ content: "\f39d";
}
.fa-ethereum:before {
- content: "";
+ content: "\f42e";
}
.fa-etsy:before {
- content: "";
+ content: "\f2d7";
}
.fa-euro-sign:before {
- content: "";
+ content: "\f153";
}
.fa-exchange-alt:before {
- content: "";
+ content: "\f362";
}
.fa-exclamation:before {
- content: "";
+ content: "\f12a";
}
.fa-exclamation-circle:before {
- content: "";
+ content: "\f06a";
}
.fa-exclamation-triangle:before {
- content: "";
+ content: "\f071";
}
.fa-expand:before {
- content: "";
+ content: "\f065";
}
.fa-expand-arrows-alt:before {
- content: "";
+ content: "\f31e";
}
.fa-expeditedssl:before {
- content: "";
+ content: "\f23e";
}
.fa-external-link-alt:before {
- content: "";
+ content: "\f35d";
}
.fa-external-link-square-alt:before {
- content: "";
+ content: "\f360";
}
.fa-eye:before {
- content: "";
+ content: "\f06e";
}
.fa-eye-dropper:before {
- content: "";
+ content: "\f1fb";
}
.fa-eye-slash:before {
- content: "";
+ content: "\f070";
}
.fa-facebook:before {
- content: "";
+ content: "\f09a";
}
.fa-facebook-f:before {
- content: "";
+ content: "\f39e";
}
.fa-facebook-messenger:before {
- content: "";
+ content: "\f39f";
}
.fa-facebook-square:before {
- content: "";
+ content: "\f082";
}
.fa-fast-backward:before {
- content: "";
+ content: "\f049";
}
.fa-fast-forward:before {
- content: "";
+ content: "\f050";
}
.fa-fax:before {
- content: "";
+ content: "\f1ac";
}
.fa-feather:before {
- content: "";
+ content: "\f52d";
}
.fa-feather-alt:before {
- content: "";
+ content: "\f56b";
}
.fa-female:before {
- content: "";
+ content: "\f182";
}
.fa-fighter-jet:before {
- content: "";
+ content: "\f0fb";
}
.fa-file:before {
- content: "";
+ content: "\f15b";
}
.fa-file-alt:before {
- content: "";
+ content: "\f15c";
}
.fa-file-archive:before {
- content: "";
+ content: "\f1c6";
}
.fa-file-audio:before {
- content: "";
+ content: "\f1c7";
}
.fa-file-code:before {
- content: "";
+ content: "\f1c9";
}
.fa-file-contract:before {
- content: "";
+ content: "\f56c";
}
.fa-file-download:before {
- content: "";
+ content: "\f56d";
}
.fa-file-excel:before {
- content: "";
+ content: "\f1c3";
}
.fa-file-export:before {
- content: "";
+ content: "\f56e";
}
.fa-file-image:before {
- content: "";
+ content: "\f1c5";
}
.fa-file-import:before {
- content: "";
+ content: "\f56f";
}
.fa-file-invoice:before {
- content: "";
+ content: "\f570";
}
.fa-file-invoice-dollar:before {
- content: "";
+ content: "\f571";
}
.fa-file-medical:before {
- content: "";
+ content: "\f477";
}
.fa-file-medical-alt:before {
- content: "";
+ content: "\f478";
}
.fa-file-pdf:before {
- content: "";
+ content: "\f1c1";
}
.fa-file-powerpoint:before {
- content: "";
+ content: "\f1c4";
}
.fa-file-prescription:before {
- content: "";
+ content: "\f572";
}
.fa-file-signature:before {
- content: "";
+ content: "\f573";
}
.fa-file-upload:before {
- content: "";
+ content: "\f574";
}
.fa-file-video:before {
- content: "";
+ content: "\f1c8";
}
.fa-file-word:before {
- content: "";
+ content: "\f1c2";
}
.fa-fill:before {
- content: "";
+ content: "\f575";
}
.fa-fill-drip:before {
- content: "";
+ content: "\f576";
}
.fa-film:before {
- content: "";
+ content: "\f008";
}
.fa-filter:before {
- content: "";
+ content: "\f0b0";
}
.fa-fingerprint:before {
- content: "";
+ content: "\f577";
}
.fa-fire:before {
- content: "";
+ content: "\f06d";
}
.fa-fire-extinguisher:before {
- content: "";
+ content: "\f134";
}
.fa-firefox:before {
- content: "";
+ content: "\f269";
}
.fa-first-aid:before {
- content: "";
+ content: "\f479";
}
.fa-first-order:before {
- content: "";
+ content: "\f2b0";
}
.fa-first-order-alt:before {
- content: "";
+ content: "\f50a";
}
.fa-firstdraft:before {
- content: "";
+ content: "\f3a1";
}
.fa-fish:before {
- content: "";
+ content: "\f578";
}
.fa-flag:before {
- content: "";
+ content: "\f024";
}
.fa-flag-checkered:before {
- content: "";
+ content: "\f11e";
}
.fa-flask:before {
- content: "";
+ content: "\f0c3";
}
.fa-flickr:before {
- content: "";
+ content: "\f16e";
}
.fa-flipboard:before {
- content: "";
+ content: "\f44d";
}
.fa-flushed:before {
- content: "";
+ content: "\f579";
}
.fa-fly:before {
- content: "";
+ content: "\f417";
}
.fa-folder:before {
- content: "";
+ content: "\f07b";
}
.fa-folder-minus:before {
- content: "";
+ content: "\f65d";
}
.fa-folder-open:before {
- content: "";
+ content: "\f07c";
}
.fa-folder-plus:before {
- content: "";
+ content: "\f65e";
}
.fa-font:before {
- content: "";
+ content: "\f031";
}
.fa-font-awesome:before {
- content: "";
+ content: "\f2b4";
}
.fa-font-awesome-alt:before {
- content: "";
+ content: "\f35c";
}
.fa-font-awesome-flag:before {
- content: "";
+ content: "\f425";
}
.fa-font-awesome-logo-full:before {
- content: "";
+ content: "\f4e6";
}
.fa-fonticons:before {
- content: "";
+ content: "\f280";
}
.fa-fonticons-fi:before {
- content: "";
+ content: "\f3a2";
}
.fa-football-ball:before {
- content: "";
+ content: "\f44e";
}
.fa-fort-awesome:before {
- content: "";
+ content: "\f286";
}
.fa-fort-awesome-alt:before {
- content: "";
+ content: "\f3a3";
}
.fa-forumbee:before {
- content: "";
+ content: "\f211";
}
.fa-forward:before {
- content: "";
+ content: "\f04e";
}
.fa-foursquare:before {
- content: "";
+ content: "\f180";
}
.fa-free-code-camp:before {
- content: "";
+ content: "\f2c5";
}
.fa-freebsd:before {
- content: "";
+ content: "\f3a4";
}
.fa-frog:before {
- content: "";
+ content: "\f52e";
}
.fa-frown:before {
- content: "";
+ content: "\f119";
}
.fa-frown-open:before {
- content: "";
+ content: "\f57a";
}
.fa-fulcrum:before {
- content: "";
+ content: "\f50b";
}
.fa-funnel-dollar:before {
- content: "";
+ content: "\f662";
}
.fa-futbol:before {
- content: "";
+ content: "\f1e3";
}
.fa-galactic-republic:before {
- content: "";
+ content: "\f50c";
}
.fa-galactic-senate:before {
- content: "";
+ content: "\f50d";
}
.fa-gamepad:before {
- content: "";
+ content: "\f11b";
}
.fa-gas-pump:before {
- content: "";
+ content: "\f52f";
}
.fa-gavel:before {
- content: "";
+ content: "\f0e3";
}
.fa-gem:before {
- content: "";
+ content: "\f3a5";
}
.fa-genderless:before {
- content: "";
+ content: "\f22d";
}
.fa-get-pocket:before {
- content: "";
+ content: "\f265";
}
.fa-gg:before {
- content: "";
+ content: "\f260";
}
.fa-gg-circle:before {
- content: "";
+ content: "\f261";
}
.fa-gift:before {
- content: "";
+ content: "\f06b";
}
.fa-git:before {
- content: "";
+ content: "\f1d3";
}
.fa-git-square:before {
- content: "";
+ content: "\f1d2";
}
.fa-github:before {
- content: "";
+ content: "\f09b";
}
.fa-github-alt:before {
- content: "";
+ content: "\f113";
}
.fa-github-square:before {
- content: "";
+ content: "\f092";
}
.fa-gitkraken:before {
- content: "";
+ content: "\f3a6";
}
.fa-gitlab:before {
- content: "";
+ content: "\f296";
}
.fa-gitter:before {
- content: "";
+ content: "\f426";
}
.fa-glass-martini:before {
- content: "";
+ content: "\f000";
}
.fa-glass-martini-alt:before {
- content: "";
+ content: "\f57b";
}
.fa-glasses:before {
- content: "";
+ content: "\f530";
}
.fa-glide:before {
- content: "";
+ content: "\f2a5";
}
.fa-glide-g:before {
- content: "";
+ content: "\f2a6";
}
.fa-globe:before {
- content: "";
+ content: "\f0ac";
}
.fa-globe-africa:before {
- content: "";
+ content: "\f57c";
}
.fa-globe-americas:before {
- content: "";
+ content: "\f57d";
}
.fa-globe-asia:before {
- content: "";
+ content: "\f57e";
}
.fa-gofore:before {
- content: "";
+ content: "\f3a7";
}
.fa-golf-ball:before {
- content: "";
+ content: "\f450";
}
.fa-goodreads:before {
- content: "";
+ content: "\f3a8";
}
.fa-goodreads-g:before {
- content: "";
+ content: "\f3a9";
}
.fa-google:before {
- content: "";
+ content: "\f1a0";
}
.fa-google-drive:before {
- content: "";
+ content: "\f3aa";
}
.fa-google-play:before {
- content: "";
+ content: "\f3ab";
}
.fa-google-plus:before {
- content: "";
+ content: "\f2b3";
}
.fa-google-plus-g:before {
- content: "";
+ content: "\f0d5";
}
.fa-google-plus-square:before {
- content: "";
+ content: "\f0d4";
}
.fa-google-wallet:before {
- content: "";
+ content: "\f1ee";
}
.fa-gopuram:before {
- content: "";
+ content: "\f664";
}
.fa-graduation-cap:before {
- content: "";
+ content: "\f19d";
}
.fa-gratipay:before {
- content: "";
+ content: "\f184";
}
.fa-grav:before {
- content: "";
+ content: "\f2d6";
}
.fa-greater-than:before {
- content: "";
+ content: "\f531";
}
.fa-greater-than-equal:before {
- content: "";
+ content: "\f532";
}
.fa-grimace:before {
- content: "";
+ content: "\f57f";
}
.fa-grin:before {
- content: "";
+ content: "\f580";
}
.fa-grin-alt:before {
- content: "";
+ content: "\f581";
}
.fa-grin-beam:before {
- content: "";
+ content: "\f582";
}
.fa-grin-beam-sweat:before {
- content: "";
+ content: "\f583";
}
.fa-grin-hearts:before {
- content: "";
+ content: "\f584";
}
.fa-grin-squint:before {
- content: "";
+ content: "\f585";
}
.fa-grin-squint-tears:before {
- content: "";
+ content: "\f586";
}
.fa-grin-stars:before {
- content: "";
+ content: "\f587";
}
.fa-grin-tears:before {
- content: "";
+ content: "\f588";
}
.fa-grin-tongue:before {
- content: "";
+ content: "\f589";
}
.fa-grin-tongue-squint:before {
- content: "";
+ content: "\f58a";
}
.fa-grin-tongue-wink:before {
- content: "";
+ content: "\f58b";
}
.fa-grin-wink:before {
- content: "";
+ content: "\f58c";
}
.fa-grip-horizontal:before {
- content: "";
+ content: "\f58d";
}
.fa-grip-vertical:before {
- content: "";
+ content: "\f58e";
}
.fa-gripfire:before {
- content: "";
+ content: "\f3ac";
}
.fa-grunt:before {
- content: "";
+ content: "\f3ad";
}
.fa-gulp:before {
- content: "";
+ content: "\f3ae";
}
.fa-h-square:before {
- content: "";
+ content: "\f0fd";
}
.fa-hacker-news:before {
- content: "";
+ content: "\f1d4";
}
.fa-hacker-news-square:before {
- content: "";
+ content: "\f3af";
}
.fa-hackerrank:before {
- content: "";
+ content: "\f5f7";
}
.fa-hamsa:before {
- content: "";
+ content: "\f665";
}
.fa-hand-holding:before {
- content: "";
+ content: "\f4bd";
}
.fa-hand-holding-heart:before {
- content: "";
+ content: "\f4be";
}
.fa-hand-holding-usd:before {
- content: "";
+ content: "\f4c0";
}
.fa-hand-lizard:before {
- content: "";
+ content: "\f258";
}
.fa-hand-paper:before {
- content: "";
+ content: "\f256";
}
.fa-hand-peace:before {
- content: "";
+ content: "\f25b";
}
.fa-hand-point-down:before {
- content: "";
+ content: "\f0a7";
}
.fa-hand-point-left:before {
- content: "";
+ content: "\f0a5";
}
.fa-hand-point-right:before {
- content: "";
+ content: "\f0a4";
}
.fa-hand-point-up:before {
- content: "";
+ content: "\f0a6";
}
.fa-hand-pointer:before {
- content: "";
+ content: "\f25a";
}
.fa-hand-rock:before {
- content: "";
+ content: "\f255";
}
.fa-hand-scissors:before {
- content: "";
+ content: "\f257";
}
.fa-hand-spock:before {
- content: "";
+ content: "\f259";
}
.fa-hands:before {
- content: "";
+ content: "\f4c2";
}
.fa-hands-helping:before {
- content: "";
+ content: "\f4c4";
}
.fa-handshake:before {
- content: "";
+ content: "\f2b5";
}
.fa-hashtag:before {
- content: "";
+ content: "\f292";
}
.fa-haykal:before {
- content: "";
+ content: "\f666";
}
.fa-hdd:before {
- content: "";
+ content: "\f0a0";
}
.fa-heading:before {
- content: "";
+ content: "\f1dc";
}
.fa-headphones:before {
- content: "";
+ content: "\f025";
}
.fa-headphones-alt:before {
- content: "";
+ content: "\f58f";
}
.fa-headset:before {
- content: "";
+ content: "\f590";
}
.fa-heart:before {
- content: "";
+ content: "\f004";
}
.fa-heartbeat:before {
- content: "";
+ content: "\f21e";
}
.fa-helicopter:before {
- content: "";
+ content: "\f533";
}
.fa-highlighter:before {
- content: "";
+ content: "\f591";
}
.fa-hips:before {
- content: "";
+ content: "\f452";
}
.fa-hire-a-helper:before {
- content: "";
+ content: "\f3b0";
}
.fa-history:before {
- content: "";
+ content: "\f1da";
}
.fa-hockey-puck:before {
- content: "";
+ content: "\f453";
}
.fa-home:before {
- content: "";
+ content: "\f015";
}
.fa-hooli:before {
- content: "";
+ content: "\f427";
}
.fa-hornbill:before {
- content: "";
+ content: "\f592";
}
.fa-hospital:before {
- content: "";
+ content: "\f0f8";
}
.fa-hospital-alt:before {
- content: "";
+ content: "\f47d";
}
.fa-hospital-symbol:before {
- content: "";
+ content: "\f47e";
}
.fa-hot-tub:before {
- content: "";
+ content: "\f593";
}
.fa-hotel:before {
- content: "";
+ content: "\f594";
}
.fa-hotjar:before {
- content: "";
+ content: "\f3b1";
}
.fa-hourglass:before {
- content: "";
+ content: "\f254";
}
.fa-hourglass-end:before {
- content: "";
+ content: "\f253";
}
.fa-hourglass-half:before {
- content: "";
+ content: "\f252";
}
.fa-hourglass-start:before {
- content: "";
+ content: "\f251";
}
.fa-houzz:before {
- content: "";
+ content: "\f27c";
}
.fa-html5:before {
- content: "";
+ content: "\f13b";
}
.fa-hubspot:before {
- content: "";
+ content: "\f3b2";
}
.fa-i-cursor:before {
- content: "";
+ content: "\f246";
}
.fa-id-badge:before {
- content: "";
+ content: "\f2c1";
}
.fa-id-card:before {
- content: "";
+ content: "\f2c2";
}
.fa-id-card-alt:before {
- content: "";
+ content: "\f47f";
}
.fa-image:before {
- content: "";
+ content: "\f03e";
}
.fa-images:before {
- content: "";
+ content: "\f302";
}
.fa-imdb:before {
- content: "";
+ content: "\f2d8";
}
.fa-inbox:before {
- content: "";
+ content: "\f01c";
}
.fa-indent:before {
- content: "";
+ content: "\f03c";
}
.fa-industry:before {
- content: "";
+ content: "\f275";
}
.fa-infinity:before {
- content: "";
+ content: "\f534";
}
.fa-info:before {
- content: "";
+ content: "\f129";
}
.fa-info-circle:before {
- content: "";
+ content: "\f05a";
}
.fa-instagram:before {
- content: "";
+ content: "\f16d";
}
.fa-internet-explorer:before {
- content: "";
+ content: "\f26b";
}
.fa-ioxhost:before {
- content: "";
+ content: "\f208";
}
.fa-italic:before {
- content: "";
+ content: "\f033";
}
.fa-itunes:before {
- content: "";
+ content: "\f3b4";
}
.fa-itunes-note:before {
- content: "";
+ content: "\f3b5";
}
.fa-java:before {
- content: "";
+ content: "\f4e4";
}
.fa-jedi:before {
- content: "";
+ content: "\f669";
}
.fa-jedi-order:before {
- content: "";
+ content: "\f50e";
}
.fa-jenkins:before {
- content: "";
+ content: "\f3b6";
}
.fa-joget:before {
- content: "";
+ content: "\f3b7";
}
.fa-joint:before {
- content: "";
+ content: "\f595";
}
.fa-joomla:before {
- content: "";
+ content: "\f1aa";
}
.fa-journal-whills:before {
- content: "";
+ content: "\f66a";
}
.fa-js:before {
- content: "";
+ content: "\f3b8";
}
.fa-js-square:before {
- content: "";
+ content: "\f3b9";
}
.fa-jsfiddle:before {
- content: "";
+ content: "\f1cc";
}
.fa-kaaba:before {
- content: "";
+ content: "\f66b";
}
.fa-kaggle:before {
- content: "";
+ content: "\f5fa";
}
.fa-key:before {
- content: "";
+ content: "\f084";
}
.fa-keybase:before {
- content: "";
+ content: "\f4f5";
}
.fa-keyboard:before {
- content: "";
+ content: "\f11c";
}
.fa-keycdn:before {
- content: "";
+ content: "\f3ba";
}
.fa-khanda:before {
- content: "";
+ content: "\f66d";
}
.fa-kickstarter:before {
- content: "";
+ content: "\f3bb";
}
.fa-kickstarter-k:before {
- content: "";
+ content: "\f3bc";
}
.fa-kiss:before {
- content: "";
+ content: "\f596";
}
.fa-kiss-beam:before {
- content: "";
+ content: "\f597";
}
.fa-kiss-wink-heart:before {
- content: "";
+ content: "\f598";
}
.fa-kiwi-bird:before {
- content: "";
+ content: "\f535";
}
.fa-korvue:before {
- content: "";
+ content: "\f42f";
}
.fa-landmark:before {
- content: "";
+ content: "\f66f";
}
.fa-language:before {
- content: "";
+ content: "\f1ab";
}
.fa-laptop:before {
- content: "";
+ content: "\f109";
}
.fa-laptop-code:before {
- content: "";
+ content: "\f5fc";
}
.fa-laravel:before {
- content: "";
+ content: "\f3bd";
}
.fa-lastfm:before {
- content: "";
+ content: "\f202";
}
.fa-lastfm-square:before {
- content: "";
+ content: "\f203";
}
.fa-laugh:before {
- content: "";
+ content: "\f599";
}
.fa-laugh-beam:before {
- content: "";
+ content: "\f59a";
}
.fa-laugh-squint:before {
- content: "";
+ content: "\f59b";
}
.fa-laugh-wink:before {
- content: "";
+ content: "\f59c";
}
.fa-layer-group:before {
- content: "";
+ content: "\f5fd";
}
.fa-leaf:before {
- content: "";
+ content: "\f06c";
}
.fa-leanpub:before {
- content: "";
+ content: "\f212";
}
.fa-lemon:before {
- content: "";
+ content: "\f094";
}
.fa-less:before {
- content: "";
+ content: "\f41d";
}
.fa-less-than:before {
- content: "";
+ content: "\f536";
}
.fa-less-than-equal:before {
- content: "";
+ content: "\f537";
}
.fa-level-down-alt:before {
- content: "";
+ content: "\f3be";
}
.fa-level-up-alt:before {
- content: "";
+ content: "\f3bf";
}
.fa-life-ring:before {
- content: "";
+ content: "\f1cd";
}
.fa-lightbulb:before {
- content: "";
+ content: "\f0eb";
}
.fa-line:before {
- content: "";
+ content: "\f3c0";
}
.fa-link:before {
- content: "";
+ content: "\f0c1";
}
.fa-linkedin:before {
- content: "";
+ content: "\f08c";
}
.fa-linkedin-in:before {
- content: "";
+ content: "\f0e1";
}
.fa-linode:before {
- content: "";
+ content: "\f2b8";
}
.fa-linux:before {
- content: "";
+ content: "\f17c";
}
.fa-lira-sign:before {
- content: "";
+ content: "\f195";
}
.fa-list:before {
- content: "";
+ content: "\f03a";
}
.fa-list-alt:before {
- content: "";
+ content: "\f022";
}
.fa-list-ol:before {
- content: "";
+ content: "\f0cb";
}
.fa-list-ul:before {
- content: "";
+ content: "\f0ca";
}
.fa-location-arrow:before {
- content: "";
+ content: "\f124";
}
.fa-lock:before {
- content: "";
+ content: "\f023";
}
.fa-lock-open:before {
- content: "";
+ content: "\f3c1";
}
.fa-long-arrow-alt-down:before {
- content: "";
+ content: "\f309";
}
.fa-long-arrow-alt-left:before {
- content: "";
+ content: "\f30a";
}
.fa-long-arrow-alt-right:before {
- content: "";
+ content: "\f30b";
}
.fa-long-arrow-alt-up:before {
- content: "";
+ content: "\f30c";
}
.fa-low-vision:before {
- content: "";
+ content: "\f2a8";
}
.fa-luggage-cart:before {
- content: "";
+ content: "\f59d";
}
.fa-lyft:before {
- content: "";
+ content: "\f3c3";
}
.fa-magento:before {
- content: "";
+ content: "\f3c4";
}
.fa-magic:before {
- content: "";
+ content: "\f0d0";
}
.fa-magnet:before {
- content: "";
+ content: "\f076";
}
.fa-mail-bulk:before {
- content: "";
+ content: "\f674";
}
.fa-mailchimp:before {
- content: "";
+ content: "\f59e";
}
.fa-male:before {
- content: "";
+ content: "\f183";
}
.fa-mandalorian:before {
- content: "";
+ content: "\f50f";
}
.fa-map:before {
- content: "";
+ content: "\f279";
}
.fa-map-marked:before {
- content: "";
+ content: "\f59f";
}
.fa-map-marked-alt:before {
- content: "";
+ content: "\f5a0";
}
.fa-map-marker:before {
- content: "";
+ content: "\f041";
}
.fa-map-marker-alt:before {
- content: "";
+ content: "\f3c5";
}
.fa-map-pin:before {
- content: "";
+ content: "\f276";
}
.fa-map-signs:before {
- content: "";
+ content: "\f277";
}
.fa-markdown:before {
- content: "";
+ content: "\f60f";
}
.fa-marker:before {
- content: "";
+ content: "\f5a1";
}
.fa-mars:before {
- content: "";
+ content: "\f222";
}
.fa-mars-double:before {
- content: "";
+ content: "\f227";
}
.fa-mars-stroke:before {
- content: "";
+ content: "\f229";
}
.fa-mars-stroke-h:before {
- content: "";
+ content: "\f22b";
}
.fa-mars-stroke-v:before {
- content: "";
+ content: "\f22a";
}
.fa-mastodon:before {
- content: "";
+ content: "\f4f6";
}
.fa-maxcdn:before {
- content: "";
+ content: "\f136";
}
.fa-medal:before {
- content: "";
+ content: "\f5a2";
}
.fa-medapps:before {
- content: "";
+ content: "\f3c6";
}
.fa-medium:before {
- content: "";
+ content: "\f23a";
}
.fa-medium-m:before {
- content: "";
+ content: "\f3c7";
}
.fa-medkit:before {
- content: "";
+ content: "\f0fa";
}
.fa-medrt:before {
- content: "";
+ content: "\f3c8";
}
.fa-meetup:before {
- content: "";
+ content: "\f2e0";
}
.fa-megaport:before {
- content: "";
+ content: "\f5a3";
}
.fa-meh:before {
- content: "";
+ content: "\f11a";
}
.fa-meh-blank:before {
- content: "";
+ content: "\f5a4";
}
.fa-meh-rolling-eyes:before {
- content: "";
+ content: "\f5a5";
}
.fa-memory:before {
- content: "";
+ content: "\f538";
}
.fa-menorah:before {
- content: "";
+ content: "\f676";
}
.fa-mercury:before {
- content: "";
+ content: "\f223";
}
.fa-microchip:before {
- content: "";
+ content: "\f2db";
}
.fa-microphone:before {
- content: "";
+ content: "\f130";
}
.fa-microphone-alt:before {
- content: "";
+ content: "\f3c9";
}
.fa-microphone-alt-slash:before {
- content: "";
+ content: "\f539";
}
.fa-microphone-slash:before {
- content: "";
+ content: "\f131";
}
.fa-microscope:before {
- content: "";
+ content: "\f610";
}
.fa-microsoft:before {
- content: "";
+ content: "\f3ca";
}
.fa-minus:before {
- content: "";
+ content: "\f068";
}
.fa-minus-circle:before {
- content: "";
+ content: "\f056";
}
.fa-minus-square:before {
- content: "";
+ content: "\f146";
}
.fa-mix:before {
- content: "";
+ content: "\f3cb";
}
.fa-mixcloud:before {
- content: "";
+ content: "\f289";
}
.fa-mizuni:before {
- content: "";
+ content: "\f3cc";
}
.fa-mobile:before {
- content: "";
+ content: "\f10b";
}
.fa-mobile-alt:before {
- content: "";
+ content: "\f3cd";
}
.fa-modx:before {
- content: "";
+ content: "\f285";
}
.fa-monero:before {
- content: "";
+ content: "\f3d0";
}
.fa-money-bill:before {
- content: "";
+ content: "\f0d6";
}
.fa-money-bill-alt:before {
- content: "";
+ content: "\f3d1";
}
.fa-money-bill-wave:before {
- content: "";
+ content: "\f53a";
}
.fa-money-bill-wave-alt:before {
- content: "";
+ content: "\f53b";
}
.fa-money-check:before {
- content: "";
+ content: "\f53c";
}
.fa-money-check-alt:before {
- content: "";
+ content: "\f53d";
}
.fa-monument:before {
- content: "";
+ content: "\f5a6";
}
.fa-moon:before {
- content: "";
+ content: "\f186";
}
.fa-mortar-pestle:before {
- content: "";
+ content: "\f5a7";
}
.fa-mosque:before {
- content: "";
+ content: "\f678";
}
.fa-motorcycle:before {
- content: "";
+ content: "\f21c";
}
.fa-mouse-pointer:before {
- content: "";
+ content: "\f245";
}
.fa-music:before {
- content: "";
+ content: "\f001";
}
.fa-napster:before {
- content: "";
+ content: "\f3d2";
}
.fa-neos:before {
- content: "";
+ content: "\f612";
}
.fa-neuter:before {
- content: "";
+ content: "\f22c";
}
.fa-newspaper:before {
- content: "";
+ content: "\f1ea";
}
.fa-nimblr:before {
- content: "";
+ content: "\f5a8";
}
.fa-nintendo-switch:before {
- content: "";
+ content: "\f418";
}
.fa-node:before {
- content: "";
+ content: "\f419";
}
.fa-node-js:before {
- content: "";
+ content: "\f3d3";
}
.fa-not-equal:before {
- content: "";
+ content: "\f53e";
}
.fa-notes-medical:before {
- content: "";
+ content: "\f481";
}
.fa-npm:before {
- content: "";
+ content: "\f3d4";
}
.fa-ns8:before {
- content: "";
+ content: "\f3d5";
}
.fa-nutritionix:before {
- content: "";
+ content: "\f3d6";
}
.fa-object-group:before {
- content: "";
+ content: "\f247";
}
.fa-object-ungroup:before {
- content: "";
+ content: "\f248";
}
.fa-odnoklassniki:before {
- content: "";
+ content: "\f263";
}
.fa-odnoklassniki-square:before {
- content: "";
+ content: "\f264";
}
.fa-oil-can:before {
- content: "";
+ content: "\f613";
}
.fa-old-republic:before {
- content: "";
+ content: "\f510";
}
.fa-om:before {
- content: "";
+ content: "\f679";
}
.fa-opencart:before {
- content: "";
+ content: "\f23d";
}
.fa-openid:before {
- content: "";
+ content: "\f19b";
}
.fa-opera:before {
- content: "";
+ content: "\f26a";
}
.fa-optin-monster:before {
- content: "";
+ content: "\f23c";
}
.fa-osi:before {
- content: "";
+ content: "\f41a";
}
.fa-outdent:before {
- content: "";
+ content: "\f03b";
}
.fa-page4:before {
- content: "";
+ content: "\f3d7";
}
.fa-pagelines:before {
- content: "";
+ content: "\f18c";
}
.fa-paint-brush:before {
- content: "";
+ content: "\f1fc";
}
.fa-paint-roller:before {
- content: "";
+ content: "\f5aa";
}
.fa-palette:before {
- content: "";
+ content: "\f53f";
}
.fa-palfed:before {
- content: "";
+ content: "\f3d8";
}
.fa-pallet:before {
- content: "";
+ content: "\f482";
}
.fa-paper-plane:before {
- content: "";
+ content: "\f1d8";
}
.fa-paperclip:before {
- content: "";
+ content: "\f0c6";
}
.fa-parachute-box:before {
- content: "";
+ content: "\f4cd";
}
.fa-paragraph:before {
- content: "";
+ content: "\f1dd";
}
.fa-parking:before {
- content: "";
+ content: "\f540";
}
.fa-passport:before {
- content: "";
+ content: "\f5ab";
}
.fa-pastafarianism:before {
- content: "";
+ content: "\f67b";
}
.fa-paste:before {
- content: "";
+ content: "\f0ea";
}
.fa-patreon:before {
- content: "";
+ content: "\f3d9";
}
.fa-pause:before {
- content: "";
+ content: "\f04c";
}
.fa-pause-circle:before {
- content: "";
+ content: "\f28b";
}
.fa-paw:before {
- content: "";
+ content: "\f1b0";
}
.fa-paypal:before {
- content: "";
+ content: "\f1ed";
}
.fa-peace:before {
- content: "";
+ content: "\f67c";
}
.fa-pen:before {
- content: "";
+ content: "\f304";
}
.fa-pen-alt:before {
- content: "";
+ content: "\f305";
}
.fa-pen-fancy:before {
- content: "";
+ content: "\f5ac";
}
.fa-pen-nib:before {
- content: "";
+ content: "\f5ad";
}
.fa-pen-square:before {
- content: "";
+ content: "\f14b";
}
.fa-pencil-alt:before {
- content: "";
+ content: "\f303";
}
.fa-pencil-ruler:before {
- content: "";
+ content: "\f5ae";
}
.fa-people-carry:before {
- content: "";
+ content: "\f4ce";
}
.fa-percent:before {
- content: "";
+ content: "\f295";
}
.fa-percentage:before {
- content: "";
+ content: "\f541";
}
.fa-periscope:before {
- content: "";
+ content: "\f3da";
}
.fa-phabricator:before {
- content: "";
+ content: "\f3db";
}
.fa-phoenix-framework:before {
- content: "";
+ content: "\f3dc";
}
.fa-phoenix-squadron:before {
- content: "";
+ content: "\f511";
}
.fa-phone:before {
- content: "";
+ content: "\f095";
}
.fa-phone-slash:before {
- content: "";
+ content: "\f3dd";
}
.fa-phone-square:before {
- content: "";
+ content: "\f098";
}
.fa-phone-volume:before {
- content: "";
+ content: "\f2a0";
}
.fa-php:before {
- content: "";
+ content: "\f457";
}
.fa-pied-piper:before {
- content: "";
+ content: "\f2ae";
}
.fa-pied-piper-alt:before {
- content: "";
+ content: "\f1a8";
}
.fa-pied-piper-hat:before {
- content: "";
+ content: "\f4e5";
}
.fa-pied-piper-pp:before {
- content: "";
+ content: "\f1a7";
}
.fa-piggy-bank:before {
- content: "";
+ content: "\f4d3";
}
.fa-pills:before {
- content: "";
+ content: "\f484";
}
.fa-pinterest:before {
- content: "";
+ content: "\f0d2";
}
.fa-pinterest-p:before {
- content: "";
+ content: "\f231";
}
.fa-pinterest-square:before {
- content: "";
+ content: "\f0d3";
}
.fa-place-of-worship:before {
- content: "";
+ content: "\f67f";
}
.fa-plane:before {
- content: "";
+ content: "\f072";
}
.fa-plane-arrival:before {
- content: "";
+ content: "\f5af";
}
.fa-plane-departure:before {
- content: "";
+ content: "\f5b0";
}
.fa-play:before {
- content: "";
+ content: "\f04b";
}
.fa-play-circle:before {
- content: "";
+ content: "\f144";
}
.fa-playstation:before {
- content: "";
+ content: "\f3df";
}
.fa-plug:before {
- content: "";
+ content: "\f1e6";
}
.fa-plus:before {
- content: "";
+ content: "\f067";
}
.fa-plus-circle:before {
- content: "";
+ content: "\f055";
}
.fa-plus-square:before {
- content: "";
+ content: "\f0fe";
}
.fa-podcast:before {
- content: "";
+ content: "\f2ce";
}
.fa-poll:before {
- content: "";
+ content: "\f681";
}
.fa-poll-h:before {
- content: "";
+ content: "\f682";
}
.fa-poo:before {
- content: "";
+ content: "\f2fe";
}
.fa-poop:before {
- content: "";
+ content: "\f619";
}
.fa-portrait:before {
- content: "";
+ content: "\f3e0";
}
.fa-pound-sign:before {
- content: "";
+ content: "\f154";
}
.fa-power-off:before {
- content: "";
+ content: "\f011";
}
.fa-pray:before {
- content: "";
+ content: "\f683";
}
.fa-praying-hands:before {
- content: "";
+ content: "\f684";
}
.fa-prescription:before {
- content: "";
+ content: "\f5b1";
}
.fa-prescription-bottle:before {
- content: "";
+ content: "\f485";
}
.fa-prescription-bottle-alt:before {
- content: "";
+ content: "\f486";
}
.fa-print:before {
- content: "";
+ content: "\f02f";
}
.fa-procedures:before {
- content: "";
+ content: "\f487";
}
.fa-product-hunt:before {
- content: "";
+ content: "\f288";
}
.fa-project-diagram:before {
- content: "";
+ content: "\f542";
}
.fa-pushed:before {
- content: "";
+ content: "\f3e1";
}
.fa-puzzle-piece:before {
- content: "";
+ content: "\f12e";
}
.fa-python:before {
- content: "";
+ content: "\f3e2";
}
.fa-qq:before {
- content: "";
+ content: "\f1d6";
}
.fa-qrcode:before {
- content: "";
+ content: "\f029";
}
.fa-question:before {
- content: "";
+ content: "\f128";
}
.fa-question-circle:before {
- content: "";
+ content: "\f059";
}
.fa-quidditch:before {
- content: "";
+ content: "\f458";
}
.fa-quinscape:before {
- content: "";
+ content: "\f459";
}
.fa-quora:before {
- content: "";
+ content: "\f2c4";
}
.fa-quote-left:before {
- content: "";
+ content: "\f10d";
}
.fa-quote-right:before {
- content: "";
+ content: "\f10e";
}
.fa-quran:before {
- content: "";
+ content: "\f687";
}
.fa-r-project:before {
- content: "";
+ content: "\f4f7";
}
.fa-random:before {
- content: "";
+ content: "\f074";
}
.fa-ravelry:before {
- content: "";
+ content: "\f2d9";
}
.fa-react:before {
- content: "";
+ content: "\f41b";
}
.fa-readme:before {
- content: "";
+ content: "\f4d5";
}
.fa-rebel:before {
- content: "";
+ content: "\f1d0";
}
.fa-receipt:before {
- content: "";
+ content: "\f543";
}
.fa-recycle:before {
- content: "";
+ content: "\f1b8";
}
.fa-red-river:before {
- content: "";
+ content: "\f3e3";
}
.fa-reddit:before {
- content: "";
+ content: "\f1a1";
}
.fa-reddit-alien:before {
- content: "";
+ content: "\f281";
}
.fa-reddit-square:before {
- content: "";
+ content: "\f1a2";
}
.fa-redo:before {
- content: "";
+ content: "\f01e";
}
.fa-redo-alt:before {
- content: "";
+ content: "\f2f9";
}
.fa-registered:before {
- content: "";
+ content: "\f25d";
}
.fa-rendact:before {
- content: "";
+ content: "\f3e4";
}
.fa-renren:before {
- content: "";
+ content: "\f18b";
}
.fa-reply:before {
- content: "";
+ content: "\f3e5";
}
.fa-reply-all:before {
- content: "";
+ content: "\f122";
}
.fa-replyd:before {
- content: "";
+ content: "\f3e6";
}
.fa-researchgate:before {
- content: "";
+ content: "\f4f8";
}
.fa-resolving:before {
- content: "";
+ content: "\f3e7";
}
.fa-retweet:before {
- content: "";
+ content: "\f079";
}
.fa-rev:before {
- content: "";
+ content: "\f5b2";
}
.fa-ribbon:before {
- content: "";
+ content: "\f4d6";
}
.fa-road:before {
- content: "";
+ content: "\f018";
}
.fa-robot:before {
- content: "";
+ content: "\f544";
}
.fa-rocket:before {
- content: "";
+ content: "\f135";
}
.fa-rocketchat:before {
- content: "";
+ content: "\f3e8";
}
.fa-rockrms:before {
- content: "";
+ content: "\f3e9";
}
.fa-route:before {
- content: "";
+ content: "\f4d7";
}
.fa-rss:before {
- content: "";
+ content: "\f09e";
}
.fa-rss-square:before {
- content: "";
+ content: "\f143";
}
.fa-ruble-sign:before {
- content: "";
+ content: "\f158";
}
.fa-ruler:before {
- content: "";
+ content: "\f545";
}
.fa-ruler-combined:before {
- content: "";
+ content: "\f546";
}
.fa-ruler-horizontal:before {
- content: "";
+ content: "\f547";
}
.fa-ruler-vertical:before {
- content: "";
+ content: "\f548";
}
.fa-rupee-sign:before {
- content: "";
+ content: "\f156";
}
.fa-sad-cry:before {
- content: "";
+ content: "\f5b3";
}
.fa-sad-tear:before {
- content: "";
+ content: "\f5b4";
}
.fa-safari:before {
- content: "";
+ content: "\f267";
}
.fa-sass:before {
- content: "";
+ content: "\f41e";
}
.fa-save:before {
- content: "";
+ content: "\f0c7";
}
.fa-schlix:before {
- content: "";
+ content: "\f3ea";
}
.fa-school:before {
- content: "";
+ content: "\f549";
}
.fa-screwdriver:before {
- content: "";
+ content: "\f54a";
}
.fa-scribd:before {
- content: "";
+ content: "\f28a";
}
.fa-search:before {
- content: "";
+ content: "\f002";
}
.fa-search-dollar:before {
- content: "";
+ content: "\f688";
}
.fa-search-location:before {
- content: "";
+ content: "\f689";
}
.fa-search-minus:before {
- content: "";
+ content: "\f010";
}
.fa-search-plus:before {
- content: "";
+ content: "\f00e";
}
.fa-searchengin:before {
- content: "";
+ content: "\f3eb";
}
.fa-seedling:before {
- content: "";
+ content: "\f4d8";
}
.fa-sellcast:before {
- content: "";
+ content: "\f2da";
}
.fa-sellsy:before {
- content: "";
+ content: "\f213";
}
.fa-server:before {
- content: "";
+ content: "\f233";
}
.fa-servicestack:before {
- content: "";
+ content: "\f3ec";
}
.fa-shapes:before {
- content: "";
+ content: "\f61f";
}
.fa-share:before {
- content: "";
+ content: "\f064";
}
.fa-share-alt:before {
- content: "";
+ content: "\f1e0";
}
.fa-share-alt-square:before {
- content: "";
+ content: "\f1e1";
}
.fa-share-square:before {
- content: "";
+ content: "\f14d";
}
.fa-shekel-sign:before {
- content: "";
+ content: "\f20b";
}
.fa-shield-alt:before {
- content: "";
+ content: "\f3ed";
}
.fa-ship:before {
- content: "";
+ content: "\f21a";
}
.fa-shipping-fast:before {
- content: "";
+ content: "\f48b";
}
.fa-shirtsinbulk:before {
- content: "";
+ content: "\f214";
}
.fa-shoe-prints:before {
- content: "";
+ content: "\f54b";
}
.fa-shopping-bag:before {
- content: "";
+ content: "\f290";
}
.fa-shopping-basket:before {
- content: "";
+ content: "\f291";
}
.fa-shopping-cart:before {
- content: "";
+ content: "\f07a";
}
.fa-shopware:before {
- content: "";
+ content: "\f5b5";
}
.fa-shower:before {
- content: "";
+ content: "\f2cc";
}
.fa-shuttle-van:before {
- content: "";
+ content: "\f5b6";
}
.fa-sign:before {
- content: "";
+ content: "\f4d9";
}
.fa-sign-in-alt:before {
- content: "";
+ content: "\f2f6";
}
.fa-sign-language:before {
- content: "";
+ content: "\f2a7";
}
.fa-sign-out-alt:before {
- content: "";
+ content: "\f2f5";
}
.fa-signal:before {
- content: "";
+ content: "\f012";
}
.fa-signature:before {
- content: "";
+ content: "\f5b7";
}
.fa-simplybuilt:before {
- content: "";
+ content: "\f215";
}
.fa-sistrix:before {
- content: "";
+ content: "\f3ee";
}
.fa-sitemap:before {
- content: "";
+ content: "\f0e8";
}
.fa-sith:before {
- content: "";
+ content: "\f512";
}
.fa-skull:before {
- content: "";
+ content: "\f54c";
}
.fa-skyatlas:before {
- content: "";
+ content: "\f216";
}
.fa-skype:before {
- content: "";
+ content: "\f17e";
}
.fa-slack:before {
- content: "";
+ content: "\f198";
}
.fa-slack-hash:before {
- content: "";
+ content: "\f3ef";
}
.fa-sliders-h:before {
- content: "";
+ content: "\f1de";
}
.fa-slideshare:before {
- content: "";
+ content: "\f1e7";
}
.fa-smile:before {
- content: "";
+ content: "\f118";
}
.fa-smile-beam:before {
- content: "";
+ content: "\f5b8";
}
.fa-smile-wink:before {
- content: "";
+ content: "\f4da";
}
.fa-smoking:before {
- content: "";
+ content: "\f48d";
}
.fa-smoking-ban:before {
- content: "";
+ content: "\f54d";
}
.fa-snapchat:before {
- content: "";
+ content: "\f2ab";
}
.fa-snapchat-ghost:before {
- content: "";
+ content: "\f2ac";
}
.fa-snapchat-square:before {
- content: "";
+ content: "\f2ad";
}
.fa-snowflake:before {
- content: "";
+ content: "\f2dc";
}
.fa-socks:before {
- content: "";
+ content: "\f696";
}
.fa-solar-panel:before {
- content: "";
+ content: "\f5ba";
}
.fa-sort:before {
- content: "";
+ content: "\f0dc";
}
.fa-sort-alpha-down:before {
- content: "";
+ content: "\f15d";
}
.fa-sort-alpha-up:before {
- content: "";
+ content: "\f15e";
}
.fa-sort-amount-down:before {
- content: "";
+ content: "\f160";
}
.fa-sort-amount-up:before {
- content: "";
+ content: "\f161";
}
.fa-sort-down:before {
- content: "";
+ content: "\f0dd";
}
.fa-sort-numeric-down:before {
- content: "";
+ content: "\f162";
}
.fa-sort-numeric-up:before {
- content: "";
+ content: "\f163";
}
.fa-sort-up:before {
- content: "";
+ content: "\f0de";
}
.fa-soundcloud:before {
- content: "";
+ content: "\f1be";
}
.fa-spa:before {
- content: "";
+ content: "\f5bb";
}
.fa-space-shuttle:before {
- content: "";
+ content: "\f197";
}
.fa-speakap:before {
- content: "";
+ content: "\f3f3";
}
.fa-spinner:before {
- content: "";
+ content: "\f110";
}
.fa-splotch:before {
- content: "";
+ content: "\f5bc";
}
.fa-spotify:before {
- content: "";
+ content: "\f1bc";
}
.fa-spray-can:before {
- content: "";
+ content: "\f5bd";
}
.fa-square:before {
- content: "";
+ content: "\f0c8";
}
.fa-square-full:before {
- content: "";
+ content: "\f45c";
}
.fa-square-root-alt:before {
- content: "";
+ content: "\f698";
}
.fa-squarespace:before {
- content: "";
+ content: "\f5be";
}
.fa-stack-exchange:before {
- content: "";
+ content: "\f18d";
}
.fa-stack-overflow:before {
- content: "";
+ content: "\f16c";
}
.fa-stamp:before {
- content: "";
+ content: "\f5bf";
}
.fa-star:before {
- content: "";
+ content: "\f005";
}
.fa-star-and-crescent:before {
- content: "";
+ content: "\f699";
}
.fa-star-half:before {
- content: "";
+ content: "\f089";
}
.fa-star-half-alt:before {
- content: "";
+ content: "\f5c0";
}
.fa-star-of-david:before {
- content: "";
+ content: "\f69a";
}
.fa-star-of-life:before {
- content: "";
+ content: "\f621";
}
.fa-staylinked:before {
- content: "";
+ content: "\f3f5";
}
.fa-steam:before {
- content: "";
+ content: "\f1b6";
}
.fa-steam-square:before {
- content: "";
+ content: "\f1b7";
}
.fa-steam-symbol:before {
- content: "";
+ content: "\f3f6";
}
.fa-step-backward:before {
- content: "";
+ content: "\f048";
}
.fa-step-forward:before {
- content: "";
+ content: "\f051";
}
.fa-stethoscope:before {
- content: "";
+ content: "\f0f1";
}
.fa-sticker-mule:before {
- content: "";
+ content: "\f3f7";
}
.fa-sticky-note:before {
- content: "";
+ content: "\f249";
}
.fa-stop:before {
- content: "";
+ content: "\f04d";
}
.fa-stop-circle:before {
- content: "";
+ content: "\f28d";
}
.fa-stopwatch:before {
- content: "";
+ content: "\f2f2";
}
.fa-store:before {
- content: "";
+ content: "\f54e";
}
.fa-store-alt:before {
- content: "";
+ content: "\f54f";
}
.fa-strava:before {
- content: "";
+ content: "\f428";
}
.fa-stream:before {
- content: "";
+ content: "\f550";
}
.fa-street-view:before {
- content: "";
+ content: "\f21d";
}
.fa-strikethrough:before {
- content: "";
+ content: "\f0cc";
}
.fa-stripe:before {
- content: "";
+ content: "\f429";
}
.fa-stripe-s:before {
- content: "";
+ content: "\f42a";
}
.fa-stroopwafel:before {
- content: "";
+ content: "\f551";
}
.fa-studiovinari:before {
- content: "";
+ content: "\f3f8";
}
.fa-stumbleupon:before {
- content: "";
+ content: "\f1a4";
}
.fa-stumbleupon-circle:before {
- content: "";
+ content: "\f1a3";
}
.fa-subscript:before {
- content: "";
+ content: "\f12c";
}
.fa-subway:before {
- content: "";
+ content: "\f239";
}
.fa-suitcase:before {
- content: "";
+ content: "\f0f2";
}
.fa-suitcase-rolling:before {
- content: "";
+ content: "\f5c1";
}
.fa-sun:before {
- content: "";
+ content: "\f185";
}
.fa-superpowers:before {
- content: "";
+ content: "\f2dd";
}
.fa-superscript:before {
- content: "";
+ content: "\f12b";
}
.fa-supple:before {
- content: "";
+ content: "\f3f9";
}
.fa-surprise:before {
- content: "";
+ content: "\f5c2";
}
.fa-swatchbook:before {
- content: "";
+ content: "\f5c3";
}
.fa-swimmer:before {
- content: "";
+ content: "\f5c4";
}
.fa-swimming-pool:before {
- content: "";
+ content: "\f5c5";
}
.fa-synagogue:before {
- content: "";
+ content: "\f69b";
}
.fa-sync:before {
- content: "";
+ content: "\f021";
}
.fa-sync-alt:before {
- content: "";
+ content: "\f2f1";
}
.fa-syringe:before {
- content: "";
+ content: "\f48e";
}
.fa-table:before {
- content: "";
+ content: "\f0ce";
}
.fa-table-tennis:before {
- content: "";
+ content: "\f45d";
}
.fa-tablet:before {
- content: "";
+ content: "\f10a";
}
.fa-tablet-alt:before {
- content: "";
+ content: "\f3fa";
}
.fa-tablets:before {
- content: "";
+ content: "\f490";
}
.fa-tachometer-alt:before {
- content: "";
+ content: "\f3fd";
}
.fa-tag:before {
- content: "";
+ content: "\f02b";
}
.fa-tags:before {
- content: "";
+ content: "\f02c";
}
.fa-tape:before {
- content: "";
+ content: "\f4db";
}
.fa-tasks:before {
- content: "";
+ content: "\f0ae";
}
.fa-taxi:before {
- content: "";
+ content: "\f1ba";
}
.fa-teamspeak:before {
- content: "";
+ content: "\f4f9";
}
.fa-teeth:before {
- content: "";
+ content: "\f62e";
}
.fa-teeth-open:before {
- content: "";
+ content: "\f62f";
}
.fa-telegram:before {
- content: "";
+ content: "\f2c6";
}
.fa-telegram-plane:before {
- content: "";
+ content: "\f3fe";
}
.fa-tencent-weibo:before {
- content: "";
+ content: "\f1d5";
}
.fa-terminal:before {
- content: "";
+ content: "\f120";
}
.fa-text-height:before {
- content: "";
+ content: "\f034";
}
.fa-text-width:before {
- content: "";
+ content: "\f035";
}
.fa-th:before {
- content: "";
+ content: "\f00a";
}
.fa-th-large:before {
- content: "";
+ content: "\f009";
}
.fa-th-list:before {
- content: "";
+ content: "\f00b";
}
.fa-the-red-yeti:before {
- content: "";
+ content: "\f69d";
}
.fa-theater-masks:before {
- content: "";
+ content: "\f630";
}
.fa-themeco:before {
- content: "";
+ content: "\f5c6";
}
.fa-themeisle:before {
- content: "";
+ content: "\f2b2";
}
.fa-thermometer:before {
- content: "";
+ content: "\f491";
}
.fa-thermometer-empty:before {
- content: "";
+ content: "\f2cb";
}
.fa-thermometer-full:before {
- content: "";
+ content: "\f2c7";
}
.fa-thermometer-half:before {
- content: "";
+ content: "\f2c9";
}
.fa-thermometer-quarter:before {
- content: "";
+ content: "\f2ca";
}
.fa-thermometer-three-quarters:before {
- content: "";
+ content: "\f2c8";
}
.fa-thumbs-down:before {
- content: "";
+ content: "\f165";
}
.fa-thumbs-up:before {
- content: "";
+ content: "\f164";
}
.fa-thumbtack:before {
- content: "";
+ content: "\f08d";
}
.fa-ticket-alt:before {
- content: "";
+ content: "\f3ff";
}
.fa-times:before {
- content: "";
+ content: "\f00d";
}
.fa-times-circle:before {
- content: "";
+ content: "\f057";
}
.fa-tint:before {
- content: "";
+ content: "\f043";
}
.fa-tint-slash:before {
- content: "";
+ content: "\f5c7";
}
.fa-tired:before {
- content: "";
+ content: "\f5c8";
}
.fa-toggle-off:before {
- content: "";
+ content: "\f204";
}
.fa-toggle-on:before {
- content: "";
+ content: "\f205";
}
.fa-toolbox:before {
- content: "";
+ content: "\f552";
}
.fa-tooth:before {
- content: "";
+ content: "\f5c9";
}
.fa-torah:before {
- content: "";
+ content: "\f6a0";
}
.fa-torii-gate:before {
- content: "";
+ content: "\f6a1";
}
.fa-trade-federation:before {
- content: "";
+ content: "\f513";
}
.fa-trademark:before {
- content: "";
+ content: "\f25c";
}
.fa-traffic-light:before {
- content: "";
+ content: "\f637";
}
.fa-train:before {
- content: "";
+ content: "\f238";
}
.fa-transgender:before {
- content: "";
+ content: "\f224";
}
.fa-transgender-alt:before {
- content: "";
+ content: "\f225";
}
.fa-trash:before {
- content: "";
+ content: "\f1f8";
}
.fa-trash-alt:before {
- content: "";
+ content: "\f2ed";
}
.fa-tree:before {
- content: "";
+ content: "\f1bb";
}
.fa-trello:before {
- content: "";
+ content: "\f181";
}
.fa-tripadvisor:before {
- content: "";
+ content: "\f262";
}
.fa-trophy:before {
- content: "";
+ content: "\f091";
}
.fa-truck:before {
- content: "";
+ content: "\f0d1";
}
.fa-truck-loading:before {
- content: "";
+ content: "\f4de";
}
.fa-truck-monster:before {
- content: "";
+ content: "\f63b";
}
.fa-truck-moving:before {
- content: "";
+ content: "\f4df";
}
.fa-truck-pickup:before {
- content: "";
+ content: "\f63c";
}
.fa-tshirt:before {
- content: "";
+ content: "\f553";
}
.fa-tty:before {
- content: "";
+ content: "\f1e4";
}
.fa-tumblr:before {
- content: "";
+ content: "\f173";
}
.fa-tumblr-square:before {
- content: "";
+ content: "\f174";
}
.fa-tv:before {
- content: "";
+ content: "\f26c";
}
.fa-twitch:before {
- content: "";
+ content: "\f1e8";
}
.fa-twitter:before {
- content: "";
+ content: "\f099";
}
.fa-twitter-square:before {
- content: "";
+ content: "\f081";
}
.fa-typo3:before {
- content: "";
+ content: "\f42b";
}
.fa-uber:before {
- content: "";
+ content: "\f402";
}
.fa-uikit:before {
- content: "";
+ content: "\f403";
}
.fa-umbrella:before {
- content: "";
+ content: "\f0e9";
}
.fa-umbrella-beach:before {
- content: "";
+ content: "\f5ca";
}
.fa-underline:before {
- content: "";
+ content: "\f0cd";
}
.fa-undo:before {
- content: "";
+ content: "\f0e2";
}
.fa-undo-alt:before {
- content: "";
+ content: "\f2ea";
}
.fa-uniregistry:before {
- content: "";
+ content: "\f404";
}
.fa-universal-access:before {
- content: "";
+ content: "\f29a";
}
.fa-university:before {
- content: "";
+ content: "\f19c";
}
.fa-unlink:before {
- content: "";
+ content: "\f127";
}
.fa-unlock:before {
- content: "";
+ content: "\f09c";
}
.fa-unlock-alt:before {
- content: "";
+ content: "\f13e";
}
.fa-untappd:before {
- content: "";
+ content: "\f405";
}
.fa-upload:before {
- content: "";
+ content: "\f093";
}
.fa-usb:before {
- content: "";
+ content: "\f287";
}
.fa-user:before {
- content: "";
+ content: "\f007";
}
.fa-user-alt:before {
- content: "";
+ content: "\f406";
}
.fa-user-alt-slash:before {
- content: "";
+ content: "\f4fa";
}
.fa-user-astronaut:before {
- content: "";
+ content: "\f4fb";
}
.fa-user-check:before {
- content: "";
+ content: "\f4fc";
}
.fa-user-circle:before {
- content: "";
+ content: "\f2bd";
}
.fa-user-clock:before {
- content: "";
+ content: "\f4fd";
}
.fa-user-cog:before {
- content: "";
+ content: "\f4fe";
}
.fa-user-edit:before {
- content: "";
+ content: "\f4ff";
}
.fa-user-friends:before {
- content: "";
+ content: "\f500";
}
.fa-user-graduate:before {
- content: "";
+ content: "\f501";
}
.fa-user-lock:before {
- content: "";
+ content: "\f502";
}
.fa-user-md:before {
- content: "";
+ content: "\f0f0";
}
.fa-user-minus:before {
- content: "";
+ content: "\f503";
}
.fa-user-ninja:before {
- content: "";
+ content: "\f504";
}
.fa-user-plus:before {
- content: "";
+ content: "\f234";
}
.fa-user-secret:before {
- content: "";
+ content: "\f21b";
}
.fa-user-shield:before {
- content: "";
+ content: "\f505";
}
.fa-user-slash:before {
- content: "";
+ content: "\f506";
}
.fa-user-tag:before {
- content: "";
+ content: "\f507";
}
.fa-user-tie:before {
- content: "";
+ content: "\f508";
}
.fa-user-times:before {
- content: "";
+ content: "\f235";
}
.fa-users:before {
- content: "";
+ content: "\f0c0";
}
.fa-users-cog:before {
- content: "";
+ content: "\f509";
}
.fa-ussunnah:before {
- content: "";
+ content: "\f407";
}
.fa-utensil-spoon:before {
- content: "";
+ content: "\f2e5";
}
.fa-utensils:before {
- content: "";
+ content: "\f2e7";
}
.fa-vaadin:before {
- content: "";
+ content: "\f408";
}
.fa-vector-square:before {
- content: "";
+ content: "\f5cb";
}
.fa-venus:before {
- content: "";
+ content: "\f221";
}
.fa-venus-double:before {
- content: "";
+ content: "\f226";
}
.fa-venus-mars:before {
- content: "";
+ content: "\f228";
}
.fa-viacoin:before {
- content: "";
+ content: "\f237";
}
.fa-viadeo:before {
- content: "";
+ content: "\f2a9";
}
.fa-viadeo-square:before {
- content: "";
+ content: "\f2aa";
}
.fa-vial:before {
- content: "";
+ content: "\f492";
}
.fa-vials:before {
- content: "";
+ content: "\f493";
}
.fa-viber:before {
- content: "";
+ content: "\f409";
}
.fa-video:before {
- content: "";
+ content: "\f03d";
}
.fa-video-slash:before {
- content: "";
+ content: "\f4e2";
}
.fa-vihara:before {
- content: "";
+ content: "\f6a7";
}
.fa-vimeo:before {
- content: "";
+ content: "\f40a";
}
.fa-vimeo-square:before {
- content: "";
+ content: "\f194";
}
.fa-vimeo-v:before {
- content: "";
+ content: "\f27d";
}
.fa-vine:before {
- content: "";
+ content: "\f1ca";
}
.fa-vk:before {
- content: "";
+ content: "\f189";
}
.fa-vnv:before {
- content: "";
+ content: "\f40b";
}
.fa-volleyball-ball:before {
- content: "";
+ content: "\f45f";
}
.fa-volume-down:before {
- content: "";
+ content: "\f027";
}
.fa-volume-off:before {
- content: "";
+ content: "\f026";
}
.fa-volume-up:before {
- content: "";
+ content: "\f028";
}
.fa-vuejs:before {
- content: "";
+ content: "\f41f";
}
.fa-walking:before {
- content: "";
+ content: "\f554";
}
.fa-wallet:before {
- content: "";
+ content: "\f555";
}
.fa-warehouse:before {
- content: "";
+ content: "\f494";
}
.fa-weebly:before {
- content: "";
+ content: "\f5cc";
}
.fa-weibo:before {
- content: "";
+ content: "\f18a";
}
.fa-weight:before {
- content: "";
+ content: "\f496";
}
.fa-weight-hanging:before {
- content: "";
+ content: "\f5cd";
}
.fa-weixin:before {
- content: "";
+ content: "\f1d7";
}
.fa-whatsapp:before {
- content: "";
+ content: "\f232";
}
.fa-whatsapp-square:before {
- content: "";
+ content: "\f40c";
}
.fa-wheelchair:before {
- content: "";
+ content: "\f193";
}
.fa-whmcs:before {
- content: "";
+ content: "\f40d";
}
.fa-wifi:before {
- content: "";
+ content: "\f1eb";
}
.fa-wikipedia-w:before {
- content: "";
+ content: "\f266";
}
.fa-window-close:before {
- content: "";
+ content: "\f410";
}
.fa-window-maximize:before {
- content: "";
+ content: "\f2d0";
}
.fa-window-minimize:before {
- content: "";
+ content: "\f2d1";
}
.fa-window-restore:before {
- content: "";
+ content: "\f2d2";
}
.fa-windows:before {
- content: "";
+ content: "\f17a";
}
.fa-wine-glass:before {
- content: "";
+ content: "\f4e3";
}
.fa-wine-glass-alt:before {
- content: "";
+ content: "\f5ce";
}
.fa-wix:before {
- content: "";
+ content: "\f5cf";
}
.fa-wolf-pack-battalion:before {
- content: "";
+ content: "\f514";
}
.fa-won-sign:before {
- content: "";
+ content: "\f159";
}
.fa-wordpress:before {
- content: "";
+ content: "\f19a";
}
.fa-wordpress-simple:before {
- content: "";
+ content: "\f411";
}
.fa-wpbeginner:before {
- content: "";
+ content: "\f297";
}
.fa-wpexplorer:before {
- content: "";
+ content: "\f2de";
}
.fa-wpforms:before {
- content: "";
+ content: "\f298";
}
.fa-wrench:before {
- content: "";
+ content: "\f0ad";
}
.fa-x-ray:before {
- content: "";
+ content: "\f497";
}
.fa-xbox:before {
- content: "";
+ content: "\f412";
}
.fa-xing:before {
- content: "";
+ content: "\f168";
}
.fa-xing-square:before {
- content: "";
+ content: "\f169";
}
.fa-y-combinator:before {
- content: "";
+ content: "\f23b";
}
.fa-yahoo:before {
- content: "";
+ content: "\f19e";
}
.fa-yandex:before {
- content: "";
+ content: "\f413";
}
.fa-yandex-international:before {
- content: "";
+ content: "\f414";
}
.fa-yelp:before {
- content: "";
+ content: "\f1e9";
}
.fa-yen-sign:before {
- content: "";
+ content: "\f157";
}
.fa-yin-yang:before {
- content: "";
+ content: "\f6ad";
}
.fa-yoast:before {
- content: "";
+ content: "\f2b1";
}
.fa-youtube:before {
- content: "";
+ content: "\f167";
}
.fa-youtube-square:before {
- content: "";
+ content: "\f431";
}
.fa-zhihu:before {
- content: "";
+ content: "\f63f";
}
.sr-only {
@@ -5353,22 +5353,22 @@ and open the template in the editor.
color: #E5E5E5;
}
.enka-custom-radio.star::before {
- content: "";
+ content: "\f005";
}
.enka-custom-radio.thumb::before {
- content: "";
+ content: "\f164";
}
.enka-custom-radio.smiley::before {
- content: "";
+ content: "\f118";
}
.enka-custom-radio.heart::before {
- content: "";
+ content: "\f004";
}
.enka-custom-radio.flag::before {
- content: "";
+ content: "\f024";
}
.enka-custom-radio.user::before {
- content: "";
+ content: "\f007";
}
/* visual analog scale - radio buttons */
@@ -5379,25 +5379,25 @@ and open the template in the editor.
color: #E5E5E5;
}
.enka-vizualna-skala.siv-61::before, .enka-vizualna-skala.siv-71::before {
- content: "";
+ content: "\f5b4";
}
.enka-vizualna-skala.siv-41::before, .enka-vizualna-skala.siv-51::before, .enka-vizualna-skala.siv-62::before, .enka-vizualna-skala.siv-72::before {
- content: "";
+ content: "\f57a";
}
.enka-vizualna-skala.siv-21::before, .enka-vizualna-skala.siv-31::before, .enka-vizualna-skala.siv-42::before, .enka-vizualna-skala.siv-52::before, .enka-vizualna-skala.siv-63::before, .enka-vizualna-skala.siv-73::before {
- content: "";
+ content: "\f119";
}
.enka-vizualna-skala.siv-32::before, .enka-vizualna-skala.siv-53::before, .enka-vizualna-skala.siv-74::before {
- content: "";
+ content: "\f11a";
}
.enka-vizualna-skala.siv-22::before, .enka-vizualna-skala.siv-33::before, .enka-vizualna-skala.siv-43::before, .enka-vizualna-skala.siv-54::before, .enka-vizualna-skala.siv-64::before, .enka-vizualna-skala.siv-75::before {
- content: "";
+ content: "\f118";
}
.enka-vizualna-skala.siv-44::before, .enka-vizualna-skala.siv-55::before, .enka-vizualna-skala.siv-65::before, .enka-vizualna-skala.siv-76::before {
- content: "";
+ content: "\f580";
}
.enka-vizualna-skala.siv-66::before, .enka-vizualna-skala.siv-77::before {
- content: "";
+ content: "\f59c";
}
/*
@@ -5411,88 +5411,88 @@ and open the template in the editor.
*/
/* icons */
span.faicon.plus::before {
- content: "";
+ content: "\f067";
}
span.faicon.minus::before {
- content: "";
+ content: "\f068";
}
span.faicon.success::before,
span.circle-check::before {
- content: "";
+ content: "\f058";
}
span.faicon.close::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f057";
}
span.faicon.dropdown_blue::before {
font-size: 16px;
- content: "";
+ content: "\f13a";
}
span.faicon.dropup_blue::before {
font-size: 16px;
- content: "";
+ content: "\f139";
}
span.faicon.arrow_back::before {
font-weight: 600;
font-size: 16px;
- content: "";
+ content: "\f137";
}
span.faicon.add::before {
font-size: 18px;
- content: "";
+ content: "\f055";
}
span.faicon.remove::before {
font-size: 18px;
- content: "";
+ content: "\f056";
}
span.faicon.delete::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f2ed";
}
span.faicon.anketa_delete::before {
font-size: 24px;
font-weight: 400;
- content: "";
+ content: "\f2ed";
}
span.faicon.copy::before {
font-size: 18px;
- content: "";
+ content: "\f0c5";
font-weight: 400;
}
span.faicon.anketa_copy::before {
font-size: 24px;
- content: "";
+ content: "\f0c5";
font-weight: 400;
}
span.faicon.export::before {
font-size: 24px;
- content: "";
+ content: "\f56e";
}
span.faicon.file-import::before {
- content: "";
+ content: "\f56f";
transform: scaleX(-1);
}
span.faicon.import::before {
font-size: 24px;
font-weight: 400;
- content: "";
+ content: "\f1c2";
}
/*span.faicon.import::after{
@@ -5502,137 +5502,137 @@ span.faicon.import::before {
}*/
span.faicon.library::before {
font-size: 24px;
- content: "";
+ content: "\f518";
}
span.faicon.folder::before {
font-size: 16px;
font-weight: 600;
- content: "";
+ content: "\f07b";
}
span.faicon.folder_empty::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f07b";
}
span.faicon.after.sort_down_arrow::after {
- content: "";
+ content: "\f0d7";
margin-left: 5px;
}
span.faicon.after.sort_up_arrow::after {
- content: "";
+ content: "\f0d8";
margin-left: 5px;
}
span.faicon.info::before {
font-size: 28px;
- content: "";
+ content: "\f05a";
vertical-align: middle;
}
span.faicon.pagination_left::before {
margin: 0 1px 0 1px;
- content: "";
+ content: "\f104";
}
span.faicon.pagination_right::before {
margin: 0 0 0 1px;
- content: "";
+ content: "\f105";
}
span.faicon.edit::before,
span.faicon.edit2::before {
- content: "";
+ content: "\f304";
}
span.faicon.refresh::before {
font-size: 18px;
- content: "";
+ content: "\f2f1";
}
span.faicon.filter::before {
font-size: 18px;
- content: "";
+ content: "\f0b0";
}
span.faicon.grip::before {
- content: "";
+ content: "\f58e";
}
span.faicon.star::before,
span.faicon.star_off::before {
font-size: 14px;
font-weight: 400;
- content: "";
+ content: "\f005";
}
span.faicon.star_on::before {
font-size: 14px;
font-weight: 700;
- content: "";
+ content: "\f005";
}
span.faicon.search::before {
font-size: 20px;
- content: "";
+ content: "\f002";
}
span.faicon.clipboard_notes::before {
font-size: 20px;
- content: "";
+ content: "\f46d";
}
span.faicon.help2::before {
font-size: 20px;
- content: "";
+ content: "\f059";
}
span.faicon.user::before {
font-size: 18px;
- content: "";
+ content: "\f007";
}
span.faicon.logout::before {
font-size: 20px;
- content: "";
+ content: "\f2f5";
}
.faicon.monitor::before {
- content: "";
+ content: "\f108";
}
.faicon.mobile::before {
- content: "";
+ content: "\f3cd";
}
.faicon.tablet::before {
- content: "";
+ content: "\f3fa";
}
span.faicon.users::before {
- content: "";
+ content: "\f500";
}
span.faicon.lock_open::before {
- content: "";
+ content: "\f3c1";
}
span.faicon.lock_close::before {
- content: "";
+ content: "\f023";
}
span.faicon.bottom_saving::before {
font-size: 24px;
font-weight: 400;
- content: "";
+ content: "\f0c7";
}
span.faicon.bottom_publish::before {
font-size: 24px;
- content: "";
+ content: "\f093";
}
span.faicon.bottom_preview {
@@ -5642,63 +5642,63 @@ span.faicon.bottom_preview {
span.faicon.bottom_preview::before {
font-size: 24px;
font-weight: 400;
- content: "";
+ content: "\f15b";
}
span.faicon.bottom_preview::after {
font-size: 14px;
- content: "";
+ content: "\f002";
display: inline-block;
margin-left: -70%;
}
span.faicon.bottom_test::before {
font-size: 24px;
- content: "";
+ content: "\f492";
}
span.faicon.language::before {
font-size: 24px;
- content: "";
+ content: "\f0ac";
}
span.faicon.mobile_off::before {
font-size: 24px;
- content: "";
+ content: "\f3cd";
}
span.faicon.mobile_off::after {
font-size: 24px;
- content: "";
+ content: "\f715";
margin-left: -23px;
}
span.faicon.comments::before {
- content: "";
+ content: "\f27a";
font-weight: 700;
}
span.faicon.comments_empty::before {
- content: "";
+ content: "\f27a";
font-weight: 400;
}
span.faicon.data_link::before {
- content: "";
+ content: "\f0c1";
}
span.faicon.data_link_small::before {
- content: "";
+ content: "\f0c1";
}
span.faicon.print::before {
font-size: 24px;
- content: "";
+ content: "\f02f";
}
span.faicon.print_small::before {
font-size: 16px;
- content: "";
+ content: "\f02f";
}
span.faicon.preview {
@@ -5708,11 +5708,11 @@ span.faicon.preview {
span.faicon.preview::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f15b";
}
span.faicon.preview::after {
- content: "";
+ content: "\f002";
display: inline-block;
font-size: 11px;
margin-left: -50%;
@@ -5720,87 +5720,87 @@ span.faicon.preview::after {
span.faicon.palette::before {
font-size: 18px;
- content: "";
+ content: "\f53f";
}
span.faicon.inline_comment::before {
font-size: 14px;
font-weight: 400;
- content: "";
+ content: "\f075";
}
span.faicon.inline_double_comment::before {
font-size: 14px;
font-weight: 400;
- content: "";
+ content: "\f086";
}
span.faicon.comments_creport::before {
font-size: 16px;
- content: "";
+ content: "\f086";
}
span.faicon.compress::before {
font-size: 15px;
- content: "";
+ content: "\f066";
}
span.faicon.expand::before {
font-size: 15px;
- content: "";
+ content: "\f065";
}
span.faicon.hashtag::before {
font-size: 15px;
- content: "";
+ content: "\f292";
}
span.faicon.bug::before {
font-size: 15px;
- content: "";
+ content: "\f188";
}
span.faicon.paragraph::before {
font-size: 15px;
- content: "";
+ content: "\f1dd";
}
span.faicon.replace::before {
font-size: 15px;
- content: "";
+ content: "\f362";
}
span.faicon.plus_square::before {
font-size: 15px;
font-weight: 400;
- content: "";
+ content: "\f0fe";
}
span.faicon.minus_square::before {
font-size: 15px;
font-weight: 400;
- content: "";
+ content: "\f146";
}
span.faicon.delete_circle::before {
font-size: 14px;
- content: "";
+ content: "\f056";
}
span.faicon.quick_view::before {
font-size: 15px;
font-weight: 400;
- content: "";
+ content: "\f06e";
}
span.faicon.edit_square::before {
font-size: 15px;
- content: "";
+ content: "\f044";
}
span.faicon.test::before {
font-size: 15px;
- content: "";
+ content: "\f492";
}
a.faicon.if_add {
@@ -5836,7 +5836,7 @@ span.faicon.if_add:hover:before {
}
span.faicon.text_file::before {
- content: "";
+ content: "\f15c";
}
span.faicon.text_file_small {
@@ -5846,40 +5846,40 @@ span.faicon.text_file_small {
span.faicon.text_file_small:before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f15c";
}
span.faicon.warning::before {
font-size: 16px;
- content: "";
+ content: "\f071";
}
span.faicon.users_small::before {
font-size: 16px;
- content: "";
+ content: "\f0c0";
}
span.faicon.popup_0::before {
font-size: 14px;
- content: "";
+ content: "\f065";
color: #1E88E5;
}
span.faicon.popup_1::before {
font-size: 14px;
- content: "";
+ content: "\f065";
color: #0059ab;
}
span.faicon.flat_0::before {
font-size: 14px;
- content: "";
+ content: "\f03c";
color: #0059ab;
}
span.faicon.flat_1::before {
font-size: 14px;
- content: "";
+ content: "\f03c";
color: #1E88E5;
}
@@ -5894,46 +5894,46 @@ span.basic-icon.spss::before {
span.faicon.external_link::before {
font-size: 14px;
font-weight: 600;
- content: "";
+ content: "\f35d";
}
span.faicon.cog_large::before {
font-size: 34px;
font-weight: 600;
- content: "";
+ content: "\f013";
}
span.faicon.chart_large::before {
font-size: 34px;
font-weight: 600;
- content: "";
+ content: "\f201";
}
span.faicon.reload_large::before {
font-size: 34px;
font-weight: 600;
- content: "";
+ content: "\f021";
}
span.faicon.chart::before {
- content: "";
+ content: "\f080";
font-size: 16px;
font-weight: 600;
}
span.faicon.data::before {
- content: "";
+ content: "\f1c0";
font-size: 16px;
font-weight: 600;
}
span.faicon.publish::before {
- content: "";
+ content: "\f093";
font-size: 16px;
}
span.faicon.test::before {
- content: "";
+ content: "\f492";
font-size: 16px;
}
@@ -5943,63 +5943,63 @@ button.ui-datepicker-trigger::before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 16px;
- content: "";
+ content: "\f073";
}
/* ARROWS */
span.faicon.arrow_up::before {
font-size: 14px;
- content: "";
+ content: "\f062";
}
span.faicon.arrow2_r::before {
font-size: 14px;
- content: "";
+ content: "\f054";
}
span.faicon.arrow2_l::before {
font-size: 14px;
- content: "";
+ content: "\f053";
}
span.faicon.arrow2_d::before {
font-size: 14px;
- content: "";
+ content: "\f078";
}
span.faicon.arrow2_u::before {
font-size: 14px;
- content: "";
+ content: "\f077";
}
span.faicon.arrow_large2_r::before {
font-size: 35px;
- content: "";
+ content: "\f054";
}
span.faicon.arrow_large2_l::before {
font-size: 35px;
- content: "";
+ content: "\f053";
}
span.faicon.arrow_verylarge2_r::before {
font-size: 40px;
- content: "";
+ content: "\f054";
}
span.faicon.arrow_verylarge2_l::before {
font-size: 40px;
- content: "";
+ content: "\f053";
}
span.faicon.sort_descending::before {
font-size: 14px;
- content: "";
+ content: "\f0d7";
}
span.faicon.sort_ascending::before {
font-size: 14px;
- content: "";
+ content: "\f0d8";
}
/* Plus/minus sqare */
@@ -6011,127 +6011,127 @@ span.folder_plusminus {
span.faicon.plus_orange::before {
font-size: 12px;
font-weight: 400;
- content: "";
+ content: "\f0fe";
}
span.faicon.minus_orange::before {
font-size: 12px;
font-weight: 400;
- content: "";
+ content: "\f146";
}
/* Spinner */
span.faicon.spinner::before {
font-size: 18px;
- content: "";
+ content: "\f1ce";
}
/* Bars - mobile menu */
span.faicon.bars::before {
font-size: 26px;
- content: "";
+ content: "\f0c9";
}
span.faicon.lock_open::before {
- content: "";
+ content: "\f3c1";
}
span.faicon.lock_close::before {
- content: "";
+ content: "\f023";
}
span.faicon.bell::before {
- content: "";
+ content: "\f0f3";
}
span.faicon.bell_slash::before {
- content: "";
+ content: "\f1f6";
}
span.faicon.trash::before {
- content: "";
+ content: "\f2ed";
}
span.faicon.copy::before {
- content: "";
+ content: "\f0c5";
}
span.faicon.circle::before {
- content: "";
+ content: "\f111";
vertical-align: middle;
}
span.faicon.plus::before {
- content: "";
+ content: "\f067";
}
span.faicon.plus_circle::before {
- content: "";
+ content: "\f055";
}
span.faicon.minus_circle::before {
- content: "";
+ content: "\f056";
}
span.faicon.calendar_icon::before {
- content: "";
+ content: "\f073";
}
span.faicon.clipboard::before {
- content: "";
+ content: "\f328";
}
span.faicon.list-alt::before {
- content: "";
+ content: "\f022";
}
span.faicon.vote-yes::before {
- content: "";
+ content: "\f772";
}
span.faicon.file-preview::before {
- content: "";
+ content: "\f865";
}
span.faicon.dots::before {
- content: "";
+ content: "\f141";
font-size: 16px;
font-weight: 600;
}
span.faicon.dots_ver:before {
- content: "";
+ content: "\f142";
font-size: 16px;
font-weight: 600;
}
span.faicon.open_icon::before,
a.faicon.open_icon::before {
- content: "";
+ content: "\f35d";
}
span.faicon.table_icon::before {
- content: "";
+ content: "\f0ce";
}
span.faicon.list::before {
- content: "";
+ content: "\f03a";
}
span.faicon.link-chain::before {
- content: "";
+ content: "\f0c1";
}
span.fa-brands.html5::before {
- content: "";
+ content: "\f13b";
}
span.faicon.stopwatch20::before {
- content: "";
+ content: "\e06f";
}
span.faicon.checkbox-empty::before {
- content: "";
+ content: "\f0c8";
font-weight: 400 !important;
}
@@ -6140,11 +6140,11 @@ span.faicon.fa-1::before {
}
span.faicon.phone::before {
- content: "";
+ content: "\f095";
}
span.faicon.screwdriver::before {
- content: "";
+ content: "\f7d9";
font-weight: 600 !important;
}
@@ -6282,23 +6282,23 @@ and open the template in the editor.
*/
/* Toolbox na levi strani */
span.faicon.wheel_32::before {
- content: "";
+ content: "\f013";
}
span.faicon.radio_32::before {
- content: "";
+ content: "\f192";
font-weight: 400;
font-size: 18px;
}
span.faicon.check_32::before {
- content: "";
+ content: "\f14a";
font-weight: 400;
font-size: 18px;
}
span.faicon.matrix_32::before {
- content: "\a";
+ content: "\f192\f192\a\f192\f192";
white-space: pre;
font-weight: 400;
font-size: 12px;
@@ -6322,7 +6322,7 @@ span.faicon.nagovor::before {
}
span.faicon.plus_32::before {
- content: "";
+ content: "\f055";
font-size: 18px;
}
@@ -6366,12 +6366,12 @@ span.faicon.edit-vprasanje {
}
span.faicon.edit-vprasanje:before {
font-size: 18px;
- content: "";
+ content: "\f031";
}
a.faicon.edit::before {
font-size: 16px;
- content: "";
+ content: "\f304";
}
a.faicon.addif::before {
@@ -6383,22 +6383,22 @@ a.faicon.addif::before {
a.faicon.copy::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f0c5";
}
a.faicon.copycond::before {
font-size: 18px;
- content: "";
+ content: "\f0c5";
}
a.faicon.preview::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f15b";
}
a.faicon.preview::after {
- content: "";
+ content: "\f002";
display: inline-block;
font-size: 11px;
margin-left: -50%;
@@ -6406,25 +6406,25 @@ a.faicon.preview::after {
a.faicon.arhiv::before {
font-size: 18px;
- content: "";
+ content: "\f044";
}
a.faicon.delete::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f2ed";
}
a.faicon.hide::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f06e";
}
a.faicon.unhide_icon::before {
font-size: 18px;
font-weight: 400;
- content: "";
+ content: "\f070";
}
/* Urejanje vrednosti inline */
@@ -6438,12 +6438,12 @@ a.faicon.unhide_icon::before {
.variabla span.inline.faicon.edit2::before {
font-size: 14px;
- content: "";
+ content: "\f304";
}
.variabla span.inline.faicon.odg_hidden::before {
font-size: 14px;
- content: "";
+ content: "\f05e";
}
.variabla span.inline.faicon.odg_hidden.show-hidden::before {
@@ -6471,23 +6471,23 @@ span.inline.faicon.odg_if_not::before {
.variabla span.inline.faicon.odg_if_follow::after {
font-size: 14px;
margin-left: 2px;
- content: "";
+ content: "\f0da";
}
.variabla span.inline.faicon.correct::before {
font-size: 14px;
font-weight: 900;
- content: "";
+ content: "\f00c";
}
.faicon.move_updown::before {
font-size: 16px;
color: #0059ab;
- content: "";
+ content: "\f338";
}
.faicon.image_upload::before {
- content: "";
+ content: "\f03e";
font-weight: 400;
}
@@ -6504,22 +6504,22 @@ and open the template in the editor.
span.faicon.mapca.anketa::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f022";
}
span.faicon.table::before {
font-size: 16px;
- content: "";
+ content: "\f00b";
}
span.faicon.other_vprasanja::before {
font-size: 16px;
- content: "" !important;
+ content: "\f0ca" !important;
}
span.faicon.osnovna_vprasanja::before {
font-size: 16px;
- content: "";
+ content: "\f0ca";
}
span.faicon.mapca.if::before {
@@ -6547,7 +6547,7 @@ and open the template in the editor.
*/
/* Izvozi */
span.faicon.pdf::before {
- content: "";
+ content: "\f1c1";
font-size: 16px;
font-weight: 400;
color: #ed1c24;
@@ -6571,7 +6571,7 @@ span.faicon.pdf.black::before {
span.faicon.xls::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f1c3";
color: #008000;
}
@@ -6593,7 +6593,7 @@ span.faicon.xls.black::before {
span.faicon.rtf::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f1c2";
color: #0f3ea8;
}
@@ -6615,7 +6615,7 @@ span.faicon.rtf.black::before {
span.faicon.ppt::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f1c4";
color: #fa4913;
}
@@ -6637,7 +6637,7 @@ span.faicon.ppt.black::before {
span.faicon.xml::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f1c9";
color: #00a000;
}
@@ -6657,17 +6657,17 @@ span.faicon.xml.black::before {
}
span.faicon.arhiv::before {
- content: "";
+ content: "\f187";
}
span.faicon.arhiv_mail::before {
font-size: 16px;
font-weight: 400;
- content: "";
+ content: "\f14d";
}
span.faicon.share-arrow::before {
- content: "";
+ content: "\f14d";
}
/*
@@ -6717,7 +6717,7 @@ span.faicon.an_chart_bar::before {
font-size: 14px;
font-weight: 700;
/*content: "\f080";*/
- content: "";
+ content: "\f200";
}
/*
@@ -6731,35 +6731,35 @@ and open the template in the editor.
*/
/* Invitation table */
span.faicon.inv_sent_0::before {
- content: "";
+ content: "\f2b6";
}
span.faicon.inv_sent_1::before {
- content: "";
+ content: "\f0e0";
}
span.faicon.inv_responded_0::before {
font-size: 14px;
font-weight: 400;
- content: "";
+ content: "\f005";
}
span.faicon.inv_responded_1::before {
font-size: 14px;
font-weight: 700;
- content: "";
+ content: "\f005";
}
span.faicon.inv_unsubscribed_0::before {
font-size: 14px;
font-weight: 400;
- content: "";
+ content: "\f111";
}
span.faicon.inv_unsubscribed_1::before {
font-size: 14px;
font-weight: 700;
- content: "";
+ content: "\f111";
color: #FF0000;
}
@@ -6860,7 +6860,7 @@ a.read-more .faicon:before {
.qtip .qtip-wrapper .qtip-contentWrapper .qtip-content h1::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f059";
font-size: 20px;
color: #1E88E5;
vertical-align: -1px;
@@ -6897,7 +6897,7 @@ a.read-more .faicon:before {
padding-left: 8px;
vertical-align: middle;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f054";
font-size: 8px;
color: #1E88E5;
transition: 0.2s;
@@ -7220,7 +7220,7 @@ a.read-more .faicon:before {
.divPopUp.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -7261,7 +7261,7 @@ a.read-more .faicon:before {
.divPopUp_info.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -7753,7 +7753,7 @@ body.waitlong #loading {
#check_pogoji.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -7934,7 +7934,7 @@ body.waitlong #loading {
#dropped_alert.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -9175,7 +9175,7 @@ header #topSettingsHolder .left_options_holder #analizaSubNav #globalSetingsLink
right: 8px;
top: 5px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f078";
font-size: 10px;
font-weight: 600;
}
@@ -9448,7 +9448,7 @@ footer#srv_footer .footer_right span.faicon.external_link:before {
footer#srv_footer .footer_right .right_help_button {
position: fixed;
right: -71px;
- top: calc(50%);
+ top: 50%;
width: 150px;
padding: 4px 8px;
border: 1px #1E88E5 solid;
@@ -9828,17 +9828,17 @@ input[type=radio]:checked + label:before, input[type=checkbox]:checked + label:b
color: #1E88E5;
}
input[type=checkbox] + label:before {
- content: "";
+ content: "\f0c8";
}
input[type=checkbox]:checked + label:before {
- content: "";
+ content: "\f14a";
font-weight: bold;
}
input[type=radio] + label:before {
- content: "";
+ content: "\f111";
}
input[type=radio]:checked + label:before {
- content: "";
+ content: "\f192";
}
input[type=checkbox][disabled] + label:before {
color: #C4C4C4;
@@ -10336,7 +10336,7 @@ header #top_line #enka_nav .anketa_header_upgrade_package button {
#popup_user_access.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -10623,7 +10623,7 @@ header #top_line #enka_nav .anketa_header_upgrade_package button {
#survey_list .second_line .filters #folderSwitch#sortButton:after {
position: absolute;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f078";
right: 8px;
top: 13px;
font-weight: 600;
@@ -10969,13 +10969,13 @@ body.eng #survey_list .filters #folderSwitch {
cursor: pointer;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_arrow_icon::before {
- content: "";
+ content: "\f078";
font-size: 14px;
color: #333333;
margin-right: 8px;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title .folder_icon::before {
- content: "";
+ content: "\f07b";
font-size: 16px;
font-weight: 400;
color: #1E88E5;
@@ -10985,7 +10985,7 @@ body.eng #survey_list .filters #folderSwitch {
background-color: #F8F8F8;
}
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_arrow_icon::before {
- content: "";
+ content: "\f077";
}
#survey_list .div_sl_new.folders .folder_holder .folder_title.open .folder_icon::before {
font-weight: 600;
@@ -12080,13 +12080,13 @@ div.page_obvestila #unread_notifications .gdpr_popup_radio input {
cursor: pointer;
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder_arrow_icon::before {
- content: "";
+ content: "\f078";
font-size: 14px;
color: #333333;
margin-right: 8px;
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box .folder::before {
- content: "";
+ content: "\f07b";
font-size: 16px;
font-weight: 400;
color: #1E88E5;
@@ -12112,7 +12112,7 @@ div.page_obvestila #unread_notifications .gdpr_popup_radio input {
}*/
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder_arrow_icon::before {
- content: "";
+ content: "\f077";
}
#anketa_knjiznica #libraryInner ul li .folder_box_holder .folder_box.open .folder::before {
font-weight: 600;
@@ -12365,7 +12365,7 @@ and open the template in the editor.
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f111";
letter-spacing: 10px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio] + span.enka-custom-radio:before {
@@ -12373,7 +12373,7 @@ and open the template in the editor.
display: inline-block;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] {
display: none !important;
@@ -12386,11 +12386,11 @@ and open the template in the editor.
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
letter-spacing: 8px;
}
#new_anketa_div .layout_right_item .layout_right_centering .fieldset .setting .custom_radio_picture.obarvan > label > span.enka-custom-radio:before {
@@ -12683,7 +12683,7 @@ and open the template in the editor.
}
#new_anketa_div .layout_right_item .layout_right_centering .anketa_from_text .from_text_sidebyside_holder #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f111";
display: inline-block;
font-size: 14px;
color: #C4C4C4;
@@ -13295,20 +13295,20 @@ div.drop_setting_transition {
font-weight: 400;
}
#branching input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
#branching input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f111";
letter-spacing: 8px;
}
#branching input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
color: #D3D3D3;
letter-spacing: 8px;
}
#branching input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
color: #D3D3D3;
}
#branching span.faicon.delete_circle::before {
@@ -19930,7 +19930,7 @@ and open the template in the editor.
transition: 0.2s;
}
.tab_content .content_left ul li.folder_item .faicon.arrow:before {
- content: "";
+ content: "\f078";
}
.tab_content .content_left ul li.folder_item .faicon.folder:before,
.tab_content .content_left ul li.folder_item .faicon.clipboard:before {
@@ -19947,7 +19947,7 @@ and open the template in the editor.
color: #1E88E5;
}
.tab_content .content_left ul li.folder_item.open .faicon.arrow:before {
- content: "";
+ content: "\f077";
}
.tab_content .content_left ul li.folder_item.no_arrow .faicon.arrow:before {
display: none;
@@ -20438,7 +20438,7 @@ img.mapster_el {
border-radius: 4px;
}
.jquery-selectbox .jquery-selectbox-moreButton::before {
- content: "";
+ content: "\f078";
padding-left: 2px;
color: #333333;
font-size: 10px;
@@ -21162,7 +21162,7 @@ div#theme-edit-wrap div#theme-editor #picker .button_holder button:last-child {
div#theme-edit-wrap div#theme-editor #picker.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -21521,7 +21521,7 @@ span.faicon.st-besede-popup {
#vrednost_edit.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -21762,7 +21762,7 @@ span.faicon.st-besede-popup {
#quota.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -22089,7 +22089,7 @@ and open the template in the editor.
#preview_spremenljivka.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -22710,22 +22710,22 @@ and open the template in the editor.
}
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
/*content: "\f096";*/
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
/*content: "\f10c";*/
- content: "";
+ content: "\f111";
letter-spacing: 8px;
}
#preview_spremenljivka #variable_holder input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
/*content: "\f046";*/
- content: "";
+ content: "\f14a";
letter-spacing: 8px;
}
#preview_spremenljivka #variable_holder input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
/*content: "\f192";*/
- content: "";
+ content: "\f192";
}
#preview_spremenljivka input[type=radio] {
margin: 0 8px 4px 0;
@@ -22738,7 +22738,7 @@ and open the template in the editor.
#preview_spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f111";
letter-spacing: 10px;
}
#preview_spremenljivka input[type=radio] + span.enka-custom-radio:before {
@@ -22746,7 +22746,7 @@ and open the template in the editor.
display: inline-block;
}
#preview_spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
}
#preview_spremenljivka input[type=checkbox] {
display: none !important;
@@ -22759,11 +22759,11 @@ and open the template in the editor.
#preview_spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
#preview_spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
letter-spacing: 8px;
}
@@ -22848,7 +22848,7 @@ and open the template in the editor.
}
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f111";
display: inline-block;
font-size: 14px;
color: #E5E5E5;
@@ -22856,7 +22856,7 @@ and open the template in the editor.
font-weight: 400;
}
#popup_import_from_text .anketa_from_text .import_holder #preview_field_holder #preview_field span.variable input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
color: #E5E5E5;
}
@@ -23119,7 +23119,7 @@ dl.arch_email dd {
#inv_view_arch_recipients.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -24113,23 +24113,23 @@ div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admi
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f111";
letter-spacing: 8px;
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
color: #D3D3D3;
letter-spacing: 8px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio].enka-admin-custom:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
color: #D3D3D3;
}
div.page_komentarji ul .spremenljivka_content input[type=radio],
@@ -24146,7 +24146,7 @@ div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-chec
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f111";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=radio] + span.enka-custom-radio:before,
@@ -24156,7 +24156,7 @@ div.page_komentarji_anketa ul .spremenljivka_content input[type=radio] + span.en
}
div.page_komentarji ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox],
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] {
@@ -24172,12 +24172,12 @@ div.page_komentarji ul .spremenljivka_content input[type=checkbox] + span.enka-c
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox] + span.enka-checkbox-radio:before {
font-family: "Font Awesome 5 Free";
display: inline-block;
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
div.page_komentarji ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before,
div.page_komentarji_anketa ul .spremenljivka_content input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
letter-spacing: 8px;
}
div.page_komentarji ul div.question_comment_holder,
@@ -24607,12 +24607,6 @@ div#vabila div.more div.more_block div.more_title a.help {
text-decoration: none;
margin-left: 5px;
}
-div#vabila div.more div.more_block:first-of-type .more_title {
- color: #FFC700;
-}
-div#vabila div.more div.more_block:first-of-type span.faicon.empty {
- color: #FFC700;
-}
div#general_popup div.popup_content.publish {
max-width: 600px;
@@ -26147,7 +26141,7 @@ div.subpage_coding .coding-refresh .button_holder button:last-child {
div.subpage_coding .coding-refresh.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -26329,7 +26323,7 @@ div.subpage_coding #coding .button_holder button:last-child {
div.subpage_coding #coding.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -26653,7 +26647,7 @@ div.subpage_coding .floatRecodeSpremenljivka .button_holder button:last-child {
div.subpage_coding .floatRecodeSpremenljivka.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -27004,18 +26998,18 @@ ul#merge li {
-webkit-text-stroke: 0.35px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f0c8";
letter-spacing: 10px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f14a";
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f111";
letter-spacing: 10px;
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio]:checked + span.enka-checkbox-radio:before {
- content: "";
+ content: "\f192";
}
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=checkbox] + span.enka-checkbox-radio,
.quick_edit_container #edit_survey_data .quick_edit_inner .spremenljivka input[type=radio] + span.enka-checkbox-radio,
@@ -27514,7 +27508,7 @@ and open the template in the editor.
#div_export_setting_show.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -29051,15 +29045,15 @@ iframe#ifmcontentstoprint {
}
.rsdl_bck1 {
- background-color: #fae2e2 !important;
+ background-color: rgb(250, 226, 226) !important;
}
.rsdl_bck2 {
- background-color: #ff9d9d !important;
+ background-color: rgb(255, 157, 157) !important;
}
.rsdl_bck3 {
- background-color: #f84242 !important;
+ background-color: rgb(248, 66, 66) !important;
}
.rsdl_bck4 {
@@ -30572,7 +30566,7 @@ ul.vrednost_sort input[type=text] {
.subpage_analysis_creport #anketa_custom_report #newCReportProfile.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -30856,7 +30850,7 @@ and open the template in the editor.
#dsp_inspect_cover.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -31390,7 +31384,7 @@ input#endDate {
.mc_table_settings.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -31603,7 +31597,7 @@ input#endDate {
#newMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -31792,7 +31786,7 @@ input#endDate {
#renameMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -31981,7 +31975,7 @@ input#endDate {
#deleteMCTable.warning_popup h2::before {
padding-right: 8px;
font-family: "Font Awesome 5 Free";
- content: "";
+ content: "\f071";
font-size: 14px;
color: #FFC700;
}
@@ -32367,7 +32361,7 @@ button.buttons-columnVisibility.active {
table.usersTable {
margin-left: 14px;
margin-right: 14px;
- width: calc(100% - 2*14px);
+ width: calc(100% - 28px);
white-space: nowrap;
border-collapse: collapse !important;
}
@@ -32488,24 +32482,19 @@ table.dataTable td:not(:first-of-type), table.dataTable th:not(:first-of-type) {
#quick_comments_link.newCss {
display: none;
}
-
#firstNavigation ol.right-side {
display: none;
}
-
div.status_advanced {
flex-direction: column;
}
-
div.status_advanced_box {
width: 100%;
box-sizing: border-box;
}
-
a.status_advanced_link {
width: 95%;
}
-
.content_div_normalmode {
overflow-x: auto;
}
@@ -32573,7 +32562,6 @@ body #main_holder #main .wide {
width: 100%;
margin: 0;
}
-
fieldset {
width: 100% !important;
box-sizing: border-box !important;
@@ -32603,44 +32591,36 @@ fieldset textarea {
fieldset .setting {
height: auto !important;
}
-
.setting_horizontal_wrapper {
flex-direction: column !important;
}
-
#vnosi_paginacija div select {
display: inline-block;
width: fit-content;
margin: 0 5px;
text-align: center;
}
-
div.breadcrumbs {
display: block;
padding: 15px;
color: #1e88e5;
font-weight: 600;
}
-
button.small, submit.small {
min-width: auto;
padding: 5px 16px;
}
-
button.medium, submit.medium {
min-width: auto;
padding: 10px 24px;
}
-
button.large, submit.large {
min-width: auto;
padding: 12px 32px;
}
-
.top_note {
padding: 8px 16px;
}
-
header {
/* Mobile meni */
/* Mobile meni - NASTAVITVE V UREJANJU ANKETE*/
@@ -32896,7 +32876,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
header .mobile_settings .mobile_settings_content a .setting_text {
width: auto;
}
-
footer#srv_footer {
display: flex;
flex-direction: column;
@@ -32918,7 +32897,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
padding: 0;
border: 0;
}
-
/* Popup za vprasajcke */
.qtip {
position: fixed !important;
@@ -32929,7 +32907,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
left: 10% !important;
box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.34) !important;
}
-
.divPopUp {
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
@@ -32940,12 +32917,10 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: calc(100% - 32px) !important;
max-width: calc(100% - 32px) !important;
}
-
/* Vse povezano s paketi in placili */
.dt-buttons {
display: none;
}
-
#main #moje_ankete_edit #anketa_edit {
padding: 0 !important;
}
@@ -33023,7 +32998,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #moje_ankete_edit fieldset div.setting {
margin-bottom: 10px;
}
-
#new_anketa_div {
display: flex;
flex-direction: column;
@@ -33107,7 +33081,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
border: 1px solid #c8e3f8 !important;
border-radius: 1px;
}
-
.dashboard_top_settings {
flex-direction: column;
}
@@ -33120,19 +33093,16 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin-left: 0;
margin-right: 16px;
}
-
.dashboard_boxes {
flex-direction: column;
}
.dashboard_boxes .dashboard_box {
margin: 0 0 32px 0;
}
-
.locked .add-variable-mobile,
.spremenljivka_content .add-variable {
display: none !important;
}
-
#branching {
width: 100%;
margin: 0;
@@ -33237,11 +33207,9 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin: 0;
padding: 0 12px;
}
-
.toolbox_holder {
display: none;
}
-
.mobile_add_question {
display: block;
position: fixed;
@@ -33261,7 +33229,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
line-height: 15px;
font-weight: 600;
}
-
.mobile_add_question_popup {
z-index: 9999;
position: fixed;
@@ -33315,7 +33282,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
font-size: 14px;
font-weight: 500;
}
-
#vprasanje_float_editing .vprasanje_edit_holder {
position: fixed;
z-index: 99999;
@@ -33368,7 +33334,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
margin-left: 0 !important;
text-align: center;
}
-
#main #anketa #globalSetingsList {
max-width: 100% !important;
width: 100% !important;
@@ -33381,7 +33346,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #anketa #globalSetingsList fieldset span.charalimit#anketa_note_chars {
width: 100%;
}
-
/* NASTAVITVE in ARHIVI */
/* OBLIKA */
#main #anketa #anketa_edit.page_tema #div_theme_group_holder {
@@ -33397,18 +33361,15 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: 100%;
height: auto;
}
-
#theme-editor {
width: 100% !important;
float: none !important;
}
-
#theme-preview {
width: 100% !important;
float: none !important;
margin-top: 80px !important;
}
-
/* ARHIVI */
#main #anketa #anketa_edit.page_arhivi {
flex-direction: column-reverse;
@@ -33426,7 +33387,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#main #anketa #anketa_edit.page_arhivi #div_archive_content fieldset input {
width: 100% !important;
}
-
div.page_tema .theme_list {
flex-wrap: wrap;
}
@@ -33453,7 +33413,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
div.page_tema div#theme_grid_holder div.div_theme_group div.theme_label .theme_label_options .button {
margin-right: 8px;
}
-
.page_theme-editor #theme-preview {
display: none;
}
@@ -33461,7 +33420,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
width: 100% !important;
flex-wrap: wrap;
}
-
#srv_diagnostic br {
display: none;
}
@@ -33482,7 +33440,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
#srv_diagnostic #srv_diagnostic_results_right table td + td {
width: auto !important;
}
-
.subpage_testnipodatki {
line-height: 20px;
}
@@ -33496,7 +33453,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.subpage_testnipodatki form label input {
vertical-align: bottom;
}
-
.lastnosti_wrapper {
flex-direction: column !important;
}
@@ -33504,7 +33460,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.lastnosti_wrapper .lastnosti_right {
width: 100% !important;
}
-
.page_vabila #vabila .button_holder {
flex-direction: column;
align-items: flex-start;
@@ -33529,7 +33484,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.page_vabila #vabila .more_block {
width: 100%;
}
-
.page_invitations #inv_top_navi {
flex-direction: column;
align-items: flex-start;
@@ -33597,7 +33551,6 @@ header .mobile_menu .mobile_menu_user .submenu_user_content > div a {
.page_invitations .button_holder button {
margin-bottom: 8px;
}
-
#vabila > table,
table.invitations_settings,
#inv_msg_preview table,
@@ -33681,7 +33634,6 @@ table.invitations_settings p label input[type=password],
width: 100% !important;
box-sizing: border-box;
}
-
#surveyInvitationSetting,
#surveyInvitationSettingServer {
min-width: 100% !important;
@@ -33689,7 +33641,6 @@ table.invitations_settings p label input[type=password],
margin: 10px 0 !important;
box-sizing: border-box !important;
}
-
#inv_top_navi {
display: flex;
flex-direction: column;
@@ -33728,7 +33679,6 @@ table.invitations_settings p label input[type=password],
#inv_top_navi > #inv_step_nav.yellow .inv_step_space {
display: none;
}
-
#inv_recipients_profiles_holder,
#inv_import_list_container,
#inv_messages_profiles_holder,
@@ -33749,7 +33699,6 @@ table.invitations_settings p label input[type=password],
#inv_select_mail_preview textarea {
width: 100%;
}
-
#inv_msg_preview table th {
height: auto !important;
width: 100% !important;
@@ -33761,7 +33710,6 @@ table.invitations_settings p label input[type=password],
width: 100%;
box-sizing: border-box;
}
-
.addthis_toolbox {
line-height: 24px;
}
@@ -33776,11 +33724,9 @@ table.invitations_settings p label input[type=password],
.addthis_toolbox .addthis_separator {
font-size: 16px;
}
-
#inv_field_container ul li {
width: 45%;
}
-
/* grafika ko ni podatkov */
div.no_data_alert img {
width: 100%;
@@ -33792,7 +33738,6 @@ table.invitations_settings p label input[type=password],
flex-direction: column;
align-items: center;
}
-
.page_data .data_table_top_holder {
flex-direction: column;
align-items: flex-start;
@@ -33863,11 +33808,9 @@ table.invitations_settings p label input[type=password],
width: 100%;
margin-bottom: 16px;
}
-
body.data_fullscreen #analiza_data {
top: 68px;
}
-
.subpage_append .anketa_edit_main,
.subpage_merge .anketa_edit_main,
.subpage_calculation .anketa_edit_main,
@@ -33908,7 +33851,6 @@ table.invitations_settings p label input[type=password],
clear: both;
margin: 40px 0 0 0 !important;
}
-
.subpage_quick_edit #quick_edit_top_line {
flex-direction: column-reverse;
}
@@ -33928,7 +33870,6 @@ table.invitations_settings p label input[type=password],
.subpage_quick_edit .quick_edit_container .quick_edit_bottom_line {
justify-content: center;
}
-
.analysis_bottom_settings {
flex-wrap: wrap;
}
@@ -33938,16 +33879,13 @@ table.invitations_settings p label input[type=password],
margin: 0 0 16px 0 !important;
border: 0;
}
-
.div_analiza_icons,
.div_analiza_scale {
opacity: 1 !important;
}
-
.analysis_icons_holder {
display: none;
}
-
.chart_holder {
width: 100%;
box-sizing: border-box;
@@ -33970,7 +33908,6 @@ table.invitations_settings p label input[type=password],
display: block;
clear: both;
}
-
table.analysis_reports {
border-spacing: 0px;
}
@@ -33987,14 +33924,12 @@ table.analysis_reports > tbody > tr > td {
table.analysis_reports fieldset {
margin-bottom: 0 !important;
}
-
.reports_holder {
flex-direction: column;
}
.reports_holder fieldset {
width: 100%;
}
-
.noSurvey_sequence {
padding: 0;
}
@@ -34016,13 +33951,11 @@ table.analysis_reports > tbody > tr > td {
.noSurvey_sequence .buttons_holder a .button {
margin: 10px 30px;
}
-
#table-horizontal-scroll-wrapper1-userchanges {
display: table;
table-layout: fixed;
width: 100%;
}
-
#table-horizontal-scroll-wrapper2-userchanges {
display: table-cell;
overflow-x: auto;
@@ -34033,7 +33966,6 @@ table.analysis_reports > tbody > tr > td {
border-collapse: collapse;
white-space: nowrap;
}
-
.page_arhivi .anketa_edit_left,
.page_tracking .anketa_edit_left,
.subpage_anal_arch .anketa_edit_left,
diff --git a/resources/sass/admin_new/pages/survey_objava/pregled.scss b/resources/sass/admin_new/pages/survey_objava/pregled.scss
index 568c24018..1f8c353af 100644
--- a/resources/sass/admin_new/pages/survey_objava/pregled.scss
+++ b/resources/sass/admin_new/pages/survey_objava/pregled.scss
@@ -260,15 +260,15 @@ div#vabila {
}
- div.more_block:first-of-type{
- .more_title{
- color: #FFC700;
- }
+ // div.more_block:first-of-type{
+ // .more_title{
+ // color: #FFC700;
+ // }
- span.faicon.empty{
- color: #FFC700;
- }
- }
+ // span.faicon.empty{
+ // color: #FFC700;
+ // }
+ // }
}
}
From 4c421854580bef64cbae064ff97b27f503f1a108 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 12:36:00 +0200
Subject: [PATCH 6/8] potrditev registracije: gumb font sans pro
---
frontend/simple/css/style.css | 25 +++++--------------
.../sass/frontend_simple/basic/popravki.scss | 6 ++++-
2 files changed, 11 insertions(+), 20 deletions(-)
diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css
index 8a6ed95d6..5404f04d7 100644
--- a/frontend/simple/css/style.css
+++ b/frontend/simple/css/style.css
@@ -3,8 +3,7 @@
Created on : 28.3.2020
Author : Peter Hrvatin
*/
-/* BARVE */
-/* FONTI */
+/* BARVE */ /* FONTI */
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,600,700&subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");
.thin {
@@ -731,16 +730,13 @@ body.reset_password_activate div.label {
#main .main_content {
min-height: unset;
}
-
/* --------------HAMBURGER---------------------------------- */
.nav-desktop {
display: none;
}
-
.mobile {
display: block;
}
-
#nav-icon3 {
width: 38px;
height: 20px;
@@ -784,42 +780,35 @@ body.reset_password_activate div.label {
#nav-icon3 span:nth-child(4) {
top: 18px;
}
-
#nav-icon3.open span:nth-child(1) {
top: 9px;
width: 0%;
left: 50%;
}
-
#nav-icon3.open span:nth-child(2) {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
-
#nav-icon3.open span:nth-child(3) {
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
}
-
#nav-icon3.open span:nth-child(4) {
top: 9px;
width: 0%;
left: 50%;
}
-
#links {
display: none;
}
-
/* */
.aai a {
color: #333333;
}
-
#links.open {
position: absolute;
top: 72px;
@@ -829,9 +818,8 @@ body.reset_password_activate div.label {
align-items: center;
width: 100%;
height: 100vh;
- background-color: white;
+ background-color: rgb(255, 255, 255);
}
-
#links .menu_item {
font-size: 30px;
margin-top: 30px;
@@ -843,7 +831,6 @@ body.reset_password_activate div.label {
#links .menu_item a:hover {
color: #1E88E5;
}
-
body #main .main_content {
padding: 10px 20px 40px 20px;
}
@@ -885,7 +872,6 @@ body #main .main_content input[type=button] {
margin: 0;
width: 100%;
}
-
body.landing_page,
body.login,
body.register,
@@ -972,7 +958,6 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
width: 100%;
box-sizing: border-box;
}
-
footer {
padding: 0 20px;
}
@@ -1003,7 +988,6 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
footer .footer_content .logo_holder img {
margin: 20px auto 30px auto;
}
-
.cookie_notice {
flex-direction: column;
}
@@ -1011,7 +995,6 @@ body.login_noEmail #content.aai #main .main_content .app_subtitle {
margin: 0 0 20px 0;
text-align: center;
}
-
body #main .main_content .register_holder h1 {
font-size: 50px;
font-weight: 300;
@@ -1527,6 +1510,10 @@ body.register #main .landing_page_window label:first-of-type {
margin-top: 0px;
}
+.register_email input[type=button] {
+ font-family: "Source Sans Pro", "sans-serif";
+}
+
/* GDPR ZAHTEVEK -------------------------------------- */
#main {
background-color: #FFFFFF;
diff --git a/resources/sass/frontend_simple/basic/popravki.scss b/resources/sass/frontend_simple/basic/popravki.scss
index 3e0c7a509..7364b0be4 100644
--- a/resources/sass/frontend_simple/basic/popravki.scss
+++ b/resources/sass/frontend_simple/basic/popravki.scss
@@ -587,4 +587,8 @@ body.register #main .landing_page_window label:first-of-type {
margin-top: 0px;
}
-// -----------------------------------------
\ No newline at end of file
+// ------REGISTER_EMAIL----------------------------------
+
+.register_email input[type="button"] {
+ font-family: $SansPro_font;
+}
\ No newline at end of file
From b13f70d84865875986e3c51dad1e467bec708ee2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 15:38:07 +0200
Subject: [PATCH 7/8] login pozabljeno geslo popravljen font, barva
---
frontend/simple/css/style.css | 7 +++++++
resources/sass/frontend_simple/basic/popravki.scss | 11 +++++++++++
2 files changed, 18 insertions(+)
diff --git a/frontend/simple/css/style.css b/frontend/simple/css/style.css
index 5404f04d7..f89329de0 100644
--- a/frontend/simple/css/style.css
+++ b/frontend/simple/css/style.css
@@ -1514,6 +1514,13 @@ body.register #main .landing_page_window label:first-of-type {
font-family: "Source Sans Pro", "sans-serif";
}
+body.reset_password {
+ color: #333;
+}
+body.reset_password input[type=button] {
+ font-family: "Source Sans Pro", "sans-serif";
+}
+
/* GDPR ZAHTEVEK -------------------------------------- */
#main {
background-color: #FFFFFF;
diff --git a/resources/sass/frontend_simple/basic/popravki.scss b/resources/sass/frontend_simple/basic/popravki.scss
index 7364b0be4..24592d2c3 100644
--- a/resources/sass/frontend_simple/basic/popravki.scss
+++ b/resources/sass/frontend_simple/basic/popravki.scss
@@ -591,4 +591,15 @@ body.register #main .landing_page_window label:first-of-type {
.register_email input[type="button"] {
font-family: $SansPro_font;
+}
+
+// ------RESET PASSWORD----------------------------------
+
+body.reset_password{
+
+ color: #333;
+
+ input[type="button"]{
+ font-family: $SansPro_font;
+ }
}
\ No newline at end of file
From d00951513adb6541df3e0c5eb7db8a202e6f67db Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Nejc=20Kova=C4=8D?=
Date: Mon, 18 Jul 2022 16:16:36 +0200
Subject: [PATCH 8/8] objava-pregled responsive block
---
public/css/admin_new.css | 21 ++++++-------
.../pages/survey_objava/pregled.scss | 30 ++++++++++++-------
2 files changed, 31 insertions(+), 20 deletions(-)
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index 086979607..17b521e5b 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -24507,8 +24507,6 @@ div#vabila div.button_holder .copy_survey_url_holder button {
}
div#vabila div.button_holder #nice_url_button {
margin: 0 0 0 32px;
- background-color: #FFC700;
- border: 1px #FFC700 solid;
}
div#vabila div.button_holder #nice_url_holder {
display: flex;
@@ -24557,11 +24555,11 @@ div#vabila div.more {
display: flex;
flex-direction: row;
flex-wrap: wrap;
- gap: 16px 32px;
+ gap: 16px;
}
div#vabila div.more div.more_block {
height: auto;
- width: 298px;
+ width: 464px;
background-color: #FFFFFF;
border: 1px solid #E5E5E5;
padding: 16px;
@@ -24654,7 +24652,7 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
@media screen and (max-width: 1130px) {
.more_block {
- width: 40% !important;
+ width: 42% !important;
}
}
@media screen and (max-width: 1025px) {
@@ -24676,8 +24674,11 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
.page_vabila #vabila .button_holder #nice_url_holder {
flex-direction: row !important;
}
+ .page_vabila #vabila .button_holder #nice_url_holder .url {
+ margin-top: 9px;
+ }
.page_vabila #vabila .button_holder #nice_url_holder .buttons {
- margin: 0px !important;
+ margin: 9px 0px 0px 0px !important;
}
}
@media screen and (max-width: 725px) {
@@ -24685,19 +24686,19 @@ div#general_popup div.popup_content.publish.settings div#publish_settings_more {
font-size: 20px !important;
}
}
-@media screen and (max-width: 540px) {
+@media screen and (max-width: 660px) {
.page_vabila #vabila .more .more_block {
width: unset !important;
width: 100% !important;
}
+ .page_vabila #vabila .more .more_block #text {
+ width: 100%;
+ }
}
@media screen and (max-width: 500px) {
.page_vabila #vabila .button_holder #nice_url_holder {
flex-direction: column !important;
}
- .page_vabila #vabila .button_holder #nice_url_holder .buttons {
- margin: 0px !important;
- }
}
.page_invitations .invitations_holder.half-half {
display: flex;
diff --git a/resources/sass/admin_new/pages/survey_objava/pregled.scss b/resources/sass/admin_new/pages/survey_objava/pregled.scss
index 1f8c353af..4efaf9319 100644
--- a/resources/sass/admin_new/pages/survey_objava/pregled.scss
+++ b/resources/sass/admin_new/pages/survey_objava/pregled.scss
@@ -124,8 +124,7 @@ div#vabila {
// Nice URL - gumb
#nice_url_button{
margin: 0 0 0 32px;
- background-color: #FFC700;
- border: 1px #FFC700 solid;
+
}
// Nice URL - dodajanje
@@ -190,11 +189,11 @@ div#vabila {
flex-direction: row;
flex-wrap: wrap;
- gap: 16px 32px;
+ gap: 16px;
div.more_block {
height: auto;
- width: 298px;
+ width: 464px;
background-color: $white;
border: 1px solid $gray;
@@ -341,7 +340,7 @@ div#general_popup {
@media screen and (max-width: 1130px){
.more_block{
- width: 40% !important;
+ width: 42% !important;
}
}
@@ -395,8 +394,13 @@ div#general_popup {
flex-direction: row !important;
+ .url{
+ margin-top: 9px;
+ }
+
.buttons{
- margin: 0px !important;
+ margin: 9px 0px 0px 0px !important;
+
}
}
@@ -419,7 +423,7 @@ div#general_popup {
}
}
-@media screen and (max-width: 540px) {
+@media screen and (max-width: 660px) {
.page_vabila{
#vabila{
@@ -430,7 +434,15 @@ div#general_popup {
.more_block{
width: unset !important;
width: 100% !important;
+
+ #text {
+ width: 100%;
+ }
+
+
}
+
+
}
@@ -451,9 +463,7 @@ div#general_popup {
flex-direction: column !important;
- .buttons{
- margin: 0px !important;
- }
+
}