diff --git a/client/src/app/admin/instance/components/instance-form.component.html b/client/src/app/admin/instance/components/instance-form.component.html
index 422c60b94e8f4cd2ad025c9efb73f5bd98315e48..b12f451f7f3f83e92a9045aba213e308367a9559 100644
--- a/client/src/app/admin/instance/components/instance-form.component.html
+++ b/client/src/app/admin/instance/components/instance-form.component.html
@@ -360,6 +360,10 @@
                     <input type="text" class="form-control" id="progress_bar_text_color_input" [value]="form.value.progress_bar_text_color" formControlName="progress_bar_text_color">
                 </div>
             </div>
+            <div class="custom-control custom-switch mb-2">
+                <input class="custom-control-input" type="checkbox" id="progress_bar_text_bold" name="progress_bar_text_bold" formControlName="progress_bar_text_bold">
+                <label class="custom-control-label" for="progress_bar_text_bold">Progress bar text bold</label>
+            </div>
         </accordion-group>
         <accordion-group heading="[Search] Next/Back buttons" [isOpen]="false">
             <div class="form-row">
diff --git a/client/src/app/admin/instance/components/instance-form.component.ts b/client/src/app/admin/instance/components/instance-form.component.ts
index 09ec524857da532e8ca0f87ffcf3ca6ae512a0f7..c16e9ae576c064ef270b8bf81d4513481f148011 100644
--- a/client/src/app/admin/instance/components/instance-form.component.ts
+++ b/client/src/app/admin/instance/components/instance-form.component.ts
@@ -79,6 +79,7 @@ export class InstanceFormComponent implements OnInit {
         progress_bar_circle_icon_color: new UntypedFormControl('#CCCCCC'),
         progress_bar_circle_icon_active_color: new UntypedFormControl('#FFFFFF'),
         progress_bar_text_color: new UntypedFormControl('#91B2BF'),
+        progress_bar_text_bold: new UntypedFormControl(false),
         search_next_btn_color: new UntypedFormControl('#007BFF'),
         search_next_btn_hover_color: new UntypedFormControl('#007BFF'),
         search_next_btn_hover_text_color: new UntypedFormControl('#FFFFFF'),
diff --git a/client/src/app/instance/instance-style.service.ts b/client/src/app/instance/instance-style.service.ts
index 2fed53f257e3d6e3c9cc2719160518fb92664168..037d0fbf2963fdec5d092985208609046eda3382 100644
--- a/client/src/app/instance/instance-style.service.ts
+++ b/client/src/app/instance/instance-style.service.ts
@@ -70,7 +70,11 @@ export class InstanceStyleService {
         this.style.setStyle('.progress-bar-subtitle', 'color', instance.progress_bar_subtitle_color);
         this.style.setStyle('.progress-navigation .progress.progress-with-circle', 'background-color', instance.progress_bar_color);
         this.style.setStyle('.progress-navigation .progress.progress-with-circle .progress-bar', 'background-color', instance.progress_bar_active_color);
-        this.style.setStyle('.progress-navigation .nav-link, .progress-navigation .nav-link.disabled', 'color', instance.progress_bar_text_color);
+        const progressTitleBold = (instance.progress_bar_text_bold) ? 'bold' : 'normal';
+        this.style.setStyles('.progress-navigation .nav-link, .progress-navigation .nav-link.disabled', {
+            'color': instance.progress_bar_text_color,
+            'font-weight': progressTitleBold
+        });
         this.style.setStyle('.progress-navigation .nav-link:hover', 'color', instance.progress_bar_text_color);
         this.style.setStyle('.progress-navigation .nav-item.checked .nav-link, .progress-navigation.nav-item.active .nav-link', 'color', instance.progress_bar_active_color);
         this.style.setStyles('.progress-navigation .nav-item .icon-circle', {
@@ -116,6 +120,7 @@ export class InstanceStyleService {
 
     private searchFamilyStyle(instance: Instance) {
         this.style.setStyle('.panel.card.custom-accordion', 'border-color', instance.family_border_color);
+        this.style.setStyle('.panel.card.custom-accordion .card-header', 'border-bottom-color', instance.family_border_color);
         this.style.setStyle('.custom-accordion .panel-heading', 'background-color', instance.family_header_background_color);
         this.style.setStyle('.custom-accordion .panel-heading .btn-link', 'color', instance.family_title_color);
         const familyTitleBold = (instance.family_title_bold) ? 'bold' : 'normal';
diff --git a/client/src/app/instance/instance.component.spec.ts b/client/src/app/instance/instance.component.spec.ts
index 68d75cb76f8b60b7c7cd832bb4a10c5a48176a7d..f5313afe7fb61567c75b415a71b26f36c65a0373 100644
--- a/client/src/app/instance/instance.component.spec.ts
+++ b/client/src/app/instance/instance.component.spec.ts
@@ -125,6 +125,7 @@ describe('[Instance] InstanceComponent', () => {
             progress_bar_circle_icon_color: '#CCCCCC',
             progress_bar_circle_icon_active_color: '#FFFFFF',
             progress_bar_text_color: '#91B2BF',
+            progress_bar_text_bold: false,
             search_next_btn_color: '#007BFF',
             search_next_btn_hover_color: '#007BFF',
             search_next_btn_hover_text_color: '#FFFFFF',
diff --git a/client/src/app/instance/search/components/progress-bar.component.scss b/client/src/app/instance/search/components/progress-bar.component.scss
index 85662e12a21f73859c4329d7ee25580a5d16c47f..e71bbb619d741db243f7e0c8166ec68620dc50b6 100644
--- a/client/src/app/instance/search/components/progress-bar.component.scss
+++ b/client/src/app/instance/search/components/progress-bar.component.scss
@@ -27,9 +27,9 @@
     transition: width .3s ease;
 }
 
-.nav-link {
+/* .nav-link {
     font-weight: bold;
-}
+} */
 
 .nav-pills {
     background-color: #F3F2EE;
diff --git a/client/src/app/instance/store/effects/search-multiple.effects.spec.ts b/client/src/app/instance/store/effects/search-multiple.effects.spec.ts
index 9df0ab2a2979d1f06481566ad7e28a6a42fa77ad..c4ca949bdb3b45bd97fbacd516fabb21aa64ebb4 100644
--- a/client/src/app/instance/store/effects/search-multiple.effects.spec.ts
+++ b/client/src/app/instance/store/effects/search-multiple.effects.spec.ts
@@ -180,6 +180,7 @@ describe('[Instance][Store] SearchMultipleEffects', () => {
                     progress_bar_circle_icon_color: '#CCCCCC',
                     progress_bar_circle_icon_active_color: '#FFFFFF',
                     progress_bar_text_color: '#91B2BF',
+                    progress_bar_text_bold: false,
                     search_next_btn_color: '#007BFF',
                     search_next_btn_hover_color: '#007BFF',
                     search_next_btn_hover_text_color: '#FFFFFF',
@@ -330,6 +331,7 @@ describe('[Instance][Store] SearchMultipleEffects', () => {
                     progress_bar_circle_icon_color: '#CCCCCC',
                     progress_bar_circle_icon_active_color: '#FFFFFF',
                     progress_bar_text_color: '#91B2BF',
+                    progress_bar_text_bold: false,
                     search_next_btn_color: '#007BFF',
                     search_next_btn_hover_color: '#007BFF',
                     search_next_btn_hover_text_color: '#FFFFFF',
diff --git a/client/src/app/metamodel/models/instance.model.ts b/client/src/app/metamodel/models/instance.model.ts
index 6bb3eeb0d7a91027dc3ae79434fa74710f71d6ad..2849ef3623d5acc0b2fb1229ebf0983e139d647a 100644
--- a/client/src/app/metamodel/models/instance.model.ts
+++ b/client/src/app/metamodel/models/instance.model.ts
@@ -65,6 +65,7 @@ export interface Instance {
     progress_bar_circle_icon_color: string;
     progress_bar_circle_icon_active_color: string;
     progress_bar_text_color: string;
+    progress_bar_text_bold: boolean;
     search_next_btn_color: string;
     search_next_btn_hover_color: string;
     search_next_btn_hover_text_color: string;
diff --git a/client/src/test-data.ts b/client/src/test-data.ts
index 324f36f30afcb04a6e9cc70b2385cd16ce096490..2a2fb87dc4f34b5fc73d8d7bd7957423bae47db3 100644
--- a/client/src/test-data.ts
+++ b/client/src/test-data.ts
@@ -95,6 +95,7 @@ export const INSTANCE_LIST: Instance[] = [
         progress_bar_circle_icon_color: '#CCCCCC',
         progress_bar_circle_icon_active_color: '#FFFFFF',
         progress_bar_text_color: '#91B2BF',
+        progress_bar_text_bold: false,
         search_next_btn_color: '#007BFF',
         search_next_btn_hover_color: '#007BFF',
         search_next_btn_hover_text_color: '#FFFFFF',
@@ -196,6 +197,7 @@ export const INSTANCE_LIST: Instance[] = [
         progress_bar_circle_icon_color: '#CCCCCC',
         progress_bar_circle_icon_active_color: '#FFFFFF',
         progress_bar_text_color: '#91B2BF',
+        progress_bar_text_bold: false,
         search_next_btn_color: '#007BFF',
         search_next_btn_hover_color: '#007BFF',
         search_next_btn_hover_text_color: '#FFFFFF',
@@ -299,6 +301,7 @@ export const INSTANCE: Instance = {
     progress_bar_circle_icon_color: '#CCCCCC',
     progress_bar_circle_icon_active_color: '#FFFFFF',
     progress_bar_text_color: '#91B2BF',
+    progress_bar_text_bold: false,
     search_next_btn_color: '#007BFF',
     search_next_btn_hover_color: '#007BFF',
     search_next_btn_hover_text_color: '#FFFFFF',
diff --git a/conf-dev/create-db.sh b/conf-dev/create-db.sh
index 949a32fe4aca3459330f6f3122e7da524d1e3137..17c4b5e160338a7b63482852aed4ccb551b16b4f 100644
--- a/conf-dev/create-db.sh
+++ b/conf-dev/create-db.sh
@@ -8,7 +8,7 @@ set -e
 curl -d '{"label":"Test","dbname":"anis_test","dbtype":"pdo_pgsql","dbhost":"db","dbport":5432,"dblogin":"anis","dbpassword":"anis"}' --header 'Content-Type: application/json' -X POST http://localhost/database
 
 # Add default instance
-curl -d '{"name":"default","label":"Default instance","description":"Instance for the test","scientific_manager":"M. Durand","instrument":"Multiple","wavelength_domain":"Visible imaging / Spectroscopy","display":10,"data_path":"\/DEFAULT","files_path":"\/INSTANCE_FILES","public":true,"portal_logo":"","portal_color":"#7AC29A","design_background_color":"#FFFFFF","design_text_color":"#212529","design_font_family":"Roboto, sans-serif","design_link_color":"#007BFF","design_link_hover_color":"#0056B3","design_logo":"/logo.png","design_logo_href":null,"design_favicon":"/favicon.ico","navbar_background_color":"#F8F9FA","navbar_border_bottom_color":"#DEE2E6","navbar_color_href":"#000000","navbar_font_family":"Roboto, sans-serif","navbar_sign_in_btn_color":"#28A745","navbar_user_btn_color":"#7AC29A","footer_background_color":"#F8F9FA","footer_border_top_color":"#DEE2E6","footer_text_color":"#000000","footer_logos":[{"href":"http:\/\/lam.fr","title":"Laboratoire d'\''Astrophysique de Marseille","file":"\/logo_lam_s.png","display":20},{"href":"http:\/\/www.univ-amu.fr","title":"Aix*Marseille Universit\u00e9","file":"\/logo_amu_s.png","display":30},{"href":"http:\/\/anis.lam.fr","title":"AstroNomical Information System","file":"\/cesam_anis40.png","display":50},{"href":"http:\/\/cesam.lam.fr","title":"Centre de donn\u00e9es Astrophysique de Marseille","file":"\/logo_cesam_s.png","display":10},{"href":"http:\/\/www.insu.cnrs.fr","title":"Institut National des Sciences de l'\''Univers","file":"\/logo_insu_s.png","display":40}],"family_border_color":"#DFDFDF","family_header_background_color":"#F7F7F7","family_title_color":"#007BFF","family_title_bold":false,"family_background_color":"#FFFFFF","family_text_color":"#212529","progress_bar_title":"Dataset search","progress_bar_title_color":"#000000","progress_bar_subtitle":"Select a dataset, add criteria, select output columns and display the result.","progress_bar_subtitle_color":"#6C757D","progress_bar_step_dataset_title":"Dataset selection","progress_bar_step_criteria_title":"Search criteria","progress_bar_step_output_title":"Output columns","progress_bar_step_result_title":"Result table","progress_bar_color":"#E9ECEF","progress_bar_active_color":"#7AC29A","progress_bar_circle_color":"#FFFFFF","progress_bar_circle_icon_color":"#CCCCCC","progress_bar_circle_icon_active_color":"#FFFFFF","progress_bar_text_color":"#91B2BF","search_next_btn_color":"#007BFF","search_next_btn_hover_color":"#007BFF","search_next_btn_hover_text_color":"#FFFFFF","search_back_btn_color":"#6C757D","search_back_btn_hover_color":"#6C757D","search_back_btn_hover_text_color":"#FFFFFF","dataset_select_btn_color":"#6C757D","dataset_select_btn_hover_color":"#6C757D","dataset_select_btn_hover_text_color":"#FFFFFF","dataset_selected_icon_color":"#28A745","search_info_background_color":"#E9ECEF","search_info_text_color":"#000000","search_info_help_enabled":true,"search_criterion_background_color":"#7AC29A","search_criterion_text_color":"#000000","result_download_btn_color":"#007BFF","result_download_btn_hover_color":"#0069D9","result_download_btn_text_color":"#FFFFFF","output_columns_selected_color":"#7AC29A","output_columns_select_all_btn_color":"#6C757D","output_columns_select_all_btn_hover_color":"#6C757D","output_columns_select_all_btn_hover_text_color":"#FFFFFF","result_datatable_actions_btn_color":"#007BFF","result_datatable_actions_btn_hover_color":"#0069D9","result_datatable_actions_btn_text_color":"#FFFFFF","result_datatable_bordered":true,"result_datatable_bordered_radius":false,"result_datatable_border_color":"#DEE2E6","result_datatable_header_background_color":"#FFFFFF","result_datatable_header_text_color":"#000000","result_datatable_rows_background_color":"#FFFFFF","result_datatable_rows_text_color":"#000000","result_datatable_sorted_color":"#C5C5C5","result_datatable_sorted_active_color":"#000000","result_datatable_link_color":"#007BFF","result_datatable_link_hover_color":"#0056B3","result_datatable_rows_selected_color":"#7AC29A","samp_enabled":true,"back_to_portal":true,"user_menu_enabled":true,"search_by_criteria_allowed":true,"search_by_criteria_label":"Search","search_multiple_allowed":false,"search_multiple_label":"Search multiple","search_multiple_all_datasets_selected":false,"documentation_allowed":false,"documentation_label":"Documentation"}' --header 'Content-Type: application/json' -X POST http://localhost/instance
+curl -d '{"name":"default","label":"Default instance","description":"Instance for the test","scientific_manager":"M. Durand","instrument":"Multiple","wavelength_domain":"Visible imaging / Spectroscopy","display":10,"data_path":"\/DEFAULT","files_path":"\/INSTANCE_FILES","public":true,"portal_logo":"","portal_color":"#7AC29A","design_background_color":"#FFFFFF","design_text_color":"#212529","design_font_family":"Roboto, sans-serif","design_link_color":"#007BFF","design_link_hover_color":"#0056B3","design_logo":"/logo.png","design_logo_href":null,"design_favicon":"/favicon.ico","navbar_background_color":"#F8F9FA","navbar_border_bottom_color":"#DEE2E6","navbar_color_href":"#000000","navbar_font_family":"Roboto, sans-serif","navbar_sign_in_btn_color":"#28A745","navbar_user_btn_color":"#7AC29A","footer_background_color":"#F8F9FA","footer_border_top_color":"#DEE2E6","footer_text_color":"#000000","footer_logos":[{"href":"http:\/\/lam.fr","title":"Laboratoire d'\''Astrophysique de Marseille","file":"\/logo_lam_s.png","display":20},{"href":"http:\/\/www.univ-amu.fr","title":"Aix*Marseille Universit\u00e9","file":"\/logo_amu_s.png","display":30},{"href":"http:\/\/anis.lam.fr","title":"AstroNomical Information System","file":"\/cesam_anis40.png","display":50},{"href":"http:\/\/cesam.lam.fr","title":"Centre de donn\u00e9es Astrophysique de Marseille","file":"\/logo_cesam_s.png","display":10},{"href":"http:\/\/www.insu.cnrs.fr","title":"Institut National des Sciences de l'\''Univers","file":"\/logo_insu_s.png","display":40}],"family_border_color":"#DFDFDF","family_header_background_color":"#F7F7F7","family_title_color":"#007BFF","family_title_bold":false,"family_background_color":"#FFFFFF","family_text_color":"#212529","progress_bar_title":"Dataset search","progress_bar_title_color":"#000000","progress_bar_subtitle":"Select a dataset, add criteria, select output columns and display the result.","progress_bar_subtitle_color":"#6C757D","progress_bar_step_dataset_title":"Dataset selection","progress_bar_step_criteria_title":"Search criteria","progress_bar_step_output_title":"Output columns","progress_bar_step_result_title":"Result table","progress_bar_color":"#E9ECEF","progress_bar_active_color":"#7AC29A","progress_bar_circle_color":"#FFFFFF","progress_bar_circle_icon_color":"#CCCCCC","progress_bar_circle_icon_active_color":"#FFFFFF","progress_bar_text_color":"#91B2BF","progress_bar_text_bold":false,"search_next_btn_color":"#007BFF","search_next_btn_hover_color":"#007BFF","search_next_btn_hover_text_color":"#FFFFFF","search_back_btn_color":"#6C757D","search_back_btn_hover_color":"#6C757D","search_back_btn_hover_text_color":"#FFFFFF","dataset_select_btn_color":"#6C757D","dataset_select_btn_hover_color":"#6C757D","dataset_select_btn_hover_text_color":"#FFFFFF","dataset_selected_icon_color":"#28A745","search_info_background_color":"#E9ECEF","search_info_text_color":"#000000","search_info_help_enabled":true,"search_criterion_background_color":"#7AC29A","search_criterion_text_color":"#000000","result_download_btn_color":"#007BFF","result_download_btn_hover_color":"#0069D9","result_download_btn_text_color":"#FFFFFF","output_columns_selected_color":"#7AC29A","output_columns_select_all_btn_color":"#6C757D","output_columns_select_all_btn_hover_color":"#6C757D","output_columns_select_all_btn_hover_text_color":"#FFFFFF","result_datatable_actions_btn_color":"#007BFF","result_datatable_actions_btn_hover_color":"#0069D9","result_datatable_actions_btn_text_color":"#FFFFFF","result_datatable_bordered":true,"result_datatable_bordered_radius":false,"result_datatable_border_color":"#DEE2E6","result_datatable_header_background_color":"#FFFFFF","result_datatable_header_text_color":"#000000","result_datatable_rows_background_color":"#FFFFFF","result_datatable_rows_text_color":"#000000","result_datatable_sorted_color":"#C5C5C5","result_datatable_sorted_active_color":"#000000","result_datatable_link_color":"#007BFF","result_datatable_link_hover_color":"#0056B3","result_datatable_rows_selected_color":"#7AC29A","samp_enabled":true,"back_to_portal":true,"user_menu_enabled":true,"search_by_criteria_allowed":true,"search_by_criteria_label":"Search","search_multiple_allowed":false,"search_multiple_label":"Search multiple","search_multiple_all_datasets_selected":false,"documentation_allowed":false,"documentation_label":"Documentation"}' --header 'Content-Type: application/json' -X POST http://localhost/instance
 
 # Add dataset families
 curl -d '{"label":"Default dataset family","display":10,"opened":true}' --header 'Content-Type: application/json' -X POST http://localhost/instance/default/dataset-family
diff --git a/server/doctrine-proxy/__CG__AppEntityInstance.php b/server/doctrine-proxy/__CG__AppEntityInstance.php
index 31e2a119403bf82db702159555f5faab20127f2c..6d3d76abab0152825599515e17e25f406f845647 100644
--- a/server/doctrine-proxy/__CG__AppEntityInstance.php
+++ b/server/doctrine-proxy/__CG__AppEntityInstance.php
@@ -67,10 +67,10 @@ class Instance extends \App\Entity\Instance implements \Doctrine\ORM\Proxy\Proxy
     public function __sleep()
     {
         if ($this->__isInitialized__) {
-            return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'portalColor', 'designBackgroundColor', 'designTextColor', 'designFontFamily', 'designLinkColor', 'designLinkHoverColor', 'designLogo', 'designLogoHref', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyTextColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'searchNextBtnColor', 'searchNextBtnHoverColor', 'searchNextBtnHoverTextColor', 'searchBackBtnColor', 'searchBackBtnHoverColor', 'searchBackBtnHoverTextColor', 'searchInfoBackgroundColor', 'searchInfoTextColor', 'searchInfoHelpEnabled', 'datasetSelectBtnColor', 'datasetSelectBtnHoverColor', 'datasetSelectBtnHoverTextColor', 'datasetSelectedIconColor', 'searchCriterionBackgroundColor', 'searchCriterionTextColor', 'outputColumnsSelectedColor', 'outputColumnsSelectAllBtnColor', 'outputColumnsSelectAllBtnHoverColor', 'outputColumnsSelectAllBtnHoverTextColor', 'resultDownloadBtnColor', 'resultDownloadBtnHoverColor', 'resultDownloadBtnTextColor', 'resultDatatableActionsBtnColor', 'resultDatatableActionsBtnHoverColor', 'resultDatatableActionsBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderedRadius', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
+            return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'portalColor', 'designBackgroundColor', 'designTextColor', 'designFontFamily', 'designLinkColor', 'designLinkHoverColor', 'designLogo', 'designLogoHref', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyTextColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'progressBarTextBold', 'searchNextBtnColor', 'searchNextBtnHoverColor', 'searchNextBtnHoverTextColor', 'searchBackBtnColor', 'searchBackBtnHoverColor', 'searchBackBtnHoverTextColor', 'searchInfoBackgroundColor', 'searchInfoTextColor', 'searchInfoHelpEnabled', 'datasetSelectBtnColor', 'datasetSelectBtnHoverColor', 'datasetSelectBtnHoverTextColor', 'datasetSelectedIconColor', 'searchCriterionBackgroundColor', 'searchCriterionTextColor', 'outputColumnsSelectedColor', 'outputColumnsSelectAllBtnColor', 'outputColumnsSelectAllBtnHoverColor', 'outputColumnsSelectAllBtnHoverTextColor', 'resultDownloadBtnColor', 'resultDownloadBtnHoverColor', 'resultDownloadBtnTextColor', 'resultDatatableActionsBtnColor', 'resultDatatableActionsBtnHoverColor', 'resultDatatableActionsBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderedRadius', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
         }
 
-        return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'portalColor', 'designBackgroundColor', 'designTextColor', 'designFontFamily', 'designLinkColor', 'designLinkHoverColor', 'designLogo', 'designLogoHref', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyTextColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'searchNextBtnColor', 'searchNextBtnHoverColor', 'searchNextBtnHoverTextColor', 'searchBackBtnColor', 'searchBackBtnHoverColor', 'searchBackBtnHoverTextColor', 'searchInfoBackgroundColor', 'searchInfoTextColor', 'searchInfoHelpEnabled', 'datasetSelectBtnColor', 'datasetSelectBtnHoverColor', 'datasetSelectBtnHoverTextColor', 'datasetSelectedIconColor', 'searchCriterionBackgroundColor', 'searchCriterionTextColor', 'outputColumnsSelectedColor', 'outputColumnsSelectAllBtnColor', 'outputColumnsSelectAllBtnHoverColor', 'outputColumnsSelectAllBtnHoverTextColor', 'resultDownloadBtnColor', 'resultDownloadBtnHoverColor', 'resultDownloadBtnTextColor', 'resultDatatableActionsBtnColor', 'resultDatatableActionsBtnHoverColor', 'resultDatatableActionsBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderedRadius', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
+        return ['__isInitialized__', 'name', 'label', 'description', 'scientificManager', 'instrument', 'wavelengthDomain', 'display', 'dataPath', 'filesPath', 'public', 'portalLogo', 'portalColor', 'designBackgroundColor', 'designTextColor', 'designFontFamily', 'designLinkColor', 'designLinkHoverColor', 'designLogo', 'designLogoHref', 'designFavicon', 'navbarBackgroundColor', 'navbarBorderBottomColor', 'navbarColorHref', 'navbarFontFamily', 'navbarSignInBtnColor', 'navbarUserBtnColor', 'footerBackgroundColor', 'footerBorderTopColor', 'footerTextColor', 'footerLogos', 'familyBorderColor', 'familyHeaderBackgroundColor', 'familyTitleColor', 'familyTitleBold', 'familyBackgroundColor', 'familyTextColor', 'progressBarTitle', 'progressBarTitleColor', 'progressBarSubtitle', 'progressBarSubtitleColor', 'progressBarStepDatasetTitle', 'progressBarStepCriteriaTitle', 'progressBarStepOutputTitle', 'progressBarStepResultTitle', 'progressBarColor', 'progressBarActiveColor', 'progressBarCircleColor', 'progressBarCircleIconColor', 'progressBarCircleIconActiveColor', 'progressBarTextColor', 'progressBarTextBold', 'searchNextBtnColor', 'searchNextBtnHoverColor', 'searchNextBtnHoverTextColor', 'searchBackBtnColor', 'searchBackBtnHoverColor', 'searchBackBtnHoverTextColor', 'searchInfoBackgroundColor', 'searchInfoTextColor', 'searchInfoHelpEnabled', 'datasetSelectBtnColor', 'datasetSelectBtnHoverColor', 'datasetSelectBtnHoverTextColor', 'datasetSelectedIconColor', 'searchCriterionBackgroundColor', 'searchCriterionTextColor', 'outputColumnsSelectedColor', 'outputColumnsSelectAllBtnColor', 'outputColumnsSelectAllBtnHoverColor', 'outputColumnsSelectAllBtnHoverTextColor', 'resultDownloadBtnColor', 'resultDownloadBtnHoverColor', 'resultDownloadBtnTextColor', 'resultDatatableActionsBtnColor', 'resultDatatableActionsBtnHoverColor', 'resultDatatableActionsBtnTextColor', 'resultDatatableBordered', 'resultDatatableBorderedRadius', 'resultDatatableBorderColor', 'resultDatatableHeaderBackgroundColor', 'resultDatatableHeaderTextColor', 'resultDatatableRowsBackgroundColor', 'resultDatatableRowsTextColor', 'resultDatatableSortedColor', 'resultDatatableSortedActiveColor', 'resultDatatableLinkColor', 'resultDatatableLinkHoverColor', 'resultDatatableRowsSelectedColor', 'sampEnabled', 'backToPortal', 'userMenuEnabled', 'searchByCriteriaAllowed', 'searchByCriteriaLabel', 'searchMultipleAllowed', 'searchMultipleLabel', 'searchMultipleAllDatasetsSelected', 'documentationAllowed', 'documentationLabel', 'datasetFamilies'];
     }
 
     /**
@@ -1270,6 +1270,28 @@ class Instance extends \App\Entity\Instance implements \Doctrine\ORM\Proxy\Proxy
         return parent::setProgressBarTextColor($progressBarTextColor);
     }
 
+    /**
+     * {@inheritDoc}
+     */
+    public function getProgressBarTextBold()
+    {
+
+        $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProgressBarTextBold', []);
+
+        return parent::getProgressBarTextBold();
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public function setProgressBarTextBold($progressBarTextBold)
+    {
+
+        $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProgressBarTextBold', [$progressBarTextBold]);
+
+        return parent::setProgressBarTextBold($progressBarTextBold);
+    }
+
     /**
      * {@inheritDoc}
      */
diff --git a/server/src/Action/InstanceAction.php b/server/src/Action/InstanceAction.php
index 7006a9be8e242986455df6f889b2068bc6789dd6..c5a5319ab2772f6adff8912ddd3c37dce947a1e8 100644
--- a/server/src/Action/InstanceAction.php
+++ b/server/src/Action/InstanceAction.php
@@ -113,6 +113,7 @@ final class InstanceAction extends AbstractAction
                 'progress_bar_circle_icon_color',
                 'progress_bar_circle_icon_active_color',
                 'progress_bar_text_color',
+                'progress_bar_text_bold',
                 'search_next_btn_color',
                 'search_next_btn_hover_color',
                 'search_next_btn_hover_text_color',
@@ -244,6 +245,7 @@ final class InstanceAction extends AbstractAction
         $instance->setProgressBarCircleIconColor($parsedBody['progress_bar_circle_icon_color']);
         $instance->setProgressBarCircleIconActiveColor($parsedBody['progress_bar_circle_icon_active_color']);
         $instance->setProgressBarTextColor($parsedBody['progress_bar_text_color']);
+        $instance->setProgressBarTextBold($parsedBody['progress_bar_text_bold']);
         $instance->setSearchNextBtnColor($parsedBody['search_next_btn_color']);
         $instance->setSearchNextBtnHoverColor($parsedBody['search_next_btn_hover_color']);
         $instance->setSearchNextBtnHoverTextColor($parsedBody['search_next_btn_hover_text_color']);
diff --git a/server/src/Action/InstanceListAction.php b/server/src/Action/InstanceListAction.php
index b471b8ea5a118ee9eed3adb08bcfa4357292ad61..6029ad3c10ea96886c2caea33e13dc220f2f1339 100644
--- a/server/src/Action/InstanceListAction.php
+++ b/server/src/Action/InstanceListAction.php
@@ -113,6 +113,7 @@ final class InstanceListAction extends AbstractAction
                 'progress_bar_circle_icon_color',
                 'progress_bar_circle_icon_active_color',
                 'progress_bar_text_color',
+                'progress_bar_text_bold',
                 'search_next_btn_color',
                 'search_next_btn_hover_color',
                 'search_next_btn_hover_text_color',
@@ -238,6 +239,7 @@ final class InstanceListAction extends AbstractAction
         $instance->setProgressBarCircleIconColor($parsedBody['progress_bar_circle_icon_color']);
         $instance->setProgressBarCircleIconActiveColor($parsedBody['progress_bar_circle_icon_active_color']);
         $instance->setProgressBarTextColor($parsedBody['progress_bar_text_color']);
+        $instance->setProgressBarTextBold($parsedBody['progress_bar_text_bold']);
         $instance->setSearchNextBtnColor($parsedBody['search_next_btn_color']);
         $instance->setSearchNextBtnHoverColor($parsedBody['search_next_btn_hover_color']);
         $instance->setSearchNextBtnHoverTextColor($parsedBody['search_next_btn_hover_text_color']);
diff --git a/server/src/Entity/Instance.php b/server/src/Entity/Instance.php
index 52b92d4018f8f52e389b61875b6c468a93bc287f..1d288b42c307ea6af85ccbf0468c6456ca9b4043 100644
--- a/server/src/Entity/Instance.php
+++ b/server/src/Entity/Instance.php
@@ -386,6 +386,13 @@ class Instance implements \JsonSerializable
      */
     protected $progressBarTextColor;
 
+    /**
+     * @var bool
+     *
+     * @Column(type="boolean", name="progress_bar_text_bold", nullable=false, options={"default" : false})
+     */
+    protected $progressBarTextBold;
+
     /**
      * @var string
      *
@@ -1256,6 +1263,16 @@ class Instance implements \JsonSerializable
         $this->progressBarTextColor = $progressBarTextColor;
     }
 
+    public function getProgressBarTextBold()
+    {
+        return $this->progressBarTextBold;
+    }
+
+    public function setProgressBarTextBold($progressBarTextBold)
+    {
+        $this->progressBarTextBold = $progressBarTextBold;
+    }
+
     public function getSearchNextBtnColor()
     {
         return $this->searchNextBtnColor;
@@ -1793,6 +1810,7 @@ class Instance implements \JsonSerializable
             'progress_bar_circle_icon_color' => $this->getProgressBarCircleIconColor(),
             'progress_bar_circle_icon_active_color' => $this->getProgressBarCircleIconActiveColor(),
             'progress_bar_text_color' => $this->getProgressBarTextColor(),
+            'progress_bar_text_bold' => $this->getProgressBarTextBold(),
             'search_next_btn_color' => $this->getSearchNextBtnColor(),
             'search_next_btn_hover_color' => $this->getSearchNextBtnHoverColor(),
             'search_next_btn_hover_text_color' => $this->getSearchNextBtnHoverTextColor(),
diff --git a/server/tests/Action/InstanceActionTest.php b/server/tests/Action/InstanceActionTest.php
index 8883a3883e61e23656330a8a6d8b8e9877e3db65..3c0ec2c2af289d3ad894704bf721e9d2948410ab 100644
--- a/server/tests/Action/InstanceActionTest.php
+++ b/server/tests/Action/InstanceActionTest.php
@@ -127,6 +127,7 @@ final class InstanceActionTest extends TestCase
             'progress_bar_circle_icon_color' => '#CCCCCC',
             'progress_bar_circle_icon_active_color' => '#FFFFFF',
             'progress_bar_text_color' => '#91B2BF',
+            'progress_bar_text_bold' => false,
             'search_next_btn_color' => '#007BFF',
             'search_next_btn_hover_color' => '#007BFF',
             'search_next_btn_hover_text_color' => '#FFFFFF',
diff --git a/server/tests/Action/InstanceListActionTest.php b/server/tests/Action/InstanceListActionTest.php
index 98cc0192074da15a0417bf8793a18b80ef001a6b..dc860f9d392710c78a2c60121b633ffce6f8450c 100644
--- a/server/tests/Action/InstanceListActionTest.php
+++ b/server/tests/Action/InstanceListActionTest.php
@@ -111,6 +111,7 @@ final class InstanceListActionTest extends TestCase
             'progress_bar_circle_icon_color' => '#CCCCCC',
             'progress_bar_circle_icon_active_color' => '#FFFFFF',
             'progress_bar_text_color' => '#91B2BF',
+            'progress_bar_text_bold' => false,
             'search_next_btn_color' => '#007BFF',
             'search_next_btn_hover_color' => '#007BFF',
             'search_next_btn_hover_text_color' => '#FFFFFF',