From 85cadc43820ff8ef5ef81006e9990d8f959cc6be Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Thu, 18 Jul 2024 12:12:54 +0700 Subject: [PATCH 01/31] init migration for worksheet templates --- src/bika/lims/content/worksheettemplate.py | 1 + .../controlpanel/bika_worksheettemplates.py | 113 +--------- src/bika/lims/controlpanel/configure.zcml | 8 - .../lims/profiles/default/factorytool.xml | 1 - .../lims/profiles/default/propertiestool.xml | 1 - .../default/structure/bika_setup/.objects | 1 - .../default/structure/bika_setup/.preserve | 1 - .../bika_worksheettemplates/.objects | 0 .../bika_worksheettemplates/.properties | 4 - src/bika/lims/profiles/default/types.xml | 2 - .../default/types/WorksheetTemplate.xml | 48 ----- .../default/types/WorksheetTemplates.xml | 28 --- .../core/browser/controlpanel/configure.zcml | 1 + .../worksheettemplates/__init__.py | 19 ++ .../worksheettemplates/configure.zcml | 13 ++ .../controlpanel/worksheettemplates/view.py | 157 ++++++++++++++ src/senaite/core/content/worksheettemplate.py | 198 ++++++++++++++++++ .../core/content/worksheettemplates.py | 38 ++++ src/senaite/core/interfaces/__init__.py | 10 + .../core/profiles/default/metadata.xml | 2 +- src/senaite/core/profiles/default/types.xml | 4 + .../default/types/WorksheetTemplate.xml | 86 ++++++++ .../default/types/WorksheetTemplates.xml | 88 ++++++++ src/senaite/core/setuphandlers.py | 1 + .../tests/doctests/WorksheetApplyTemplate.rst | 8 +- src/senaite/core/upgrade/v02_06_000.py | 50 +++++ src/senaite/core/upgrade/v02_06_000.zcml | 8 + 27 files changed, 680 insertions(+), 211 deletions(-) delete mode 100644 src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.objects delete mode 100644 src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.properties delete mode 100644 src/bika/lims/profiles/default/types/WorksheetTemplate.xml delete mode 100644 src/bika/lims/profiles/default/types/WorksheetTemplates.xml create mode 100644 src/senaite/core/browser/controlpanel/worksheettemplates/__init__.py create mode 100644 src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml create mode 100644 src/senaite/core/browser/controlpanel/worksheettemplates/view.py create mode 100644 src/senaite/core/content/worksheettemplate.py create mode 100644 src/senaite/core/content/worksheettemplates.py create mode 100644 src/senaite/core/profiles/default/types/WorksheetTemplate.xml create mode 100644 src/senaite/core/profiles/default/types/WorksheetTemplates.xml diff --git a/src/bika/lims/content/worksheettemplate.py b/src/bika/lims/content/worksheettemplate.py index 0eccb5d2d7..cb29b5b642 100644 --- a/src/bika/lims/content/worksheettemplate.py +++ b/src/bika/lims/content/worksheettemplate.py @@ -152,6 +152,7 @@ schema["description"].widget.description = "" +# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/ class WorksheetTemplate(BaseContent): """Worksheet Templates """ diff --git a/src/bika/lims/controlpanel/bika_worksheettemplates.py b/src/bika/lims/controlpanel/bika_worksheettemplates.py index cbe88f3923..3bd94e7f9e 100644 --- a/src/bika/lims/controlpanel/bika_worksheettemplates.py +++ b/src/bika/lims/controlpanel/bika_worksheettemplates.py @@ -18,131 +18,20 @@ # Copyright 2018-2024 by it's authors. # Some rights reserved, see README and LICENSE. -import collections - -from bika.lims import api -from bika.lims import bikaMessageFactory as _ -from bika.lims.browser.bika_listing import BikaListingView from bika.lims.config import PROJECTNAME from bika.lims.interfaces import IWorksheetTemplates -from bika.lims.utils import get_link from plone.app.folder.folder import ATFolder from plone.app.folder.folder import ATFolderSchema from Products.Archetypes import atapi from Products.ATContentTypes.content import schemata from senaite.core.interfaces import IHideActionsMenu -from senaite.core.permissions import AddWorksheetTemplate from zope.interface.declarations import implements -class WorksheetTemplatesView(BikaListingView): - """Listing View for Worksheet Templates - """ - - def __init__(self, context, request): - super(WorksheetTemplatesView, self).__init__(context, request) - - self.catalog = "senaite_catalog_setup" - - self.contentFilter = { - "portal_type": "WorksheetTemplate", - "sort_on": "sortable_title", - "sort_order": "ascending", - } - - self.context_actions = { - _("Add"): - { - "url": "createObject?type_name=WorksheetTemplate", - "permission": AddWorksheetTemplate, - "icon": "++resource++bika.lims.images/add.png" - } - } - - self.title = self.context.translate(_("Worksheet Templates")) - self.icon = "{}/{}".format( - self.portal_url, - "/++resource++bika.lims.images/worksheettemplate_big.png" - ) - - self.show_select_row = False - self.show_select_column = True - - self.columns = collections.OrderedDict(( - ("Title", { - "title": _("Title"), - "index": "sortable_title", - }), - ("Description", { - "title": _("Description"), - "index": "description", - "toggle": True, - }), - ("Method", { - "title": _("Method"), - "toggle": True}), - ("Instrument", { - "title": _("Instrument"), - "index": "instrument_title", - "toggle": True, - }), - )) - - self.review_states = [ - { - "id": "default", - "title": _("Active"), - "contentFilter": {"is_active": True}, - "columns": self.columns.keys(), - }, { - "id": "inactive", - "title": _("Inactive"), - "contentFilter": {'is_active': False}, - "columns": self.columns.keys() - }, { - "id": "all", - "title": _("All"), - "contentFilter": {}, - "columns": self.columns.keys(), - }, - ] - - def folderitem(self, obj, item, index): - """Service triggered each time an item is iterated in folderitems. - The use of this service prevents the extra-loops in child objects. - :obj: the instance of the class to be foldered - :item: dict containing the properties of the object to be used by - the template - :index: current index of the item - """ - obj = api.get_object(obj) - item["Description"] = obj.Description() - item["replace"]["Title"] = get_link(item["url"], item["Title"]) - - instrument = obj.getInstrument() - if instrument: - instrument_url = api.get_url(instrument) - instrument_title = api.get_title(instrument) - item["Instrument"] = instrument_title - item["replace"]["Instrument"] = get_link( - instrument_url, value=instrument_title) - - # Method - method_uid = obj.getMethodUID() - if method_uid: - method = api.get_object_by_uid(method_uid) - method_url = api.get_url(method) - method_title = api.get_title(method) - item["Method"] = method_title - item["replace"]["Method"] = get_link( - method_url, value=method_title) - - return item - - schema = ATFolderSchema.copy() +# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/ class WorksheetTemplates(ATFolder): implements(IWorksheetTemplates, IHideActionsMenu) displayContentsTab = False diff --git a/src/bika/lims/controlpanel/configure.zcml b/src/bika/lims/controlpanel/configure.zcml index e398de5fa0..636642aea6 100644 --- a/src/bika/lims/controlpanel/configure.zcml +++ b/src/bika/lims/controlpanel/configure.zcml @@ -84,12 +84,4 @@ layer="bika.lims.interfaces.IBikaLIMS" /> - - diff --git a/src/bika/lims/profiles/default/factorytool.xml b/src/bika/lims/profiles/default/factorytool.xml index 92ebeb5c5d..afb8872e96 100644 --- a/src/bika/lims/profiles/default/factorytool.xml +++ b/src/bika/lims/profiles/default/factorytool.xml @@ -28,6 +28,5 @@ - diff --git a/src/bika/lims/profiles/default/propertiestool.xml b/src/bika/lims/profiles/default/propertiestool.xml index 0167f198aa..1b161a5c99 100644 --- a/src/bika/lims/profiles/default/propertiestool.xml +++ b/src/bika/lims/profiles/default/propertiestool.xml @@ -68,7 +68,6 @@ - diff --git a/src/bika/lims/profiles/default/structure/bika_setup/.objects b/src/bika/lims/profiles/default/structure/bika_setup/.objects index dcdcbf46ae..7c009cf341 100644 --- a/src/bika/lims/profiles/default/structure/bika_setup/.objects +++ b/src/bika/lims/profiles/default/structure/bika_setup/.objects @@ -6,5 +6,4 @@ bika_instruments,Instruments bika_labcontacts,LabContacts bika_referencedefinitions,ReferenceDefinitions bika_sampletypes,SampleTypes -bika_worksheettemplates,WorksheetTemplates laboratory,Laboratory diff --git a/src/bika/lims/profiles/default/structure/bika_setup/.preserve b/src/bika/lims/profiles/default/structure/bika_setup/.preserve index fdffabb6ff..4067247c71 100644 --- a/src/bika/lims/profiles/default/structure/bika_setup/.preserve +++ b/src/bika/lims/profiles/default/structure/bika_setup/.preserve @@ -7,5 +7,4 @@ bika_instruments bika_labcontacts bika_referencedefinitions bika_sampletypes -bika_worksheettemplates laboratory diff --git a/src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.objects b/src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.objects deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.properties b/src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.properties deleted file mode 100644 index aa1ed04c0e..0000000000 --- a/src/bika/lims/profiles/default/structure/bika_setup/bika_worksheettemplates/.properties +++ /dev/null @@ -1,4 +0,0 @@ -[DEFAULT] -description = -title = Worksheet Templates - diff --git a/src/bika/lims/profiles/default/types.xml b/src/bika/lims/profiles/default/types.xml index f3369356e2..bd85ea970a 100644 --- a/src/bika/lims/profiles/default/types.xml +++ b/src/bika/lims/profiles/default/types.xml @@ -48,8 +48,6 @@ - - diff --git a/src/bika/lims/profiles/default/types/WorksheetTemplate.xml b/src/bika/lims/profiles/default/types/WorksheetTemplate.xml deleted file mode 100644 index 5fcb084771..0000000000 --- a/src/bika/lims/profiles/default/types/WorksheetTemplate.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - Worksheet Template - - senaite_theme/icon/worksheettemplate - WorksheetTemplate - bika.lims - addWorksheetTemplate - - - False - False - - False - False - - - - - - - - - - - - - - diff --git a/src/bika/lims/profiles/default/types/WorksheetTemplates.xml b/src/bika/lims/profiles/default/types/WorksheetTemplates.xml deleted file mode 100644 index 313b09cba6..0000000000 --- a/src/bika/lims/profiles/default/types/WorksheetTemplates.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - Worksheet Templates - - senaite_theme/icon/worksheettemplate - WorksheetTemplates - bika.lims - addWorksheetTemplates - - - False - True - - - - False - False - - - - - - - diff --git a/src/senaite/core/browser/controlpanel/configure.zcml b/src/senaite/core/browser/controlpanel/configure.zcml index 3cbcb8ae93..5ebee060c5 100644 --- a/src/senaite/core/browser/controlpanel/configure.zcml +++ b/src/senaite/core/browser/controlpanel/configure.zcml @@ -43,5 +43,6 @@ + diff --git a/src/senaite/core/browser/controlpanel/worksheettemplates/__init__.py b/src/senaite/core/browser/controlpanel/worksheettemplates/__init__.py new file mode 100644 index 0000000000..b0d48c9ed7 --- /dev/null +++ b/src/senaite/core/browser/controlpanel/worksheettemplates/__init__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. diff --git a/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml b/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml new file mode 100644 index 0000000000..ad46ecce88 --- /dev/null +++ b/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml @@ -0,0 +1,13 @@ + + + + + + diff --git a/src/senaite/core/browser/controlpanel/worksheettemplates/view.py b/src/senaite/core/browser/controlpanel/worksheettemplates/view.py new file mode 100644 index 0000000000..5f4d260cfe --- /dev/null +++ b/src/senaite/core/browser/controlpanel/worksheettemplates/view.py @@ -0,0 +1,157 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +import collections + +from bika.lims import api +from bika.lims import senaiteMessageFactory as _ +from bika.lims.utils import get_link +from bika.lims.utils import get_link_for +from senaite.core.permissions import AddWorksheetTemplate +from senaite.core.i18n import translate +from senaite.app.listing import ListingView +from senaite.core.catalog import SETUP_CATALOG + + +class WorksheetTemplatesView(ListingView): + """Listing View for Worksheet Templates + """ + + def __init__(self, context, request): + super(WorksheetTemplatesView, self).__init__(context, request) + + self.catalog = SETUP_CATALOG + + self.contentFilter = { + "portal_type": "WorksheetTemplate", + "sort_on": "sortable_title", + "sort_order": "ascending", + "path": { + "query": api.get_path(self.context), + "depth": 1, + }, + } + + self.context_actions = { + _(u"listing_worksheettemplates_action_add", default=u"Add"): { + "url": "++add++WorksheetTemplate", + "permission": AddWorksheetTemplate, + "icon": "senaite_theme/icon/plus" + } + } + + self.title = translate(_( + u"listing_worksheettemplates_title", + default=u"Worksheet Templates") + ) + self.icon = api.get_icon("WorksheetTemplates", html_tag=False) + self.show_select_column = True + + self.columns = collections.OrderedDict(( + ("Name", { + "title": _( + u"listing_worksheettemplates_column_name", + default=u"Name", + ), + "index": "sortable_title", + }), + ("Description", { + "title": _( + u"listing_worksheettemplates_column_description", + default=u"Description" + ), + "toggle": True, + }), + ("Method", { + "title": _( + u"listing_worksheettemplates_column_method", + default=u"Method" + ), + "toggle": True, + }), + ("Instrument", { + "title": _( + u"listing_worksheettemplates_column_instrument", + default=u"Instrument" + ), + "index": "instrument_title", + "toggle": True, + }), + )) + + self.review_states = [ + { + "id": "default", + "title": _( + u"listing_worksheettemplates_state_active", + default=u"Active" + ), + "contentFilter": {"is_active": True}, + "columns": self.columns.keys(), + }, { + "id": "inactive", + "title": _( + u"listing_worksheettemplates_state_inactive", + default=u"Inactive" + ), + "contentFilter": {'is_active': False}, + "columns": self.columns.keys(), + }, { + "id": "all", + "title": _( + u"listing_worksheettemplates_state_all", + default=u"All" + ), + "contentFilter": {}, + "columns": self.columns.keys(), + }, + ] + + def folderitem(self, obj, item, index): + """Service triggered each time an item is iterated in folderitems. + The use of this service prevents the extra-loops in child objects. + :obj: the instance of the class to be foldered + :item: dict containing the properties of the object to be used by + the template + :index: current index of the item + """ + obj = api.get_object(obj) + item["Description"] = api.get_description(obj) + item["replace"]["Name"] = get_link_for(obj) + + instrument = obj.getInstrument() + if instrument: + instrument_url = api.get_url(instrument) + instrument_title = api.get_title(instrument) + item["Instrument"] = instrument_title + item["replace"]["Instrument"] = get_link( + instrument_url, value=instrument_title) + + # Method + method_uid = obj.getMethodUID() + if method_uid: + method = api.get_object_by_uid(method_uid) + method_url = api.get_url(method) + method_title = api.get_title(method) + item["Method"] = method_title + item["replace"]["Method"] = get_link( + method_url, value=method_title) + + return item diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py new file mode 100644 index 0000000000..e9e995beb5 --- /dev/null +++ b/src/senaite/core/content/worksheettemplate.py @@ -0,0 +1,198 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +from AccessControl import ClassSecurityInfo +from Products.CMFCore import permissions +from bika.lims import senaiteMessageFactory as _ +from bika.lims.interfaces import IDeactivable +from plone.supermodel import model +from plone.autoform import directives +from senaite.core.catalog import SETUP_CATALOG +from senaite.core.schema import UIDReferenceField +from senaite.core.content.base import Container +from senaite.core.interfaces import IWorksheetTemplate +from senaite.core.z3cform.widgets.uidreference import UIDReferenceWidgetFactory +from zope import schema +from zope.interface import implementer + + +class IWorksheetTemplateSchema(model.Schema): + """Schema interface + """ + + title = schema.TextLine( + title=_( + u"title_worksheettemplate_title", + default=u"Name" + ), + required=True, + ) + + description = schema.Text( + title=_( + u"title_worksheettemplate_description", + default=u"Description" + ), + required=False, + ) + + directives.widget( + "restrict_to_method", + UIDReferenceWidgetFactory, + catalog=SETUP_CATALOG, + query={ + "portal_type": "Method", + "is_active": True, + "sort_limit": 5, + "sort_on": "sortable_title", + "sort_order": "ascending", + }, + display_template="${getFullname}", + columns=get_labcontact_columns, + limit=5, + ) + restrict_to_method = UIDReferenceField( + title=_( + u"label_worksheettemplate_restrict_to_method", + default=u"Restrict to Method" + ), + description=_( + u"description_worksheettemplate_restrict_to_method", + default=u"Restrict the available analysis services and " + u"instruments to those with the selected method.
" + u"In order to apply this change to the services list, " + u"you should save the change first." + ), + allowed_types=("Method",), + multi_valued=False, + required=False, + ) + + directives.widget( + "instrument", + UIDReferenceWidgetFactory, + catalog=SETUP_CATALOG, + query="get_widget_instrument_query", + display_template="${getFullname}", + columns=get_labcontact_columns, + limit=5, + ) + instrument = UIDReferenceField( + title=_( + u"label_worksheettemplate_instrument", + default=u"Preferred instrument" + ), + description=_(u"description_worksheettemplate_instrument", + default=u"Select the preferred instrument"), + allowed_types=("Instrument",), + multi_valued=False, + required=False, + ) + + enable_multiple_use_of_instrument = schema.Bool( + title=_( + u"label_worksheettemplate_enable_multiple_user_of_instrument", + default=u"Enable Multiple Use of Instrument in Worksheets", + ), + description=_( + u"description_worksheettemplate_multiple_user_of_instrument", + default=u"If unchecked, Lab Managers won't be able to assign " + u"the same Instrument more than one Analyses while " + u"creating a Worksheet." + ), + required=False, + ) + + model.fieldset( + "layout", + label=_( + u"label_fieldset_worksheettemplate_layout", + default=u"Layout" + ), + fields=[ + "layout", + ] + ) + + layout = schema.TextLine() + + # RecordsField( + # "Layout", + # schemata="Layout", + # required=1, + # type="templateposition", + # subfields=("pos", "type", "blank_ref", "control_ref", "dup"), + # required_subfields=("pos", "type"), + # subfield_labels={ + # "pos": _("Position"), + # "type": _("Analysis Type"), + # "blank_ref": _("Reference"), + # "control_ref": _("Reference"), + # "dup": _("Duplicate Of") + # }, + # widget=WorksheetTemplateLayoutWidget( + # label=_("Worksheet Layout"), + # description=_( + # "Specify the size of the Worksheet, e.g. corresponding to a " + # "specific instrument's tray size. " + # "Then select an Analysis 'type' per Worksheet position." + # "Where QC samples are selected, also select which Reference " + # "Sample should be used." + # "If a duplicate analysis is selected, indicate which sample " + # "position it should be a duplicate of"), + # ) + # ), + + model.fieldset( + "analyses", + label=_( + u"label_fieldset_worksheettemplate_analyses", + default=u"Analyses" + ), + fields=[ + "service", + ] + ) + + service = schema.TextLine() + + # UIDReferenceField( + # "Service", + # schemata="Analyses", + # required=0, + # multiValued=1, + # allowed_types=("AnalysisService",), + # widget=ServicesWidget( + # label=_("Analysis Service"), + # description=_( + # "Select which Analyses should be included on the Worksheet" + # ), + # ) + # ), + + +@implementer(IWorksheetTemplate, IWorksheetTemplateSchema, IDeactivable) +class WorksheetTemplates(Container): + """Worksheet Template type + """ + # Catalogs where this type will be catalogued + _catalogs = [SETUP_CATALOG] + + security = ClassSecurityInfo() diff --git a/src/senaite/core/content/worksheettemplates.py b/src/senaite/core/content/worksheettemplates.py new file mode 100644 index 0000000000..ae4f8bc9c2 --- /dev/null +++ b/src/senaite/core/content/worksheettemplates.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +from bika.lims.interfaces import IDoNotSupportSnapshots +from plone.supermodel import model +from senaite.core.content.base import Container +from senaite.core.interfaces import IHideActionsMenu +from senaite.core.interfaces import IWorksheetTemplates +from zope.interface import implementer + + +class IWorksheetTemplatesSchema(model.Schema): + """Schema interface + """ + + +@implementer(IWorksheetTemplates, IWorksheetTemplatesSchema, + IDoNotSupportSnapshots, IHideActionsMenu) +class WorksheetTemplate(Container): + """A container for worksheet templates type + """ diff --git a/src/senaite/core/interfaces/__init__.py b/src/senaite/core/interfaces/__init__.py index 550f0fd0b5..44f7f18bf9 100644 --- a/src/senaite/core/interfaces/__init__.py +++ b/src/senaite/core/interfaces/__init__.py @@ -478,3 +478,13 @@ def getPrice(self): def getTotalPrice(self): """Returns the total price of the instance """ + + +class IWorksheetTemplates(Interface): + """Marker interface for Worksheet Templates + """ + + +class IWorksheetTemplate(Interface): + """Marker interface for Worksheet Template + """ diff --git a/src/senaite/core/profiles/default/metadata.xml b/src/senaite/core/profiles/default/metadata.xml index 4a777f8183..e831ec58ff 100644 --- a/src/senaite/core/profiles/default/metadata.xml +++ b/src/senaite/core/profiles/default/metadata.xml @@ -1,6 +1,6 @@ - 2643 + 2644 profile-Products.ATContentTypes:base profile-Products.CMFEditions:CMFEditions diff --git a/src/senaite/core/profiles/default/types.xml b/src/senaite/core/profiles/default/types.xml index 8139b95f15..f109686185 100644 --- a/src/senaite/core/profiles/default/types.xml +++ b/src/senaite/core/profiles/default/types.xml @@ -100,4 +100,8 @@ + + + + diff --git a/src/senaite/core/profiles/default/types/WorksheetTemplate.xml b/src/senaite/core/profiles/default/types/WorksheetTemplate.xml new file mode 100644 index 0000000000..ce9d083b7e --- /dev/null +++ b/src/senaite/core/profiles/default/types/WorksheetTemplate.xml @@ -0,0 +1,86 @@ + + + + + Worksheet Template + + + + senaite_theme/icon/worksheettemplate + + + WorksheetTemplate + + + string:${folder_url}/++add++WorksheetTemplate + + + view + + + False + + + True + + + + + False + + + view + + + + + False + + + cmf.AddPortalContent + + + senaite.core.content.worksheettemplate.IWorksheetTemplateSchema + senaite.core.content.worksheettemplate.WorksheetTemplate + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/senaite/core/profiles/default/types/WorksheetTemplates.xml b/src/senaite/core/profiles/default/types/WorksheetTemplates.xml new file mode 100644 index 0000000000..fb27dfbe9c --- /dev/null +++ b/src/senaite/core/profiles/default/types/WorksheetTemplates.xml @@ -0,0 +1,88 @@ + + + + + Worksheet Templates + + + + senaite_theme/icon/worksheettemplate + + + WorksheetTemplates + + + string:${folder_url}/++add++WorksheetTemplates + + + view + + + True + + + True + + + + + + False + + + view + + + + + False + + + cmf.AddPortalContent + + + senaite.core.content.worksheettemplates.IWorksheetTemplatesSchema + senaite.core.content.worksheettemplates.WorksheetTemplates + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/senaite/core/setuphandlers.py b/src/senaite/core/setuphandlers.py index 5dc9fa60d0..5614448f89 100644 --- a/src/senaite/core/setuphandlers.py +++ b/src/senaite/core/setuphandlers.py @@ -244,6 +244,7 @@ def add_senaite_setup_items(portal): "InterpretationTemplates"), ("labproducts", "Lab Products", "LabProducts"), ("suppliers", "Suppliers", "Suppliers"), + ("worksheettemplates", "Worksheet Templates", "WorksheetTemplates"), ] setup = api.get_senaite_setup() add_dexterity_items(setup, items) diff --git a/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst b/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst index 512cafcbce..0e2986b087 100644 --- a/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst +++ b/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst @@ -135,7 +135,7 @@ layout with 7 slots: ... 'control_ref': '', ... 'dup': ''}, ... ] - >>> template = api.create(bikasetup.bika_worksheettemplates, "WorksheetTemplate", title="WS Template Test", Layout=layout, Service=service_uids) + >>> template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Test", Layout=layout, Service=service_uids) Apply Worksheet Template to a Worksheet @@ -627,7 +627,7 @@ Create a Worksheet Template without services assigned: ... 'control_ref': '', ... 'dup': ''}, ... ] - >>> empty_template = api.create(bikasetup.bika_worksheettemplates, "WorksheetTemplate", title="WS Template Empty Test", Layout=layout, Service=service_uids) + >>> empty_template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Empty Test", Layout=layout, Service=service_uids) Create and receive 2 samples: @@ -677,7 +677,7 @@ Create a Worksheet Template and assign the instrument: ... 'control_ref': '', ... 'dup': ''}, ... ] - >>> instr_template = api.create(bikasetup.bika_worksheettemplates, + >>> instr_template = api.create(setup.worksheettemplates, ... "WorksheetTemplate", ... title="WS Template with instrument", ... Layout=layout, @@ -754,7 +754,7 @@ Create a Worksheet Template and assign the method: ... 'control_ref': '', ... 'dup': ''}, ... ] - >>> method_template = api.create(bikasetup.bika_worksheettemplates, + >>> method_template = api.create(setup.worksheettemplates, ... "WorksheetTemplate", ... title="WS Template with instrument", ... Layout=layout, diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index a9d6cc9964..d7201fb171 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -99,6 +99,8 @@ "LabProducts", "Supplier", "Suppliers", + "WorksheetTemplate", + "WorksheetTemplates", ] CONTENT_ACTIONS = [ @@ -2249,3 +2251,51 @@ def migrate_labproduct_to_dx(src, destination=None): migrator.copy_id(src, target) logger.info("Migrated LabProduct from %s -> %s" % (src, target)) + + +@upgradestep(product, version) +def migrate_worksheettemplates_to_dx(tool): + """Convert existing worksheet templates to Dexterity + """ + logger.info("Convert Worksheet Templates to Dexterity ...") + + # ensure old AT types are flushed first + remove_at_portal_types(tool) + + # run required import steps + tool.runImportStepFromProfile(profile, "typeinfo") + tool.runImportStepFromProfile(profile, "workflow") + + # get the old container + origin = api.get_setup().get("bika_worksheettemplates") + if not origin: + # old container is already gone + return + + # get the destination container + destination = get_setup_folder("worksheettemplates") + + # un-catalog the old container + uncatalog_object(origin) + + # Mapping from schema field name to a tuple of + # (accessor, target field name, default value) + schema_mapping = { + "title": ("Title", "title", ""), + "description": ("Description", "description", ""), + } + + # migrate the contents from the old AT container to the new one + migrate_to_dx("WorksheetTemplate", + origin, destination, schema_mapping) + + # copy snapshots for the container + copy_snapshots(origin, destination) + + # remove old AT folder + if len(origin) == 0: + delete_object(origin) + else: + logger.warn("Cannot remove {}. Is not empty".format(origin)) + + logger.info("Convert Worksheet Templates to Dexterity [DONE]") diff --git a/src/senaite/core/upgrade/v02_06_000.zcml b/src/senaite/core/upgrade/v02_06_000.zcml index ab1d440f5c..5cd2d13b6c 100644 --- a/src/senaite/core/upgrade/v02_06_000.zcml +++ b/src/senaite/core/upgrade/v02_06_000.zcml @@ -3,6 +3,14 @@ xmlns:genericsetup="http://namespaces.zope.org/genericsetup" i18n_domain="senaite.core"> + + Date: Thu, 18 Jul 2024 15:57:17 +0700 Subject: [PATCH 02/31] method for migrate --- .../controlpanel/worksheettemplates/view.py | 15 +- .../core/browser/widgets/configure.zcml | 8 + .../worksheettemplate_services_widget.py | 78 +++++ src/senaite/core/content/worksheettemplate.py | 302 +++++++++++++++--- src/senaite/core/upgrade/v02_06_000.py | 97 +++++- 5 files changed, 420 insertions(+), 80 deletions(-) create mode 100644 src/senaite/core/browser/widgets/worksheettemplate_services_widget.py diff --git a/src/senaite/core/browser/controlpanel/worksheettemplates/view.py b/src/senaite/core/browser/controlpanel/worksheettemplates/view.py index 5f4d260cfe..48b9f8e163 100644 --- a/src/senaite/core/browser/controlpanel/worksheettemplates/view.py +++ b/src/senaite/core/browser/controlpanel/worksheettemplates/view.py @@ -22,7 +22,6 @@ from bika.lims import api from bika.lims import senaiteMessageFactory as _ -from bika.lims.utils import get_link from bika.lims.utils import get_link_for from senaite.core.permissions import AddWorksheetTemplate from senaite.core.i18n import translate @@ -138,20 +137,14 @@ def folderitem(self, obj, item, index): instrument = obj.getInstrument() if instrument: - instrument_url = api.get_url(instrument) instrument_title = api.get_title(instrument) item["Instrument"] = instrument_title - item["replace"]["Instrument"] = get_link( - instrument_url, value=instrument_title) + item["replace"]["Instrument"] = get_link_for(instrument) - # Method - method_uid = obj.getMethodUID() - if method_uid: - method = api.get_object_by_uid(method_uid) - method_url = api.get_url(method) + method = obj.getMethod() + if method: method_title = api.get_title(method) item["Method"] = method_title - item["replace"]["Method"] = get_link( - method_url, value=method_title) + item["replace"]["Method"] = get_link_for(method) return item diff --git a/src/senaite/core/browser/widgets/configure.zcml b/src/senaite/core/browser/widgets/configure.zcml index eb693683d4..f3f72c0f34 100644 --- a/src/senaite/core/browser/widgets/configure.zcml +++ b/src/senaite/core/browser/widgets/configure.zcml @@ -12,6 +12,14 @@ layer="senaite.core.interfaces.ISenaiteCore" /> + + >> self.getRawServices() + [{'uid': '...', ...] + + :returns: List of dicts including `uid` + """ + accessor = self.accessor("services") + return accessor(self) or [] + + @security.protected(permissions.View) + def getServices(self): + """Returns a list of service objects + + >>> self.getServices() + [, , ...] + + :returns: List of analysis service objects + """ + records = self.getRawServices() + service_uids = map(lambda r: r.get("uid"), records) + return list(map(api.get_object, service_uids)) + + @security.protected(permissions.ModifyPortalContent) + def setServices(self, value): + """Set services for the template + + This method accepts either a list of analysis service objects, a list + of analysis service UIDs or a list of analysis profile service records + containing the key `uid`: + + >>> self.setServices([, ...]) + >>> self.setServices(['353e1d9bd45d45dbabc837114a9c41e6', '...', ...]) + >>> self.setServices([{'uid': '...'}, ...]) + + Raises a TypeError if the value does not match any allowed type. + """ + if not isinstance(value, list): + value = [value] + + records = [] + for v in value: + uid = "" + if isinstance(v, dict): + uid = api.get_uid(v.get("uid")) + elif api.is_object(v): + uid = api.get_uid(v) + elif api.is_uid(v): + obj = api.get_object(v) + uid = v + else: + raise TypeError( + "Expected object, uid or record, got %r" % type(v)) + records.append({ + "uid": uid, + }) + + mutator = self.mutator("services") + mutator(self, records) + + # BBB: AT schema field property + Services = property(getServices, setServices) + + @security.private + def get_instrument_query(self): + """Return the preferred instruments + """ + query = { + "portal_type": "Instrument", + "is_active": True, + "sort_on": "sortable_title", + "sort_order": "ascending", + } + + # Restrict available instruments to those with the selected method + method_uid = self.getRawRestrictToMethod() + if method_uid: + # prepare subquery + uids = [] + brains = api.search(query, SETUP_CATALOG) + for brain in brains: + uid = api.get_uid(brain) + instrument = api.get_object(brain) + if method_uid in instrument.getRawMethods(): + uids.append(uid) + # create a simple UID query + query = {"UID": uids} + return query diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index d7201fb171..e86604e5f1 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -2278,24 +2278,89 @@ def migrate_worksheettemplates_to_dx(tool): # un-catalog the old container uncatalog_object(origin) - # Mapping from schema field name to a tuple of - # (accessor, target field name, default value) - schema_mapping = { - "title": ("Title", "title", ""), - "description": ("Description", "description", ""), - } + query = {"portal_type": "WorksheetTemplate"} + # search all AT based worksheet templates + brains = api.search(query, SETUP_CATALOG) + total = len(brains) - # migrate the contents from the old AT container to the new one - migrate_to_dx("WorksheetTemplate", - origin, destination, schema_mapping) + # get all objects first + objects = map(api.get_object, brains) + for num, obj in enumerate(objects): + migrate_ws_template_to_dx(obj, destination) - # copy snapshots for the container - copy_snapshots(origin, destination) + logger.info("Migrated WorksheetTemplate {0}/{1}: {2} -> {3}".format( + num, total, api.get_path(obj), api.get_path(obj))) - # remove old AT folder - if len(origin) == 0: - delete_object(origin) - else: - logger.warn("Cannot remove {}. Is not empty".format(origin)) + if origin: + # remove old AT folder + if len(origin) == 0: + delete_object(origin) + else: + logger.warn("Cannot remove {}. Is not empty".format(origin)) logger.info("Convert Worksheet Templates to Dexterity [DONE]") + + +def migrate_ws_template_to_dx(source, destination): + """Migrates a WorksheetTemplate to DX in destination folder + + :param source: The source AT object + :param destination: The destination folder + """ + + # Create the object if it does not exist yet + src_id = source.getId() + target_id = src_id + + target = destination.get(target_id) + if not target: + # Don't use the api to skip the auto-id generation + target = createContent("WorksheetTemplate", id=target_id) + destination._setObject(target_id, target) + target = destination._getOb(target_id) + + # Manually set the fields + # NOTE: always convert string values to unicode for dexterity fields! + target.title = api.safe_unicode(source.Title() or "") + target.description = api.safe_unicode(source.Description() or "") + target.setRestrictToMethod(source.getRestrictToMethod()) + target.setInstrument(source.getInstrument()) + target.setEnableMultipleUseOfInstrument( + source.getEnableMultipleUseOfInstrument()) + target.setServices(source.getService()) + + # Migrate the contents from AT to DX + migrator = getMultiAdapter( + (source, target), interface=IContentMigrator) + + # copy all (raw) attributes from the source object to the target + migrator.copy_attributes(source, target) + + # copy the UID + migrator.copy_uid(source, target) + + # copy auditlog + migrator.copy_snapshots(source, target) + + # copy creators + migrator.copy_creators(source, target) + + # copy workflow history + migrator.copy_workflow_history(source, target) + + # copy marker interfaces + migrator.copy_marker_interfaces(source, target) + + # copy dates + migrator.copy_dates(source, target) + + # uncatalog the source object + migrator.uncatalog_object(source) + + # delete the old object + migrator.delete_object(source) + + # change the ID *after* the original object was removed + migrator.copy_id(source, target) + + return target From fd79288e5ac480d73356e6d527f71f81a0673b10 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Fri, 19 Jul 2024 12:42:10 +0700 Subject: [PATCH 03/31] fixed typo's --- .../browser/worksheet/views/add_analyses.py | 2 +- src/bika/lims/content/worksheet.py | 2 +- .../core/browser/controlpanel/configure.zcml | 2 +- .../worksheettemplates/configure.zcml | 2 +- .../controlpanel/worksheettemplates/view.py | 2 +- .../worksheettemplate_services_widget.py | 88 +++++++++---------- src/senaite/core/content/worksheettemplate.py | 85 +++++++++--------- .../core/content/worksheettemplates.py | 2 +- .../tests/doctests/WorksheetApplyTemplate.rst | 12 +-- 9 files changed, 97 insertions(+), 100 deletions(-) diff --git a/src/bika/lims/browser/worksheet/views/add_analyses.py b/src/bika/lims/browser/worksheet/views/add_analyses.py index 78887e2f19..67a411829c 100644 --- a/src/bika/lims/browser/worksheet/views/add_analyses.py +++ b/src/bika/lims/browser/worksheet/views/add_analyses.py @@ -168,7 +168,7 @@ def update(self): new_states = [] if wst: - wst_service_uids = wst.getRawService() + wst_service_uids = wst.getRawServices() # restrict to the selected template services if wst_service_uids: new_states.append({ diff --git a/src/bika/lims/content/worksheet.py b/src/bika/lims/content/worksheet.py index 816695ee3d..f5814a402d 100644 --- a/src/bika/lims/content/worksheet.py +++ b/src/bika/lims/content/worksheet.py @@ -842,7 +842,7 @@ def _apply_worksheet_template_routine_analyses(self, wst): :returns: None """ # Get the services from the Worksheet Template - service_uids = wst.getRawService() + service_uids = wst.getRawServices() if not service_uids: # No service uids assigned to this Worksheet Template, skip logger.warn("Worksheet Template {} has no services assigned" diff --git a/src/senaite/core/browser/controlpanel/configure.zcml b/src/senaite/core/browser/controlpanel/configure.zcml index 5ebee060c5..ec485aaa26 100644 --- a/src/senaite/core/browser/controlpanel/configure.zcml +++ b/src/senaite/core/browser/controlpanel/configure.zcml @@ -43,6 +43,6 @@ - + diff --git a/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml b/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml index ad46ecce88..d04492a4d7 100644 --- a/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml +++ b/src/senaite/core/browser/controlpanel/worksheettemplates/configure.zcml @@ -3,7 +3,7 @@ xmlns:browser="http://namespaces.zope.org/browser"> >> template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Test", Layout=layout, Service=service_uids) + >>> template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Test", Layout=layout, Services=service_uids) Apply Worksheet Template to a Worksheet @@ -367,7 +367,7 @@ Then, we create the associated Reference Samples: Apply the blank and control to the Worksheet Template layout: - >>> layout = template.getLayout() + >>> layout = template.getTemplateLayout() >>> layout[5] = {'pos': '6', 'type': 'c', ... 'blank_ref': '', ... 'control_ref': controldef.UID(), @@ -473,7 +473,7 @@ WorksheetTemplate assignment to a non-empty Worksheet Worksheet Template can also be used when the worksheet is not empty. The template has slots available for routine analyses in positions 1, 2 and 4: - >>> layout = template.getLayout() + >>> layout = template.getTemplateLayout() >>> slots = filter(lambda p: p["type"] == "a", layout) >>> sorted(map(lambda p: int(p.get("pos")), slots)) [1, 2, 4] @@ -627,7 +627,7 @@ Create a Worksheet Template without services assigned: ... 'control_ref': '', ... 'dup': ''}, ... ] - >>> empty_template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Empty Test", Layout=layout, Service=service_uids) + >>> empty_template = api.create(setup.worksheettemplates, "WorksheetTemplate", title="WS Template Empty Test", Layout=layout, Services=service_uids) Create and receive 2 samples: @@ -682,7 +682,7 @@ Create a Worksheet Template and assign the instrument: ... title="WS Template with instrument", ... Layout=layout, ... Instrument=instrument, - ... Service=service_uids) + ... Services=service_uids) Reject any previous analyses awaiting for assignment: @@ -759,7 +759,7 @@ Create a Worksheet Template and assign the method: ... title="WS Template with instrument", ... Layout=layout, ... RestrictToMethod=method, - ... Service=service_uids) + ... Services=service_uids) Create and receive 2 samples: From bf9ba1975d9e85306061d158de0d3cdb9f404cef Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Fri, 19 Jul 2024 13:07:38 +0700 Subject: [PATCH 04/31] refactoring for new methods name --- src/bika/lims/content/worksheet.py | 8 +++---- src/senaite/core/content/worksheettemplate.py | 23 ++++++++++++++++--- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/src/bika/lims/content/worksheet.py b/src/bika/lims/content/worksheet.py index f5814a402d..657dbc6982 100644 --- a/src/bika/lims/content/worksheet.py +++ b/src/bika/lims/content/worksheet.py @@ -577,7 +577,7 @@ def get_suitable_slot_for_duplicate(self, src_slot): # If there is a match with the layout defined in the Worksheet # Template, use that slot instead of adding a new one at the end of # the worksheet - layout = wst.getLayout() + layout = wst.getTemplateLayout() for pos in layout: if pos['type'] != 'd' or to_int(pos['dup']) != slot_from: continue @@ -622,7 +622,7 @@ def get_suitable_slot_for_reference(self, reference): # If there is a match with the layout defined in the Worksheet Template, # use that slot instead of adding a new one at the end of the worksheet slot_type = reference.getBlank() and 'b' or 'c' - layout = wst.getLayout() + layout = wst.getTemplateLayout() for pos in layout: if pos['type'] != slot_type: @@ -930,7 +930,7 @@ def _apply_worksheet_template_duplicate_analyses(self, wst): :param wst: worksheet template used as the layout :returns: None """ - wst_layout = wst.getLayout() + wst_layout = wst.getTemplateLayout() for row in wst_layout: if row['type'] != 'd': @@ -1006,7 +1006,7 @@ def _resolve_reference_samples(self, wst, type): slots_sample = list() available_slots = self.resolve_available_slots(wst, type) - wst_layout = wst.getLayout() + wst_layout = wst.getTemplateLayout() for row in wst_layout: slot = int(row['pos']) if slot not in available_slots: diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index d1e7a11da1..bff919dc05 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -251,6 +251,13 @@ class WorksheetTemplate(Container): security = ClassSecurityInfo() + @security.protected(permissions.View) + def getRawRestrictToMethod(self): + method = self.getRestrictToMethod() + if method: + return method.UID() + return None + @security.protected(permissions.View) def getRestrictToMethod(self): accessor = self.accessor("restrict_to_method") @@ -264,6 +271,13 @@ def setRestrictToMethod(self, value): # BBB: AT schema field property RestrictToMethod = property(getRestrictToMethod, setRestrictToMethod) + @security.protected(permissions.View) + def getRawInstrument(self): + instrument = self.getInstrument() + if instrument: + return instrument.UID() + return None + @security.protected(permissions.View) def getInstrument(self): accessor = self.accessor("instrument") @@ -309,12 +323,15 @@ def getRawServices(self): """Return the raw value of the services field >>> self.getRawServices() - [{'uid': '...', ...] + ['', ...] - :returns: List of dicts including `uid` + :returns: List of uid's """ accessor = self.accessor("services") - return accessor(self) or [] + services = accessor(self) + if services: + return list(map(lambda item: item.get("uid"), services)) + return [] @security.protected(permissions.View) def getServices(self): From 570fe56d6e1f670e3b4f7ae9d6ccc4dd7784d2e2 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Fri, 19 Jul 2024 14:24:19 +0700 Subject: [PATCH 05/31] fix test, refactoring --- .../browser/worksheet/views/add_analyses.py | 4 +- src/bika/lims/content/worksheet.py | 4 +- src/senaite/core/content/worksheettemplate.py | 60 ++++++++++--------- .../tests/doctests/WorksheetApplyTemplate.rst | 4 +- 4 files changed, 38 insertions(+), 34 deletions(-) diff --git a/src/bika/lims/browser/worksheet/views/add_analyses.py b/src/bika/lims/browser/worksheet/views/add_analyses.py index 67a411829c..b4094aaacb 100644 --- a/src/bika/lims/browser/worksheet/views/add_analyses.py +++ b/src/bika/lims/browser/worksheet/views/add_analyses.py @@ -223,8 +223,8 @@ def handle_submit(self): def worksheet_template_setup_url(self): """Returns the Worksheet Template Setup URL """ - setup = api.get_setup() - return "{}/{}".format(api.get_url(setup), "bika_worksheettemplates") + setup = api.get_senaite_setup() + return "{}/{}".format(api.get_url(setup), "worksheettemplates") @view.memoize def is_edit_allowed(self): diff --git a/src/bika/lims/content/worksheet.py b/src/bika/lims/content/worksheet.py index 657dbc6982..8cd292560a 100644 --- a/src/bika/lims/content/worksheet.py +++ b/src/bika/lims/content/worksheet.py @@ -805,7 +805,7 @@ def resolve_available_slots(self, worksheet_template, type='a'): return list() ws_slots = self.get_slot_positions(type) - layout = worksheet_template.getLayout() + layout = worksheet_template.getTemplateLayout() slots = list() for row in layout: @@ -1025,7 +1025,7 @@ def _resolve_reference_samples(self, wst, type): # We only want the reference samples that fit better with the type # and with the analyses defined in the Template - services = wst.getService() + services = wst.getServices() services = [s.UID() for s in services] candidates = list() for sample in samples: diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index bff919dc05..7390b6ddb5 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -60,30 +60,35 @@ class ILayoutRecord(Interface): required=True, default=u"1", ) - # type = schema.Choice( - # title=_( - # u"title_layout_record_type", - # default=u"Analysis Type" - # ), - # ) - # blank_ref = schema.Choice( - # title=_( - # u"title_layout_record_blank_ref", - # default=u"Reference" - # ), - # ) - # control_ref = schema.Choice( - # title=_( - # u"title_layout_record_control_ref", - # default=u"Reference" - # ), - # ) - # dup = schema.Choice( - # title=_( - # u"title_layout_record_dup", - # default=u"Duplicate Of" - # ), - # ) + type = schema.TextLine( + title=_( + u"title_layout_record_type", + default=u"Analysis Type" + ), + required=True, + default=u"a", + ) + blank_ref = schema.TextLine( + title=_( + u"title_layout_record_blank_ref", + default=u"Reference" + ), + required=False, + ) + control_ref = schema.TextLine( + title=_( + u"title_layout_record_control_ref", + default=u"Reference" + ), + required=False, + ) + dup = schema.TextLine( + title=_( + u"title_layout_record_dup", + default=u"Duplicate Of" + ), + required=False, + ) class IWorksheetTemplateSchema(model.Schema): @@ -330,7 +335,7 @@ def getRawServices(self): accessor = self.accessor("services") services = accessor(self) if services: - return list(map(lambda item: item.get("uid"), services)) + return [s.get("uid") for s in services] return [] @security.protected(permissions.View) @@ -342,9 +347,8 @@ def getServices(self): :returns: List of analysis service objects """ - records = self.getRawServices() - service_uids = map(lambda r: r.get("uid"), records) - return list(map(api.get_object, service_uids)) + services_uids = self.getRawServices() + return list(map(api.get_object, services_uids)) @security.protected(permissions.ModifyPortalContent) def setServices(self, value): diff --git a/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst b/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst index 62c10d6152..6f1300d612 100644 --- a/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst +++ b/src/senaite/core/tests/doctests/WorksheetApplyTemplate.rst @@ -237,7 +237,7 @@ Modify the Worksheet Template to allow `Au` analysis and apply the template to t same Worksheet again: >>> service_uids = [Cu.UID(), Fe.UID(), Au.UID()] - >>> template.setService(service_uids) + >>> template.setServices(service_uids) >>> worksheet.applyWorksheetTemplate(template) Now, slot 2 is filled again: @@ -376,7 +376,7 @@ Apply the blank and control to the Worksheet Template layout: ... 'blank_ref': blankdef.UID(), ... 'control_ref': '', ... 'dup': ''} - >>> template.setLayout(layout) + >>> template.setTemplateLayout(layout) Apply the worksheet template again: From 7f974676457de715767ca36726b7745315f916f8 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Thu, 25 Jul 2024 19:39:18 +0700 Subject: [PATCH 06/31] fixed configure adapter --- src/senaite/core/browser/form/adapters/configure.zcml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/senaite/core/browser/form/adapters/configure.zcml b/src/senaite/core/browser/form/adapters/configure.zcml index 0c6879f011..cce93c93b2 100644 --- a/src/senaite/core/browser/form/adapters/configure.zcml +++ b/src/senaite/core/browser/form/adapters/configure.zcml @@ -59,7 +59,7 @@ From 33eee5b6972210d2435b831e3b1dc69668f26d49 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 29 Jul 2024 15:53:57 +0700 Subject: [PATCH 07/31] symplified upgrade step --- src/senaite/core/upgrade/v02_06_000.py | 93 +++++--------------------- 1 file changed, 18 insertions(+), 75 deletions(-) diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index c06f0ca32f..104fa21f31 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -2324,18 +2324,26 @@ def migrate_worksheettemplates_to_dx(tool): # un-catalog the old container uncatalog_object(origin) - query = {"portal_type": "WorksheetTemplate"} - # search all AT based worksheet templates - brains = api.search(query, SETUP_CATALOG) - total = len(brains) + # Mapping from schema field name to a tuple of + # (accessor, target field name, default value) + schema_mapping = { + "title": ("Title", "title", ""), + "description": ("Description", "description", ""), + "Layout": ("getLayout", "template_layout", []), + "Service": ("getService", "services", []), + "Instrument": ("getInstrument", "instrument", None), + "RestrictToMethod": ( + "getRestrictToMethod", "restrict_to_method", None), + "EnableMultipleUseOfInstrument": ( + "getEnableMultipleUseOfInstrument", + "enable_multiple_use_of_instrument", False), + } - # get all objects first - objects = map(api.get_object, brains) - for num, obj in enumerate(objects): - migrate_ws_template_to_dx(obj, destination) + # migrate the contents from the old AT container to the new one + migrate_to_dx("WorksheetTemplate", origin, destination, schema_mapping) - logger.info("Migrated WorksheetTemplate {0}/{1}: {2} -> {3}".format( - num, total, api.get_path(obj), api.get_path(obj))) + # copy snapshots for the container + copy_snapshots(origin, destination) if origin: # remove old AT folder @@ -2345,68 +2353,3 @@ def migrate_worksheettemplates_to_dx(tool): logger.warn("Cannot remove {}. Is not empty".format(origin)) logger.info("Convert Worksheet Templates to Dexterity [DONE]") - - -def migrate_ws_template_to_dx(source, destination): - """Migrates a WorksheetTemplate to DX in destination folder - - :param source: The source AT object - :param destination: The destination folder - """ - - # Create the object if it does not exist yet - src_id = source.getId() - target_id = src_id - - target = destination.get(target_id) - if not target: - # Don't use the api to skip the auto-id generation - target = createContent("WorksheetTemplate", id=target_id) - destination._setObject(target_id, target) - target = destination._getOb(target_id) - - # Manually set the fields - # NOTE: always convert string values to unicode for dexterity fields! - target.title = api.safe_unicode(source.Title() or "") - target.description = api.safe_unicode(source.Description() or "") - target.setRestrictToMethod(source.getRestrictToMethod()) - target.setInstrument(source.getInstrument()) - target.setEnableMultipleUseOfInstrument( - source.getEnableMultipleUseOfInstrument()) - target.setServices(source.getService()) - - # Migrate the contents from AT to DX - migrator = getMultiAdapter( - (source, target), interface=IContentMigrator) - - # copy all (raw) attributes from the source object to the target - migrator.copy_attributes(source, target) - - # copy the UID - migrator.copy_uid(source, target) - - # copy auditlog - migrator.copy_snapshots(source, target) - - # copy creators - migrator.copy_creators(source, target) - - # copy workflow history - migrator.copy_workflow_history(source, target) - - # copy marker interfaces - migrator.copy_marker_interfaces(source, target) - - # copy dates - migrator.copy_dates(source, target) - - # uncatalog the source object - migrator.uncatalog_object(source) - - # delete the old object - migrator.delete_object(source) - - # change the ID *after* the original object was removed - migrator.copy_id(source, target) - - return target From 2654011f8eacc2c83d84623c01ae6e27c7410736 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 29 Jul 2024 17:27:56 +0700 Subject: [PATCH 08/31] temporary fix linter warning --- .../browser/widgets/worksheettemplate_services_widget.py | 8 ++++---- src/senaite/core/content/worksheettemplate.py | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py b/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py index c7a420c03c..0d048ab095 100644 --- a/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py +++ b/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py @@ -18,10 +18,10 @@ # Copyright 2018-2024 by it's authors. # Some rights reserved, see README and LICENSE. -import collections - -from bika.lims import bikaMessageFactory as _ -from plone.memoize import view +# import collections +# +# from bika.lims import bikaMessageFactory as _ +# from plone.memoize import view from .services_widget import ServicesWidget diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index 7390b6ddb5..61e75c714d 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -375,7 +375,6 @@ def setServices(self, value): elif api.is_object(v): uid = api.get_uid(v) elif api.is_uid(v): - obj = api.get_object(v) uid = v else: raise TypeError( From ffd6cc275476357d5ad2c52c5f8cc529d1bafdc6 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Tue, 30 Jul 2024 11:51:16 +0700 Subject: [PATCH 09/31] listing services for ws template --- .../worksheettemplate_services_widget.py | 107 ++++++++++-------- 1 file changed, 62 insertions(+), 45 deletions(-) diff --git a/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py b/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py index 0d048ab095..6e3b65deef 100644 --- a/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py +++ b/src/senaite/core/browser/widgets/worksheettemplate_services_widget.py @@ -18,55 +18,72 @@ # Copyright 2018-2024 by it's authors. # Some rights reserved, see README and LICENSE. -# import collections -# -# from bika.lims import bikaMessageFactory as _ -# from plone.memoize import view +import collections -from .services_widget import ServicesWidget +from bika.lims import api +from bika.lims import senaiteMessageFactory as _ +from bika.lims.utils import get_link_for +from senaite.core.browser.widgets.services_widget import ServicesWidget class WorksheetTemplateServicesWidget(ServicesWidget): """Listing widget for Worksheet Template Services """ - # def __init__(self, field, request): - # super(WorksheetTemplateServicesWidget, self).__init__(field, request) - # - # if self.context.getRestrictToMethod(): - # method = self.context.getMethod() - # if method: - # self.contentFilter.update({ - # "method_available_uid": method.UID() - # }) - # self.columns = collections.OrderedDict(( - # ("Title", { - # "title": _( - # u"listing_services_column_title", - # default=u"Service" - # ), - # "index": "sortable_title", - # "sortable": False - # }), - # ("Keyword", { - # "title": _( - # u"listing_services_column_keyword", - # default=u"Keyword" - # ), - # "sortable": False - # }), - # ("Methods", { - # "title": _( - # u"listing_services_column_methods", - # default=u"Methods" - # ), - # "sortable": False - # }), - # ("Calculation", { - # "title": _( - # u"listing_services_column_calculation", - # default=u"Calculation" - # ), - # "sortable": False - # }), - # )) + def update(self): + super(WorksheetTemplateServicesWidget, self).update() + + method_uid = self.context.getRawRestrictToMethod() + if method_uid: + self.contentFilter.update({ + "method_available_uid": method_uid + }) + + self.columns = collections.OrderedDict(( + ("Title", { + "title": _( + u"listing_services_column_title", + default=u"Service" + ), + "index": "sortable_title", + "sortable": False + }), + ("Keyword", { + "title": _( + u"listing_services_column_keyword", + default=u"Keyword" + ), + "sortable": False + }), + ("Methods", { + "title": _( + u"listing_services_column_methods", + default=u"Methods" + ), + "sortable": False + }), + ("Calculation", { + "title": _( + u"listing_services_column_calculation", + default=u"Calculation" + ), + "sortable": False + }), + )) + + self.review_states[0]["columns"] = self.columns.keys() + + def folderitem(self, obj, item, index): + item = super(WorksheetTemplateServicesWidget, self).folderitem( + obj, item, index) + + obj = api.get_object(obj) + + calculation = obj.getCalculation() + if calculation: + item["Calculation"] = api.get_title(calculation) + item["replace"]["Calculation"] = get_link_for(calculation) + else: + item["Calculation"] = "" + + return item From 77ab4d575d3e7c635c7188fd3accc442ee9db264 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Fri, 2 Aug 2024 16:13:19 +0700 Subject: [PATCH 10/31] commit local changes --- src/senaite/core/config/vocabularies.py | 19 +++++++ src/senaite/core/content/worksheettemplate.py | 6 ++- .../core/vocabularies/analysis_types.py | 53 +++++++++++++++++++ src/senaite/core/vocabularies/configure.zcml | 8 +++ 4 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 src/senaite/core/vocabularies/analysis_types.py diff --git a/src/senaite/core/config/vocabularies.py b/src/senaite/core/config/vocabularies.py index d7cac6a084..b618c4bb82 100644 --- a/src/senaite/core/config/vocabularies.py +++ b/src/senaite/core/config/vocabularies.py @@ -30,3 +30,22 @@ default=u"Lab Preservation" )), ) + +ANALYSIS_TYPES = ( + ("a", _( + u"analysis_type_analysis", + default=u"Analysis" + )), + ("b", _( + u"analysis_type_blank", + default=u"Blank" + )), + ("c", _( + u"analysis_type_control", + default=u"Control" + )), + ("d", _( + u"analysis_type_duplicate", + default=u"Duplicate" + )), +) diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index 61e75c714d..ea9e780c1d 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -60,11 +60,12 @@ class ILayoutRecord(Interface): required=True, default=u"1", ) - type = schema.TextLine( + type = schema.Choice( title=_( u"title_layout_record_type", default=u"Analysis Type" ), + vocabulary="senaite.core.vocabularies.analysis_types", required=True, default=u"a", ) @@ -82,11 +83,12 @@ class ILayoutRecord(Interface): ), required=False, ) - dup = schema.TextLine( + dup = schema.Choice( title=_( u"title_layout_record_dup", default=u"Duplicate Of" ), + vocabulary="senaite.core.vocabularies.duplicate", required=False, ) diff --git a/src/senaite/core/vocabularies/analysis_types.py b/src/senaite/core/vocabularies/analysis_types.py new file mode 100644 index 0000000000..9a59a59926 --- /dev/null +++ b/src/senaite/core/vocabularies/analysis_types.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +from bika.lims import api +from senaite.core.catalog import SETUP_CATALOG +from senaite.core.config.vocabularies import ANALYSIS_TYPES +from senaite.core.schema.vocabulary import to_simple_vocabulary +from zope.interface import implementer +from zope.schema.interfaces import IVocabularyFactory + + +@implementer(IVocabularyFactory) +class AnalysisTypesVocabulary(object): + + def __call__(self, context): + analysis_types = filter(lambda t: t, ANALYSIS_TYPES) + reference_query = { + "portal_type": "ReferenceDefinition", + "is_active": True, + } + brains = api.search(reference_query, SETUP_CATALOG) + blank = brains + return to_simple_vocabulary(ANALYSIS_TYPES) + + +AnalysisTypesVocabularyFactory = AnalysisTypesVocabulary() + + +@implementer(IVocabularyFactory) +class DuplicateVocabulary(object): + + def __call__(self, context): + return [] + + +DuplicateVocabularyFactory = DuplicateVocabulary() diff --git a/src/senaite/core/vocabularies/configure.zcml b/src/senaite/core/vocabularies/configure.zcml index 4f84929040..1752f8f1e2 100644 --- a/src/senaite/core/vocabularies/configure.zcml +++ b/src/senaite/core/vocabularies/configure.zcml @@ -10,4 +10,12 @@ component=".samplepreservation.CategoriesVocabularyFactory" name="senaite.core.vocabularies.samplepreservation.categories" /> + + + + From 3ef74042448481119171a14bb278761fc80edb76 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Wed, 7 Aug 2024 16:58:54 +0700 Subject: [PATCH 11/31] add vocabulary for analyses types --- .../form/adapters/worksheettemplate.py | 14 +++++-- src/senaite/core/content/worksheettemplate.py | 42 ++++++++++++++++++- .../core/vocabularies/analysis_types.py | 13 ++++-- 3 files changed, 60 insertions(+), 9 deletions(-) diff --git a/src/senaite/core/browser/form/adapters/worksheettemplate.py b/src/senaite/core/browser/form/adapters/worksheettemplate.py index c82f6f3eee..b3d3616f0f 100644 --- a/src/senaite/core/browser/form/adapters/worksheettemplate.py +++ b/src/senaite/core/browser/form/adapters/worksheettemplate.py @@ -35,10 +35,12 @@ def modified(self, data): value = data.get("value") # Handle Methods Change - if name == "RestrictToMethod" and value: + if name == "form.widgets.restrict_to_method" and value: method_uid = value[0] options = self.get_instruments_options(method_uid) - self.add_update_field("Instrument", {"options": options}) + self.add_update_field("form.widgets.instrument", { + "options": options + }) return self.data @@ -46,9 +48,13 @@ def get_instruments_options(self, method): """Returns a list of dicts that represent instrument options suitable for a selection list, with an empty option as first item """ - options = [{"title": _("No Instrument"), "value": [""]}] + options = [{ + "title": _(u"form_widget_instrument_title", + default=u"No Instrument"), + "value": [""] + }] method = api.get_object(method, default=None) - instruments = method and method.getInstruments() or [] + instruments = method.getInstruments() if method else [] for instrument in instruments: option = { "title": api.get_title(instrument), diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index ea9e780c1d..ae77f9effb 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -60,6 +60,7 @@ class ILayoutRecord(Interface): required=True, default=u"1", ) + type = schema.Choice( title=_( u"title_layout_record_type", @@ -69,20 +70,57 @@ class ILayoutRecord(Interface): required=True, default=u"a", ) - blank_ref = schema.TextLine( + + directives.widget( + "blank_ref", + UIDReferenceWidgetFactory, + catalog=SETUP_CATALOG, + query={ + "portal_type": "ReferenceDefinition", + "is_active": True, + "sort_limit": 5, + "sort_on": "sortable_title", + "sort_order": "ascending", + }, + display_template="${title}", + columns=get_default_columns, + limit=5, + ) + blank_ref = UIDReferenceField( title=_( u"title_layout_record_blank_ref", default=u"Reference" ), + allowed_types=("ReferenceDefinition",), + multi_valued=False, required=False, ) - control_ref = schema.TextLine( + + directives.widget( + "control_ref", + UIDReferenceWidgetFactory, + catalog=SETUP_CATALOG, + query={ + "portal_type": "ReferenceDefinition", + "is_active": True, + "sort_limit": 5, + "sort_on": "sortable_title", + "sort_order": "ascending", + }, + display_template="${title}", + columns=get_default_columns, + limit=5, + ) + control_ref = UIDReferenceField( title=_( u"title_layout_record_control_ref", default=u"Reference" ), + allowed_types=("ReferenceDefinition",), + multi_valued=False, required=False, ) + dup = schema.Choice( title=_( u"title_layout_record_dup", diff --git a/src/senaite/core/vocabularies/analysis_types.py b/src/senaite/core/vocabularies/analysis_types.py index 9a59a59926..6b5814d84b 100644 --- a/src/senaite/core/vocabularies/analysis_types.py +++ b/src/senaite/core/vocabularies/analysis_types.py @@ -30,14 +30,21 @@ class AnalysisTypesVocabulary(object): def __call__(self, context): - analysis_types = filter(lambda t: t, ANALYSIS_TYPES) reference_query = { "portal_type": "ReferenceDefinition", "is_active": True, } brains = api.search(reference_query, SETUP_CATALOG) - blank = brains - return to_simple_vocabulary(ANALYSIS_TYPES) + definitions = map(api.get_object, brains) + has_blanks = len([d for d in definitions if d.getBalnk()]) > 0 + has_controls = len([d for d in definitions if not d.getBalnk()]) > 0 + + analysis_types = ANALYSIS_TYPES + if not has_blanks: + analysis_types = filter(lambda at: at[0] != "b", analysis_types) + if not has_controls: + analysis_types = filter(lambda at: at[0] != "c", analysis_types) + return to_simple_vocabulary(analysis_types) AnalysisTypesVocabularyFactory = AnalysisTypesVocabulary() From c158058a6632713a5c102d6a52f730b8b2590e98 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Thu, 29 Aug 2024 10:50:13 +0700 Subject: [PATCH 12/31] local changes --- .../core/browser/form/adapters/configure.zcml | 7 ++ .../form/adapters/worksheettemplate.py | 97 +++++++++++++++++++ .../worksheettemplate_services_widget.py | 6 +- src/senaite/core/content/worksheettemplate.py | 45 ++++++++- .../core/vocabularies/analysis_types.py | 6 +- 5 files changed, 153 insertions(+), 8 deletions(-) diff --git a/src/senaite/core/browser/form/adapters/configure.zcml b/src/senaite/core/browser/form/adapters/configure.zcml index d5f649940f..d1cb5c5b46 100644 --- a/src/senaite/core/browser/form/adapters/configure.zcml +++ b/src/senaite/core/browser/form/adapters/configure.zcml @@ -63,6 +63,13 @@ zope.publisher.interfaces.browser.IBrowserRequest" factory=".method.EditForm"/> + + + 0 - has_controls = len([d for d in definitions if not d.getBalnk()]) > 0 + has_blanks = len([d for d in definitions if d.getBlank()]) > 0 + has_controls = len([d for d in definitions if not d.getBlank()]) > 0 analysis_types = ANALYSIS_TYPES if not has_blanks: @@ -54,7 +54,7 @@ def __call__(self, context): class DuplicateVocabulary(object): def __call__(self, context): - return [] + return to_simple_vocabulary(((1, 1),)) DuplicateVocabularyFactory = DuplicateVocabulary() From e87b69e611c7d439b04f1202c74b22fd78fa7ead Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 14:57:06 +0700 Subject: [PATCH 13/31] intermediate commit --- .../form/adapters/worksheettemplate.py | 145 ++++++++++++------ src/senaite/core/content/worksheettemplate.py | 50 ++++-- src/senaite/core/vocabularies/configure.zcml | 4 + src/senaite/core/vocabularies/references.py | 47 ++++++ 4 files changed, 186 insertions(+), 60 deletions(-) create mode 100644 src/senaite/core/vocabularies/references.py diff --git a/src/senaite/core/browser/form/adapters/worksheettemplate.py b/src/senaite/core/browser/form/adapters/worksheettemplate.py index b9bb3faabe..c3bc14f296 100644 --- a/src/senaite/core/browser/form/adapters/worksheettemplate.py +++ b/src/senaite/core/browser/form/adapters/worksheettemplate.py @@ -22,32 +22,41 @@ from bika.lims import api from bika.lims import senaiteMessageFactory as _ -from senaite.core.interfaces import IWorksheetTemplates from senaite.core.browser.form.adapters import EditFormAdapterBase +from senaite.core.catalog import SETUP_CATALOG pos_regex = re.compile(r"(\d+)\.widgets\.pos$") -type_regex = re.compile(r"([\d|A]+)\.widgets\.type$") -layout_regex = re.compile(r"form\.widgets\.template_layout") +type_regex = re.compile(r"(\d+)\.widgets\.type$") +dup_proxy_regex = re.compile(r"(\d+)\.widgets\.dup_proxy$") +ref_proxy_regex = re.compile(r"(\d+)\.widgets\.reference_proxy$") + +POS_PARENT_SELECTOR = "td:has(>[name='{}'])" +POS_DIV_BLOCK = "
{}
" +FIELD_POS = "form.widgets.template_layout.{}.widgets.pos" +FIELD_TYPE = "form.widgets.template_layout.{}.widgets.type:list" +FIELD_BLANK = "form.widgets.template_layout.{}.widgets.blank_ref" +FIELD_CONTROL = "form.widgets.template_layout.{}.widgets.control_ref" +FIELD_DUP = "form.widgets.template_layout.{}.widgets.dup" +FIELD_DUP_PROXY = "form.widgets.template_layout.{}.widgets.dup_proxy:list" +FIELD_REF_PROXY = "form.widgets.template_layout.{}.widgets.reference_proxy:list" + class EditForm(EditFormAdapterBase): """Edit form adapter for Worksheet Template """ def initialized(self, data): - # register callbacks - self.add_callback("body", - "datagrid:row_removed", - "on_row_removed") - # self.toggle_duplicate_field(0, False) + self.modify_positions(data) + self.init_toggle_fields(data) return self.data def init_toggle_fields(self, data): form = data.get("form") count_rows = self.get_count_rows(data) - for i in range(count_rows): - field = "form.widgets.template_layout.%s.widgets.type:list" % i - value = form.get(field, "a") - self.toggle_fields(value, i) + for index in range(count_rows): + field = FIELD_TYPE.format(index) + analysis_type = form.get(field, "a") + self.toggle_fields(data, analysis_type, index) def added(self, data): return self.data @@ -77,39 +86,49 @@ def modified(self, data): if type_match: idx = type_match.group(1) val = value[0] - self.toggle_fields(val, idx) - - if name == "form.widgets.num_of_positions": - if self.get_count_rows(data) == int(value): - return self.data - if IWorksheetTemplates.providedBy(self.context): - object_url = api.get_url(self.context) - redirect_url = "{}?num_positions={}".format(object_url, - value) - return self.request.response.redirect(redirect_url) + self.toggle_fields(data, val, idx) + dup_match = dup_proxy_regex.search(name) + if dup_match: + idx = dup_match.group(1) + val = value[0] + self.add_update_field(FIELD_DUP.format(idx), val) + ref_match = ref_proxy_regex.search(name) + if ref_match: + idx = ref_match.group(1) + form = data.get("form") + analysis_type = form.get(FIELD_TYPE.format(idx)) + if analysis_type == "b": + self.add_update_field(FIELD_BLANK.format(idx), value) + self.add_update_field(FIELD_CONTROL.format(idx), "") + elif analysis_type == "c": + self.add_update_field(FIELD_BLANK.format(idx), "") + self.add_update_field(FIELD_CONTROL.format(idx), value) + else: + self.add_update_field(FIELD_BLANK.format(idx), "") + self.add_update_field(FIELD_CONTROL.format(idx), "") + return self.data - def toggle_fields(self, field_type, index): - if field_type == "a": - self.toggle_duplicate_field(index, False) - self.toggle_blank_field(index, False) - self.toggle_control_field(index, False) - else: - self.toggle_duplicate_field(index, field_type == "d") - self.toggle_blank_field(index, field_type == "b") - self.toggle_control_field(index, field_type == "c") + def toggle_fields(self, data, field_type, index): + self.toggle_reference_field(index, field_type) + self.toggle_duplicate_field(data, index, field_type) - def toggle_duplicate_field(self, index, toggle=False): - field = "form.widgets.template_layout.%s.widgets.dup:list" % index - self.toggle_field(field, toggle) - - def toggle_blank_field(self, index, toggle=False): - field = "form.widgets.template_layout.%s.widgets.blank_ref" % index + def toggle_duplicate_field(self, data, index, field_type): + field = FIELD_DUP_PROXY.format(index) + toggle = field_type == "d" + if toggle: + self.update_duplicate_items(data, index) self.toggle_field(field, toggle) - def toggle_control_field(self, index, toggle=False): - field = "form.widgets.template_layout.%s.widgets.control_ref" % index + def toggle_reference_field(self, index, field_type): + field = FIELD_REF_PROXY.format(index) + toggle = field_type in ["b", "c"] self.toggle_field(field, toggle) + if toggle: + options = self.get_reference_definitions(field_type) + self.add_update_field(field, { + "options": options + }) def toggle_field(self, field, toggle=False): if toggle: @@ -117,6 +136,25 @@ def toggle_field(self, field, toggle=False): else: self.add_hide_field(field) + def update_duplicate_items(self, data, index): + """Updating list of allowed duplicate values + """ + form = data.get("form") + include = set() + exclude = set() + count_rows = self.get_count_rows(data) + for i in range(count_rows): + select_type = form.get(FIELD_TYPE.format(i)) + if select_type == "a": + include.add(form.get(FIELD_POS.format(i))) + if select_type == "d": + exclude.add(form.get(FIELD_DUP_PROXY.format(i))) + + options = [dict(value=pos, title=pos) for pos in include - exclude] + self.add_update_field(FIELD_DUP_PROXY.format(index), { + "options": options + }) + def get_instruments_options(self, method): """Returns a list of dicts that represent instrument options suitable for a selection list, with an empty option as first item @@ -137,26 +175,33 @@ def get_instruments_options(self, method): return options - def on_row_removed(self, data): - """ - """ - self.recalculate_positions(data) - return self.data - - def recalculate_positions(self, data): - """ + def modify_positions(self, data): + """Replacing input control to text for positions """ count_rows = self.get_count_rows(data) for i in range(count_rows): - field = "form.widgets.template_layout.%s.widgets.pos" % i + field = FIELD_POS.format(i) pos = str(i + 1) self.add_update_field(field, pos) self.add_hide_field(field) - selector = "td:has(>[name='%s'])" % field - html = "%s" % pos + selector = POS_PARENT_SELECTOR.format(field) + html = POS_DIV_BLOCK.format(pos) self.add_inner_html(selector, html, append=True) def get_count_rows(self, data): form = data.get("form") positions = [k for k in form.keys() if pos_regex.search(k)] return len(positions) + + def get_reference_definitions(self, reference_type): + reference_query = { + "portal_type": "ReferenceDefinition", + "is_active": True, + } + brains = api.search(reference_query, SETUP_CATALOG) + definitions = map(api.get_object, brains) + if reference_type == "b": + definitions = filter(lambda d: d.getBlank(), definitions) + else: + definitions = filter(lambda d: not d.getBlank(), definitions) + return [dict(value=d.UID(), title=d.Title()) for d in definitions] diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index 40e3806ca0..0a628cfafa 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -38,6 +38,8 @@ from zope import schema from zope.interface import Interface from zope.interface import implementer +from zope.schema.vocabulary import SimpleVocabulary +from z3c.form.interfaces import IEditForm from six.moves.urllib.parse import parse_qs @@ -53,9 +55,11 @@ def default_layout_positions(): default_value.append({ "pos": i + 1, "type": "a", - "blank_ref": "", - "control_ref": "", - "dup": 1, + "blank_ref": [], + "control_ref": [], + "reference_proxy": None, + "dup_proxy": None, + "dup": None, }) return default_value @@ -82,6 +86,7 @@ class ILayoutRecord(Interface): default=1, ) + directives.widget("type", klass="field") type = schema.Choice( title=_( u"title_layout_record_type", @@ -107,10 +112,11 @@ class ILayoutRecord(Interface): columns=get_default_columns, limit=5, ) + directives.mode(IEditForm, blank_ref="hidden") blank_ref = UIDReferenceField( title=_( u"title_layout_record_blank_ref", - default=u"Reference" + default=u"Blank Reference" ), allowed_types=("ReferenceDefinition",), multi_valued=False, @@ -132,23 +138,47 @@ class ILayoutRecord(Interface): columns=get_default_columns, limit=5, ) + directives.mode(IEditForm, control_ref="hidden") control_ref = UIDReferenceField( title=_( u"title_layout_record_control_ref", - default=u"Reference" + default=u"Control Reference" ), allowed_types=("ReferenceDefinition",), multi_valued=False, required=False, ) - dup = schema.Choice( + directives.widget("reference_proxy", klass="field") + reference_proxy = schema.Choice( + title=_( + u"title_layout_record_reference_proxy", + default=u"Reference" + ), + vocabulary="senaite.core.vocabularies.reference_definition", + required=False, + default=None, + ) + + directives.widget("dup_proxy", klass="field") + dup_proxy = schema.Choice( + title=_( + u"title_layout_record_dup_proxy", + default=u"Duplicate Of" + ), + source=SimpleVocabulary.fromValues([0]), + required=False, + default=None, + ) + + directives.mode(dup="hidden") + dup = schema.Int( title=_( u"title_layout_record_dup", default=u"Duplicate Of" ), - vocabulary="senaite.core.vocabularies.duplicate", required=False, + default=None, ) @@ -270,9 +300,9 @@ class IWorksheetTemplateSchema(model.Schema): "template_layout", DataGridWidgetFactory, allow_insert=False, - allow_delete=True, + allow_delete=False, allow_reorder=False, - auto_append=True) + auto_append=False) template_layout = schema.List( title=_( u"title_worksheettemplate_template_layout", @@ -289,7 +319,7 @@ class IWorksheetTemplateSchema(model.Schema): u"sample position it should be a duplicate of" ), value_type=DataGridRow(schema=ILayoutRecord), - default=[], + defaultFactory=default_layout_positions(), required=True, ) diff --git a/src/senaite/core/vocabularies/configure.zcml b/src/senaite/core/vocabularies/configure.zcml index faf8bd035a..91ecd68dcf 100644 --- a/src/senaite/core/vocabularies/configure.zcml +++ b/src/senaite/core/vocabularies/configure.zcml @@ -18,6 +18,10 @@ component=".analysis_types.AnalysisTypesVocabularyFactory" name="senaite.core.vocabularies.analysis_types" /> + + diff --git a/src/senaite/core/vocabularies/references.py b/src/senaite/core/vocabularies/references.py new file mode 100644 index 0000000000..fc4f3935a5 --- /dev/null +++ b/src/senaite/core/vocabularies/references.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +from bika.lims import api +from senaite.core.catalog import SETUP_CATALOG +from zope.interface import implementer +from zope.schema.interfaces import IVocabularyFactory +from zope.schema.vocabulary import SimpleTerm +from zope.schema.vocabulary import SimpleVocabulary + + +@implementer(IVocabularyFactory) +class ReferenceDefinitionVocabulary(object): + + def __call__(self, context): + reference_query = { + "portal_type": "ReferenceDefinition", + "is_active": True, + } + brains = api.search(reference_query, SETUP_CATALOG) + definitions = map(api.get_object, brains) + vocab = [] + for definition in definitions: + uid = definition.UID() + title = definition.Title() + vocab.append(SimpleTerm(uid, uid, title)) + return SimpleVocabulary(vocab) + + +ReferenceDefinitionVocabularyFactory = ReferenceDefinitionVocabulary() From 7c17edbffbe314e0523c104d238722c420a8ae91 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 15:37:49 +0700 Subject: [PATCH 14/31] fix migrate step for upgrade --- src/senaite/core/upgrade/v02_06_000.py | 133 +++++++++++++++++++++---- 1 file changed, 115 insertions(+), 18 deletions(-) diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index 0fcc46c6ec..5c64a087ee 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -2494,6 +2494,111 @@ def reindex_analysis_categories(tool): logger.info("Reindexing analysis categories [DONE]") +def migrate_ws_template_to_dx(src, destination): + """Migrate a WorksheetTemplate to DX in destination folder + + :param src: The source AT object + :param destination: The destination folder + """ + + # Create the object if it does not exist yet + src_id = src.getId() + target_id = src_id + + target = destination.get(target_id) + if not target: + # Don't use the api to skip the auto-id generation + target = createContent("WorksheetTemplate", id=target_id) + destination._setObject(target_id, target) + target = destination._getOb(target_id) + + # Manually set the fields + # NOTE: always convert string values to unicode for dexterity fields! + target.title = api.safe_unicode(src.Title() or "") + target.description = api.safe_unicode(src.Description() or "") + # we set the fields with our custom setters + target.setRestrictToMethod(src.getRestrictToMethod()) + target.setInstrument(src.getInstrument()) + target.setEnableMultipleUseOfInstrument( + src.getEnableMultipleUseOfInstrument()) + + # NOTE: Service -> Services + services = [] + for setting in src.getService(): + uid = setting.get("service_uid") + if not api.is_uid(uid): + logger.error("Invalid UID in analysis setting: %s", setting) + continue + services.append({ + "uid": uid, + }) + target.setServices(services) + + # NOTE: Layout -> TemplateLayout + layout = [] + for num, row in enumerate(src.getLayout()): + ref_proxy = None + dup = row.get("dup", None) + analysis_type = row.get("type", "a") + if analysis_type == "b": + ref_proxy = row.get("blank_ref", None) + elif analysis_type == "c": + ref_proxy = row.get("control_ref", None), + layout.append({ + "pos": int(row.get("pos", num + 1)), + "type": analysis_type, + "blank_ref": row.get("blank_ref", []), + "control_ref": row.get("control_ref", []), + "reference_proxy": ref_proxy, + "dup_proxy": dup, + "dup": dup, + }) + target.setTemplateLayout(layout) + + move_reference_samples(src, target) + + move_contacts(src, target) + + # we set the fields with our custom setters + target.setRemarks(src.getRemarks()) + + # Migrate the contents from AT to DX + migrator = getMultiAdapter( + (src, target), interface=IContentMigrator) + + # copy all (raw) attributes from the source object to the target + migrator.copy_attributes(src, target) + + # copy the UID + migrator.copy_uid(src, target) + + # copy auditlog + migrator.copy_snapshots(src, target) + + # copy creators + migrator.copy_creators(src, target) + + # copy workflow history + migrator.copy_workflow_history(src, target) + + # copy marker interfaces + migrator.copy_marker_interfaces(src, target) + + # copy dates + migrator.copy_dates(src, target) + + # uncatalog the source object + migrator.uncatalog_object(src) + + # delete the old object + migrator.delete_object(src) + + # change the ID *after* the original object was removed + migrator.copy_id(src, target) + + return target + + @upgradestep(product, version) def migrate_worksheettemplates_to_dx(tool): """Convert existing worksheet templates to Dexterity @@ -2519,26 +2624,18 @@ def migrate_worksheettemplates_to_dx(tool): # un-catalog the old container uncatalog_object(origin) - # Mapping from schema field name to a tuple of - # (accessor, target field name, default value) - schema_mapping = { - "title": ("Title", "title", ""), - "description": ("Description", "description", ""), - "Layout": ("getLayout", "template_layout", []), - "Service": ("getService", "services", []), - "Instrument": ("getInstrument", "instrument", None), - "RestrictToMethod": ( - "getRestrictToMethod", "restrict_to_method", None), - "EnableMultipleUseOfInstrument": ( - "getEnableMultipleUseOfInstrument", - "enable_multiple_use_of_instrument", False), - } + query = {"portal_type": "WorksheetTemplate"} + # search all AT based suppliers + brains = api.search(query, SETUP_CATALOG) + total = len(brains) - # migrate the contents from the old AT container to the new one - migrate_to_dx("WorksheetTemplate", origin, destination, schema_mapping) + # get all objects first + objects = map(api.get_object, brains) + for num, obj in enumerate(objects): + migrate_ws_template_to_dx(obj, destination) - # copy snapshots for the container - copy_snapshots(origin, destination) + logger.info("Migrated WorksheetTemplates {0}/{1}: {2} -> {3}".format( + num, total, api.get_path(obj), api.get_path(obj))) if origin: # remove old AT folder From 3f95f07605eb5c17da43bf5d3f1bdb7ef23426e3 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 15:42:18 +0700 Subject: [PATCH 15/31] fixdefault factory for template layout --- src/senaite/core/content/worksheettemplate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index 0a628cfafa..edf3ac5129 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -47,6 +47,9 @@ def default_layout_positions(): """ """ request = api.get_request() + if not request: + return [] + params = dict(parse_qs(request["QUERY_STRING"])) values = params.get("num_positions") num_positions = int(values[0]) if values else 0 From 35db7efc11506b35ea4254f9c4053edb4c3854a0 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 16:00:28 +0700 Subject: [PATCH 16/31] fix calling default factory for tempalte layout --- src/senaite/core/content/worksheettemplate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/senaite/core/content/worksheettemplate.py b/src/senaite/core/content/worksheettemplate.py index edf3ac5129..c8e053febc 100644 --- a/src/senaite/core/content/worksheettemplate.py +++ b/src/senaite/core/content/worksheettemplate.py @@ -49,7 +49,7 @@ def default_layout_positions(): request = api.get_request() if not request: return [] - + params = dict(parse_qs(request["QUERY_STRING"])) values = params.get("num_positions") num_positions = int(values[0]) if values else 0 @@ -322,7 +322,7 @@ class IWorksheetTemplateSchema(model.Schema): u"sample position it should be a duplicate of" ), value_type=DataGridRow(schema=ILayoutRecord), - defaultFactory=default_layout_positions(), + defaultFactory=default_layout_positions, required=True, ) From 436fff88e4b8b0d868b7cb7d4b053c527c943b95 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 18:05:48 +0700 Subject: [PATCH 17/31] fix upgrade step for migrate --- src/bika/lims/content/worksheettemplate.py | 2 +- .../controlpanel/bika_worksheettemplates.py | 2 +- .../core/profiles/default/metadata.xml | 2 +- src/senaite/core/upgrade/v02_06_000.py | 22 +++++++++---------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/bika/lims/content/worksheettemplate.py b/src/bika/lims/content/worksheettemplate.py index cb29b5b642..d37d978e61 100644 --- a/src/bika/lims/content/worksheettemplate.py +++ b/src/bika/lims/content/worksheettemplate.py @@ -152,7 +152,7 @@ schema["description"].widget.description = "" -# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/ +# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/2599 class WorksheetTemplate(BaseContent): """Worksheet Templates """ diff --git a/src/bika/lims/controlpanel/bika_worksheettemplates.py b/src/bika/lims/controlpanel/bika_worksheettemplates.py index 3bd94e7f9e..6223f0fd05 100644 --- a/src/bika/lims/controlpanel/bika_worksheettemplates.py +++ b/src/bika/lims/controlpanel/bika_worksheettemplates.py @@ -31,7 +31,7 @@ schema = ATFolderSchema.copy() -# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/ +# TODO: Migrated to DX - https://github.com/senaite/senaite.core/pull/2599 class WorksheetTemplates(ATFolder): implements(IWorksheetTemplates, IHideActionsMenu) displayContentsTab = False diff --git a/src/senaite/core/profiles/default/metadata.xml b/src/senaite/core/profiles/default/metadata.xml index a127036210..057763ab9f 100644 --- a/src/senaite/core/profiles/default/metadata.xml +++ b/src/senaite/core/profiles/default/metadata.xml @@ -1,6 +1,6 @@ - 2651 + 2652 profile-Products.ATContentTypes:base profile-Products.CMFEditions:CMFEditions diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index 5c64a087ee..bc4da0f0f6 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -2539,29 +2539,29 @@ def migrate_ws_template_to_dx(src, destination): for num, row in enumerate(src.getLayout()): ref_proxy = None dup = row.get("dup", None) + dup = int(dup) if dup else None analysis_type = row.get("type", "a") + blank_ref = [] + control_ref = [] + if analysis_type == "b": - ref_proxy = row.get("blank_ref", None) + blank_ref = row.get("blank_ref", "") + ref_proxy = blank_ref or None elif analysis_type == "c": - ref_proxy = row.get("control_ref", None), + control_ref = row.get("control_ref", "") + ref_proxy = control_ref or None + layout.append({ "pos": int(row.get("pos", num + 1)), "type": analysis_type, - "blank_ref": row.get("blank_ref", []), - "control_ref": row.get("control_ref", []), + "blank_ref": blank_ref if blank_ref else [], + "control_ref": control_ref if control_ref else [], "reference_proxy": ref_proxy, "dup_proxy": dup, "dup": dup, }) target.setTemplateLayout(layout) - move_reference_samples(src, target) - - move_contacts(src, target) - - # we set the fields with our custom setters - target.setRemarks(src.getRemarks()) - # Migrate the contents from AT to DX migrator = getMultiAdapter( (src, target), interface=IContentMigrator) From 6699137409ac2c942f418e89f8952a667b3f1b1f Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Mon, 16 Sep 2024 19:28:51 +0700 Subject: [PATCH 18/31] fix upgrade step for migrate - setting analysis and layout --- src/senaite/core/upgrade/v02_06_000.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/senaite/core/upgrade/v02_06_000.py b/src/senaite/core/upgrade/v02_06_000.py index bc4da0f0f6..0382a50c7f 100644 --- a/src/senaite/core/upgrade/v02_06_000.py +++ b/src/senaite/core/upgrade/v02_06_000.py @@ -2524,13 +2524,9 @@ def migrate_ws_template_to_dx(src, destination): # NOTE: Service -> Services services = [] - for setting in src.getService(): - uid = setting.get("service_uid") - if not api.is_uid(uid): - logger.error("Invalid UID in analysis setting: %s", setting) - continue + for service in src.getService(): services.append({ - "uid": uid, + "uid": api.get_uid(service), }) target.setServices(services) @@ -2544,12 +2540,16 @@ def migrate_ws_template_to_dx(src, destination): blank_ref = [] control_ref = [] - if analysis_type == "b": + if analysis_type == "a": + dup = None + elif analysis_type == "b": blank_ref = row.get("blank_ref", "") ref_proxy = blank_ref or None + dup = None elif analysis_type == "c": control_ref = row.get("control_ref", "") ref_proxy = control_ref or None + dup = None layout.append({ "pos": int(row.get("pos", num + 1)), From 321fb4fb32a16cde84b1f487470c5603ffa645b3 Mon Sep 17 00:00:00 2001 From: Anton Zhuchkov Date: Thu, 26 Sep 2024 13:34:42 +0700 Subject: [PATCH 19/31] add display template for ws; add change num positions --- .../form/adapters/worksheettemplate.py | 123 +++++++++++++----- src/senaite/core/browser/form/configure.zcml | 8 ++ src/senaite/core/browser/form/wstemplate.py | 41 ++++++ .../browser/static/bundles/senaite.core.css | 2 +- .../static/bundles/senaite.core.css.map | 2 +- src/senaite/core/content/worksheettemplate.py | 67 ++++++++-- .../core/z3cform/widgets/datagrid/datagrid.py | 6 + .../datagrid/ws_template_datagrid_display.pt | 63 +++++++++ webpack/app/scss/forms.scss | 14 ++ 9 files changed, 283 insertions(+), 43 deletions(-) create mode 100644 src/senaite/core/browser/form/wstemplate.py create mode 100644 src/senaite/core/z3cform/widgets/datagrid/ws_template_datagrid_display.pt diff --git a/src/senaite/core/browser/form/adapters/worksheettemplate.py b/src/senaite/core/browser/form/adapters/worksheettemplate.py index c3bc14f296..777c11d5cf 100644 --- a/src/senaite/core/browser/form/adapters/worksheettemplate.py +++ b/src/senaite/core/browser/form/adapters/worksheettemplate.py @@ -19,11 +19,13 @@ # Some rights reserved, see README and LICENSE. import re +from string import Template from bika.lims import api from bika.lims import senaiteMessageFactory as _ from senaite.core.browser.form.adapters import EditFormAdapterBase from senaite.core.catalog import SETUP_CATALOG +from senaite.core.i18n import translate pos_regex = re.compile(r"(\d+)\.widgets\.pos$") type_regex = re.compile(r"(\d+)\.widgets\.type$") @@ -31,7 +33,10 @@ ref_proxy_regex = re.compile(r"(\d+)\.widgets\.reference_proxy$") POS_PARENT_SELECTOR = "td:has(>[name='{}'])" +NUM_POS_SELECTOR = "#formfield-form-widgets-num_of_positions > .input-group" POS_DIV_BLOCK = "
{}
" +FIELD_NUM_POSITIONS = "form.widgets.num_of_positions" +FIELD_LAYOUT = "form.widgets.template_layout" FIELD_POS = "form.widgets.template_layout.{}.widgets.pos" FIELD_TYPE = "form.widgets.template_layout.{}.widgets.type:list" FIELD_BLANK = "form.widgets.template_layout.{}.widgets.blank_ref" @@ -40,23 +45,36 @@ FIELD_DUP_PROXY = "form.widgets.template_layout.{}.widgets.dup_proxy:list" FIELD_REF_PROXY = "form.widgets.template_layout.{}.widgets.reference_proxy:list" +NUM_POS_HTML = Template(""" + +""") + class EditForm(EditFormAdapterBase): """Edit form adapter for Worksheet Template """ def initialized(self, data): - self.modify_positions(data) + self.add_change_num_positions(data) self.init_toggle_fields(data) return self.data def init_toggle_fields(self, data): form = data.get("form") - count_rows = self.get_count_rows(data) - for index in range(count_rows): - field = FIELD_TYPE.format(index) - analysis_type = form.get(field, "a") - self.toggle_fields(data, analysis_type, index) + if int(form.get(FIELD_NUM_POSITIONS, "0")) == 0: + self.toggle_field(FIELD_LAYOUT, False) + else: + self.modify_positions(data) + count_rows = self.get_count_rows(data) + for index in range(count_rows): + field = FIELD_TYPE.format(index) + analysis_type = form.get(field, "a") + self.toggle_fields(data, analysis_type, index) def added(self, data): return self.data @@ -74,26 +92,25 @@ def modified(self, data): name = data.get("name") value = data.get("value") - # Handle Methods Change + type_match = type_regex.search(name) + dup_match = dup_proxy_regex.search(name) + ref_match = ref_proxy_regex.search(name) + if name == "form.widgets.restrict_to_method" and value: method_uid = value[0] options = self.get_instruments_options(method_uid) self.add_update_field("form.widgets.instrument", { "options": options }) - - type_match = type_regex.search(name) - if type_match: + elif type_match: idx = type_match.group(1) val = value[0] self.toggle_fields(data, val, idx) - dup_match = dup_proxy_regex.search(name) - if dup_match: + elif dup_match: idx = dup_match.group(1) val = value[0] self.add_update_field(FIELD_DUP.format(idx), val) - ref_match = ref_proxy_regex.search(name) - if ref_match: + elif ref_match: idx = ref_match.group(1) form = data.get("form") analysis_type = form.get(FIELD_TYPE.format(idx)) @@ -103,31 +120,69 @@ def modified(self, data): elif analysis_type == "c": self.add_update_field(FIELD_BLANK.format(idx), "") self.add_update_field(FIELD_CONTROL.format(idx), value) - else: - self.add_update_field(FIELD_BLANK.format(idx), "") - self.add_update_field(FIELD_CONTROL.format(idx), "") return self.data def toggle_fields(self, data, field_type, index): - self.toggle_reference_field(index, field_type) + self.add_error_field(FIELD_TYPE.format(index), "") + if field_type == "a": + self.add_update_field(FIELD_BLANK.format(index), "") + self.add_update_field(FIELD_CONTROL.format(index), "") + self.add_update_field(FIELD_REF_PROXY.format(index), "") + self.add_update_field(FIELD_DUP_PROXY.format(index), "") + self.add_update_field(FIELD_DUP.format(index), "") + + self.toggle_reference_field(data, index, field_type) self.toggle_duplicate_field(data, index, field_type) def toggle_duplicate_field(self, data, index, field_type): field = FIELD_DUP_PROXY.format(index) toggle = field_type == "d" - if toggle: + if toggle and self.validate_duplicate(data, index): self.update_duplicate_items(data, index) self.toggle_field(field, toggle) - def toggle_reference_field(self, index, field_type): + def validate_duplicate(self, data, index): + form = data.get("form") + current_pos = int(form.get(FIELD_POS.format(index))) + count_rows = self.get_count_rows(data) + dup_pos = 0 + for i in range(count_rows): + dup_value = form.get(FIELD_DUP.format(i)) + if not dup_value: + continue + if int(dup_value) == current_pos: + dup_pos = int(form.get(FIELD_POS.format(i))) + break + + if dup_pos: + msg = translate(_( + u"duplicate_reference_this_position", + default=u"Duplicate in position ${dup} references this, " + u"so it must be a routine analysis.", + mapping={"dup": dup_pos}) + ) + self.add_error_field(FIELD_TYPE.format(index), msg) + return False + return True + + def toggle_reference_field(self, data, index, field_type): field = FIELD_REF_PROXY.format(index) toggle = field_type in ["b", "c"] + field_ref = FIELD_BLANK if field_type == "b" else FIELD_CONTROL + field_ref = field_ref.format(index) self.toggle_field(field, toggle) - if toggle: + if toggle and self.validate_duplicate(data, index): + form = data.get("form") options = self.get_reference_definitions(field_type) + selected = form.get(field_ref) + if len(options) and not selected: + selected = options[0].get("value") + self.add_update_field(field_ref, selected) + self.add_update_field(field, { - "options": options + "options": options, + "selected": selected, }) def toggle_field(self, field, toggle=False): @@ -140,19 +195,23 @@ def update_duplicate_items(self, data, index): """Updating list of allowed duplicate values """ form = data.get("form") - include = set() - exclude = set() + includes = set() count_rows = self.get_count_rows(data) for i in range(count_rows): select_type = form.get(FIELD_TYPE.format(i)) if select_type == "a": - include.add(form.get(FIELD_POS.format(i))) - if select_type == "d": - exclude.add(form.get(FIELD_DUP_PROXY.format(i))) + includes.add(form.get(FIELD_POS.format(i))) + + field_dup = FIELD_DUP.format(index) + options = [dict(value=pos, title=pos) for pos in includes] + selected = form.get(field_dup) + if len(includes) and not selected: + selected = next(iter(includes)) + self.add_update_field(field_dup, selected) - options = [dict(value=pos, title=pos) for pos in include - exclude] self.add_update_field(FIELD_DUP_PROXY.format(index), { - "options": options + "options": options, + "selected": selected, }) def get_instruments_options(self, method): @@ -175,6 +234,12 @@ def get_instruments_options(self, method): return options + def add_change_num_positions(self, data): + url = self.context.absolute_url() + title = translate(_(u"num_of_positions_button_title", default=u"Set")) + html = NUM_POS_HTML.safe_substitute(absolute_url=url, title=title) + self.add_inner_html(NUM_POS_SELECTOR, html, append=True) + def modify_positions(self, data): """Replacing input control to text for positions """ diff --git a/src/senaite/core/browser/form/configure.zcml b/src/senaite/core/browser/form/configure.zcml index e798392fac..684b77a5db 100644 --- a/src/senaite/core/browser/form/configure.zcml +++ b/src/senaite/core/browser/form/configure.zcml @@ -15,4 +15,12 @@ layer="senaite.core.interfaces.ISenaiteCore" /> + + diff --git a/src/senaite/core/browser/form/wstemplate.py b/src/senaite/core/browser/form/wstemplate.py new file mode 100644 index 0000000000..3fd32efae1 --- /dev/null +++ b/src/senaite/core/browser/form/wstemplate.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# +# This file is part of SENAITE.CORE. +# +# SENAITE.CORE is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation, version 2. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 +# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# +# Copyright 2018-2024 by it's authors. +# Some rights reserved, see README and LICENSE. + +from bika.lims.browser import BrowserView +from senaite.core.interfaces import IWorksheetTemplate +from senaite.core.interfaces import IWorksheetTemplates + + +class UpdateNumPositions(BrowserView): + """Changing number of positions for template layout from add/edit form + """ + + def __call__(self): + url = self.context.absolute_url() + sub_path = "" + num = self.request.form.get("form.widgets.num_of_positions", 0) + if IWorksheetTemplate.providedBy(self.context): + self.context.setNumOfPositions(num) + sub_path = "edit" + elif IWorksheetTemplates.providedBy(self.context): + sub_path = "++add++WorksheetTemplate?num_positions={}".format(num) + + url = "/".join([url, sub_path]) + return self.request.response.redirect(url) diff --git a/src/senaite/core/browser/static/bundles/senaite.core.css b/src/senaite/core/browser/static/bundles/senaite.core.css index 1dc3961bb6..fed8eb5579 100644 --- a/src/senaite/core/browser/static/bundles/senaite.core.css +++ b/src/senaite/core/browser/static/bundles/senaite.core.css @@ -1,2 +1,2 @@ -:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#428aaf;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;color:#293333;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#428aaf;text-decoration:none;background-color:transparent}a:hover{color:#2d5e77;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.discreet,.documentDescription,.formHelp,.small,form.loginform .fieldErrorBox,form.rowlike .fieldErrorBox,form.senaite-form .fieldErrorBox,form[action*=-controlpanel] .fieldErrorBox,form[name=analysisrequest_add_form] .fieldErrorBox,form[name=edit_form] .fieldErrorBox,form[name=sampleheader_form] .fieldErrorBox,small,ul.configlets>li>form .fieldErrorBox{font-size:.875em;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:.875em;color:#6c757d}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.pb-ajax>div{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table,table.listing{width:100%;margin-bottom:1rem;color:#293333}.table td,.table th,table.listing td,table.listing th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th,table.listing thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody,table.listing tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th,table.listing td,table.listing th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th,table.listing,table.listing td,table.listing th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th,table.listing thead td,table.listing thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover,table.listing tbody tr:hover{color:#293333;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#cadee9}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#9dc2d5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th,table.listing .table-primary:hover,table.listing .table-primary:hover>td,table.listing .table-primary:hover>th{background-color:#b8d3e2}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th,table.listing .table-secondary:hover,table.listing .table-secondary:hover>td,table.listing .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th,table.listing .table-success:hover,table.listing .table-success:hover>td,table.listing .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th,table.listing .table-info:hover,table.listing .table-info:hover>td,table.listing .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th,table.listing .table-warning:hover,table.listing .table-warning:hover>td,table.listing .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th,table.listing .table-danger:hover,table.listing .table-danger:hover>td,table.listing .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th,table.listing .table-light:hover,table.listing .table-light:hover>td,table.listing .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th,table.listing .table-dark:hover,table.listing .table-dark:hover>td,table.listing .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th,table.listing .table-active:hover,table.listing .table-active:hover>td,table.listing .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th,table.listing .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th,table.listing .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered,table.table-dark.listing{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover,table.table-dark.listing tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media(max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered,.table-responsive-sm>table.listing{border:0}}@media(max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered,.table-responsive-md>table.listing{border:0}}@media(max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered,.table-responsive-lg>table.listing{border:0}}@media(max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered,.table-responsive-xl>table.listing{border:0}}.table-responsive,table.listing{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered,.table-responsive>table.listing,table.listing>.table-bordered,table.listing>table.listing{border:0}.form-control,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.loginform textarea,form.rowlike input[type=text],form.rowlike select,form.rowlike textarea,form.senaite-form input[type=text],form.senaite-form select,form.senaite-form textarea,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=edit_form] textarea,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,form[name=sampleheader_form] textarea,ul.configlets>li>form input[type=text],ul.configlets>li>form select,ul.configlets>li>form textarea{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.loginform textarea,form.rowlike input[type=text],form.rowlike select,form.rowlike textarea,form.senaite-form input[type=text],form.senaite-form select,form.senaite-form textarea,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=edit_form] textarea,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,form[name=sampleheader_form] textarea,ul.configlets>li>form input[type=text],ul.configlets>li>form select,ul.configlets>li>form textarea{transition:none}}.form-control::-ms-expand,.portlet:not(.portletNavigationTree) input:not([name=submit])::-ms-expand,form.loginform input[type=text]::-ms-expand,form.loginform select::-ms-expand,form.loginform textarea::-ms-expand,form.rowlike input[type=text]::-ms-expand,form.rowlike select::-ms-expand,form.rowlike textarea::-ms-expand,form.senaite-form input[type=text]::-ms-expand,form.senaite-form select::-ms-expand,form.senaite-form textarea::-ms-expand,form[action*=-controlpanel] input[type=text]::-ms-expand,form[action*=-controlpanel] select::-ms-expand,form[action*=-controlpanel] textarea::-ms-expand,form[name=analysisrequest_add_form] input[type=text]::-ms-expand,form[name=analysisrequest_add_form] select::-ms-expand,form[name=analysisrequest_add_form] textarea::-ms-expand,form[name=edit_form] div.listing-container input::-ms-expand,form[name=edit_form] div.listing-container select::-ms-expand,form[name=edit_form] input[type=text]::-ms-expand,form[name=edit_form] select::-ms-expand,form[name=edit_form] textarea::-ms-expand,form[name=sampleheader_form] input[type=text]::-ms-expand,form[name=sampleheader_form] select::-ms-expand,form[name=sampleheader_form] textarea::-ms-expand,ul.configlets>li>form input[type=text]::-ms-expand,ul.configlets>li>form select::-ms-expand,ul.configlets>li>form textarea::-ms-expand{background-color:transparent;border:0}.form-control:focus,.portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.loginform input[type=text]:focus,form.loginform select:focus,form.loginform textarea:focus,form.rowlike input[type=text]:focus,form.rowlike select:focus,form.rowlike textarea:focus,form.senaite-form input[type=text]:focus,form.senaite-form select:focus,form.senaite-form textarea:focus,form[action*=-controlpanel] input[type=text]:focus,form[action*=-controlpanel] select:focus,form[action*=-controlpanel] textarea:focus,form[name=analysisrequest_add_form] input[type=text]:focus,form[name=analysisrequest_add_form] select:focus,form[name=analysisrequest_add_form] textarea:focus,form[name=edit_form] div.listing-container input:focus,form[name=edit_form] div.listing-container select:focus,form[name=edit_form] input[type=text]:focus,form[name=edit_form] select:focus,form[name=edit_form] textarea:focus,form[name=sampleheader_form] input[type=text]:focus,form[name=sampleheader_form] select:focus,form[name=sampleheader_form] textarea:focus,ul.configlets>li>form input[type=text]:focus,ul.configlets>li>form select:focus,ul.configlets>li>form textarea:focus{color:#495057;background-color:#fff;border-color:#98c3d8;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.form-control::placeholder,.portlet:not(.portletNavigationTree) input:not([name=submit])::placeholder,form.loginform input[type=text]::placeholder,form.loginform select::placeholder,form.loginform textarea::placeholder,form.rowlike input[type=text]::placeholder,form.rowlike select::placeholder,form.rowlike textarea::placeholder,form.senaite-form input[type=text]::placeholder,form.senaite-form select::placeholder,form.senaite-form textarea::placeholder,form[action*=-controlpanel] input[type=text]::placeholder,form[action*=-controlpanel] select::placeholder,form[action*=-controlpanel] textarea::placeholder,form[name=analysisrequest_add_form] input[type=text]::placeholder,form[name=analysisrequest_add_form] select::placeholder,form[name=analysisrequest_add_form] textarea::placeholder,form[name=edit_form] div.listing-container input::placeholder,form[name=edit_form] div.listing-container select::placeholder,form[name=edit_form] input[type=text]::placeholder,form[name=edit_form] select::placeholder,form[name=edit_form] textarea::placeholder,form[name=sampleheader_form] input[type=text]::placeholder,form[name=sampleheader_form] select::placeholder,form[name=sampleheader_form] textarea::placeholder,ul.configlets>li>form input[type=text]::placeholder,ul.configlets>li>form select::placeholder,ul.configlets>li>form textarea::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly],.portlet:not(.portletNavigationTree) input:disabled:not([name=submit]),.portlet:not(.portletNavigationTree) input[readonly]:not([name=submit]),form.loginform input[readonly][type=text],form.loginform input[type=text]:disabled,form.loginform select:disabled,form.loginform select[readonly],form.loginform textarea:disabled,form.loginform textarea[readonly],form.rowlike input[readonly][type=text],form.rowlike input[type=text]:disabled,form.rowlike select:disabled,form.rowlike select[readonly],form.rowlike textarea:disabled,form.rowlike textarea[readonly],form.senaite-form input[readonly][type=text],form.senaite-form input[type=text]:disabled,form.senaite-form select:disabled,form.senaite-form select[readonly],form.senaite-form textarea:disabled,form.senaite-form textarea[readonly],form[action*=-controlpanel] input[readonly][type=text],form[action*=-controlpanel] input[type=text]:disabled,form[action*=-controlpanel] select:disabled,form[action*=-controlpanel] select[readonly],form[action*=-controlpanel] textarea:disabled,form[action*=-controlpanel] textarea[readonly],form[name=analysisrequest_add_form] input[readonly][type=text],form[name=analysisrequest_add_form] input[type=text]:disabled,form[name=analysisrequest_add_form] select:disabled,form[name=analysisrequest_add_form] select[readonly],form[name=analysisrequest_add_form] textarea:disabled,form[name=analysisrequest_add_form] textarea[readonly],form[name=edit_form] div.listing-container input:disabled,form[name=edit_form] div.listing-container input[readonly],form[name=edit_form] div.listing-container select:disabled,form[name=edit_form] div.listing-container select[readonly],form[name=edit_form] input[readonly][type=text],form[name=edit_form] input[type=text]:disabled,form[name=edit_form] select:disabled,form[name=edit_form] select[readonly],form[name=edit_form] textarea:disabled,form[name=edit_form] textarea[readonly],form[name=sampleheader_form] input[readonly][type=text],form[name=sampleheader_form] input[type=text]:disabled,form[name=sampleheader_form] select:disabled,form[name=sampleheader_form] select[readonly],form[name=sampleheader_form] textarea:disabled,form[name=sampleheader_form] textarea[readonly],ul.configlets>li>form input[readonly][type=text],ul.configlets>li>form input[type=text]:disabled,ul.configlets>li>form select:disabled,ul.configlets>li>form select[readonly],ul.configlets>li>form textarea:disabled,ul.configlets>li>form textarea[readonly]{background-color:#e9ecef;opacity:1}.portlet:not(.portletNavigationTree) input[type=date]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=datetime-local]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=month]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=time]:not([name=submit]),form.loginform input[type=date][type=text],form.loginform input[type=datetime-local][type=text],form.loginform input[type=month][type=text],form.loginform input[type=time][type=text],form.rowlike input[type=date][type=text],form.rowlike input[type=datetime-local][type=text],form.rowlike input[type=month][type=text],form.rowlike input[type=time][type=text],form.senaite-form input[type=date][type=text],form.senaite-form input[type=datetime-local][type=text],form.senaite-form input[type=month][type=text],form.senaite-form input[type=time][type=text],form[action*=-controlpanel] input[type=date][type=text],form[action*=-controlpanel] input[type=datetime-local][type=text],form[action*=-controlpanel] input[type=month][type=text],form[action*=-controlpanel] input[type=time][type=text],form[name=analysisrequest_add_form] input[type=date][type=text],form[name=analysisrequest_add_form] input[type=datetime-local][type=text],form[name=analysisrequest_add_form] input[type=month][type=text],form[name=analysisrequest_add_form] input[type=time][type=text],form[name=edit_form] div.listing-container input[type=date],form[name=edit_form] div.listing-container input[type=datetime-local],form[name=edit_form] div.listing-container input[type=month],form[name=edit_form] div.listing-container input[type=time],form[name=edit_form] input[type=date][type=text],form[name=edit_form] input[type=datetime-local][type=text],form[name=edit_form] input[type=month][type=text],form[name=edit_form] input[type=time][type=text],form[name=sampleheader_form] input[type=date][type=text],form[name=sampleheader_form] input[type=datetime-local][type=text],form[name=sampleheader_form] input[type=month][type=text],form[name=sampleheader_form] input[type=time][type=text],input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control,ul.configlets>li>form input[type=date][type=text],ul.configlets>li>form input[type=datetime-local][type=text],ul.configlets>li>form input[type=month][type=text],ul.configlets>li>form input[type=time][type=text]{appearance:none}form.loginform select:-moz-focusring,form.rowlike select:-moz-focusring,form.senaite-form select:-moz-focusring,form[action*=-controlpanel] select:-moz-focusring,form[name=analysisrequest_add_form] select:-moz-focusring,form[name=edit_form] div.listing-container select:-moz-focusring,form[name=edit_form] select:-moz-focusring,form[name=sampleheader_form] select:-moz-focusring,select.form-control:-moz-focusring,ul.configlets>li>form select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}form.loginform select:focus::-ms-value,form.rowlike select:focus::-ms-value,form.senaite-form select:focus::-ms-value,form[action*=-controlpanel] select:focus::-ms-value,form[name=analysisrequest_add_form] select:focus::-ms-value,form[name=edit_form] select:focus::-ms-value,form[name=sampleheader_form] select:focus::-ms-value,select.form-control:focus::-ms-value,ul.configlets>li>form select:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#293333;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.portlet:not(.portletNavigationTree) input.form-control-plaintext:not([name=submit]),form.loginform input.form-control-plaintext[type=text],form.loginform select.form-control-plaintext,form.rowlike input.form-control-plaintext[type=text],form.rowlike select.form-control-plaintext,form.senaite-form input.form-control-plaintext[type=text],form.senaite-form select.form-control-plaintext,form[action*=-controlpanel] input.form-control-plaintext[type=text],form[action*=-controlpanel] select.form-control-plaintext,form[name=analysisrequest_add_form] input.form-control-plaintext[type=text],form[name=analysisrequest_add_form] select.form-control-plaintext,form[name=edit_form] input.form-control-plaintext[type=text],form[name=edit_form] select.form-control-plaintext,form[name=sampleheader_form] input.form-control-plaintext[type=text],form[name=sampleheader_form] select.form-control-plaintext,ul.configlets>li>form input.form-control-plaintext[type=text],ul.configlets>li>form select.form-control-plaintext{padding-right:0;padding-left:0}.form-control-sm,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.rowlike input[type=text],form.rowlike select,form.senaite-form input[type=text],form.senaite-form select,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,ul.configlets>li>form input[type=text],ul.configlets>li>form select{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}form.loginform select[multiple],form.loginform select[size],form.loginform textarea,form.rowlike select[multiple],form.rowlike select[size],form.rowlike textarea,form.senaite-form select[multiple],form.senaite-form select[size],form.senaite-form textarea,form[action*=-controlpanel] select[multiple],form[action*=-controlpanel] select[size],form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] select[multiple],form[name=analysisrequest_add_form] select[size],form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container select[multiple],form[name=edit_form] div.listing-container select[size],form[name=edit_form] select[multiple],form[name=edit_form] select[size],form[name=edit_form] textarea,form[name=sampleheader_form] select[multiple],form[name=sampleheader_form] select[size],form[name=sampleheader_form] textarea,select.form-control[multiple],select.form-control[size],textarea.form-control,ul.configlets>li>form select[multiple],ul.configlets>li>form select[size],ul.configlets>li>form textarea{height:auto}.form-group,form.loginform .field,form.rowlike .field,form.senaite-form .field,form[action*=-controlpanel] .field,form[name=analysisrequest_add_form] .field,form[name=edit_form] .field,form[name=sampleheader_form] .field,ul.configlets>li>form .field{margin-bottom:1rem}.form-text,.formHelp{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check,form.loginform .field.ArchetypesBooleanWidget,form.loginform .field.RejectionSetupWidget,form.loginform span.option,form.rowlike .field.ArchetypesBooleanWidget,form.rowlike .field.RejectionSetupWidget,form.rowlike span.option,form.senaite-form .field.ArchetypesBooleanWidget,form.senaite-form .field.RejectionSetupWidget,form.senaite-form span.option,form[action*=-controlpanel] .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .field.RejectionSetupWidget,form[action*=-controlpanel] span.option,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .field.RejectionSetupWidget,form[name=analysisrequest_add_form] span.option,form[name=edit_form] .field.ArchetypesBooleanWidget,form[name=edit_form] .field.RejectionSetupWidget,form[name=edit_form] span.option,form[name=sampleheader_form] .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .field.RejectionSetupWidget,form[name=sampleheader_form] span.option,ul.configlets>li>form .field.ArchetypesBooleanWidget,ul.configlets>li>form .field.RejectionSetupWidget,ul.configlets>li>form span.option{position:relative;display:block;padding-left:1.25rem}.form-check-input,form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],form.loginform .field.RejectionSetupWidget input[type=checkbox],form.loginform span.option input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],form.rowlike .field.RejectionSetupWidget input[type=checkbox],form.rowlike span.option input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],form.senaite-form .field.RejectionSetupWidget input[type=checkbox],form.senaite-form span.option input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],form[action*=-controlpanel] span.option input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],form[name=analysisrequest_add_form] span.option input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],form[name=edit_form] span.option input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],form[name=sampleheader_form] span.option input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],ul.configlets>li>form span.option input[type=checkbox]{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.loginform .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.loginform span.option input[disabled][type=checkbox]~.form-check-label,form.loginform span.option input[type=checkbox]:disabled~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.rowlike .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.rowlike span.option input[disabled][type=checkbox]~.form-check-label,form.rowlike span.option input[type=checkbox]:disabled~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.senaite-form .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.senaite-form span.option input[disabled][type=checkbox]~.form-check-label,form.senaite-form span.option input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] span.option input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] span.option input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form span.option input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form span.option input[type=checkbox]:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input,.form-check-inline form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.loginform .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.loginform span.option input[type=checkbox],.form-check-inline form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.rowlike .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.rowlike span.option input[type=checkbox],.form-check-inline form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.senaite-form .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.senaite-form span.option input[type=checkbox],.form-check-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[action*=-controlpanel] span.option input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] span.option input[type=checkbox],.form-check-inline form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=edit_form] span.option input[type=checkbox],.form-check-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=sampleheader_form] span.option input[type=checkbox],.form-check-inline ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],.form-check-inline ul.configlets>li>form span.option input[type=checkbox],form.loginform .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.loginform .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.loginform span.option .form-check-inline input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.rowlike .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.rowlike span.option .form-check-inline input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.senaite-form .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.senaite-form span.option .form-check-inline input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[action*=-controlpanel] span.option .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] span.option .form-check-inline input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=edit_form] span.option .form-check-inline input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=sampleheader_form] span.option .form-check-inline input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget .form-check-inline input[type=checkbox],ul.configlets>li>form span.option .form-check-inline input[type=checkbox]{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.portlet:not(.portletNavigationTree) .was-validated input:valid:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-valid:not([name=submit]),.was-validated .form-control:valid,.was-validated .portlet:not(.portletNavigationTree) input:valid:not([name=submit]),.was-validated form.loginform input[type=text]:valid,.was-validated form.loginform select:valid,.was-validated form.loginform textarea:valid,.was-validated form.rowlike input[type=text]:valid,.was-validated form.rowlike select:valid,.was-validated form.rowlike textarea:valid,.was-validated form.senaite-form input[type=text]:valid,.was-validated form.senaite-form select:valid,.was-validated form.senaite-form textarea:valid,.was-validated form[action*=-controlpanel] input[type=text]:valid,.was-validated form[action*=-controlpanel] select:valid,.was-validated form[action*=-controlpanel] textarea:valid,.was-validated form[name=analysisrequest_add_form] input[type=text]:valid,.was-validated form[name=analysisrequest_add_form] select:valid,.was-validated form[name=analysisrequest_add_form] textarea:valid,.was-validated form[name=edit_form] div.listing-container input:valid,.was-validated form[name=edit_form] input[type=text]:valid,.was-validated form[name=edit_form] select:valid,.was-validated form[name=edit_form] textarea:valid,.was-validated form[name=sampleheader_form] input[type=text]:valid,.was-validated form[name=sampleheader_form] select:valid,.was-validated form[name=sampleheader_form] textarea:valid,.was-validated ul.configlets>li>form input[type=text]:valid,.was-validated ul.configlets>li>form select:valid,.was-validated ul.configlets>li>form textarea:valid,form.loginform .was-validated input[type=text]:valid,form.loginform .was-validated select:valid,form.loginform .was-validated textarea:valid,form.loginform input.is-valid[type=text],form.loginform select.is-valid,form.loginform textarea.is-valid,form.rowlike .was-validated input[type=text]:valid,form.rowlike .was-validated select:valid,form.rowlike .was-validated textarea:valid,form.rowlike input.is-valid[type=text],form.rowlike select.is-valid,form.rowlike textarea.is-valid,form.senaite-form .was-validated input[type=text]:valid,form.senaite-form .was-validated select:valid,form.senaite-form .was-validated textarea:valid,form.senaite-form input.is-valid[type=text],form.senaite-form select.is-valid,form.senaite-form textarea.is-valid,form[action*=-controlpanel] .was-validated input[type=text]:valid,form[action*=-controlpanel] .was-validated select:valid,form[action*=-controlpanel] .was-validated textarea:valid,form[action*=-controlpanel] input.is-valid[type=text],form[action*=-controlpanel] select.is-valid,form[action*=-controlpanel] textarea.is-valid,form[name=analysisrequest_add_form] .was-validated input[type=text]:valid,form[name=analysisrequest_add_form] .was-validated select:valid,form[name=analysisrequest_add_form] .was-validated textarea:valid,form[name=analysisrequest_add_form] input.is-valid[type=text],form[name=analysisrequest_add_form] select.is-valid,form[name=analysisrequest_add_form] textarea.is-valid,form[name=edit_form] .was-validated input[type=text]:valid,form[name=edit_form] .was-validated select:valid,form[name=edit_form] .was-validated textarea:valid,form[name=edit_form] div.listing-container .was-validated input:valid,form[name=edit_form] div.listing-container input.is-valid,form[name=edit_form] div.listing-container select.is-valid,form[name=edit_form] input.is-valid[type=text],form[name=edit_form] select.is-valid,form[name=edit_form] textarea.is-valid,form[name=sampleheader_form] .was-validated input[type=text]:valid,form[name=sampleheader_form] .was-validated select:valid,form[name=sampleheader_form] .was-validated textarea:valid,form[name=sampleheader_form] input.is-valid[type=text],form[name=sampleheader_form] select.is-valid,form[name=sampleheader_form] textarea.is-valid,ul.configlets>li>form .was-validated input[type=text]:valid,ul.configlets>li>form .was-validated select:valid,ul.configlets>li>form .was-validated textarea:valid,ul.configlets>li>form input.is-valid[type=text],ul.configlets>li>form select.is-valid,ul.configlets>li>form textarea.is-valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.portlet:not(.portletNavigationTree) .was-validated input:valid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-valid:focus:not([name=submit]),.was-validated .form-control:valid:focus,.was-validated .portlet:not(.portletNavigationTree) input:valid:focus:not([name=submit]),.was-validated form.loginform input[type=text]:valid:focus,.was-validated form.loginform select:valid:focus,.was-validated form.loginform textarea:valid:focus,.was-validated form.rowlike input[type=text]:valid:focus,.was-validated form.rowlike select:valid:focus,.was-validated form.rowlike textarea:valid:focus,.was-validated form.senaite-form input[type=text]:valid:focus,.was-validated form.senaite-form select:valid:focus,.was-validated form.senaite-form textarea:valid:focus,.was-validated form[action*=-controlpanel] input[type=text]:valid:focus,.was-validated form[action*=-controlpanel] select:valid:focus,.was-validated form[action*=-controlpanel] textarea:valid:focus,.was-validated form[name=analysisrequest_add_form] input[type=text]:valid:focus,.was-validated form[name=analysisrequest_add_form] select:valid:focus,.was-validated form[name=analysisrequest_add_form] textarea:valid:focus,.was-validated form[name=edit_form] div.listing-container input:valid:focus,.was-validated form[name=edit_form] input[type=text]:valid:focus,.was-validated form[name=edit_form] select:valid:focus,.was-validated form[name=edit_form] textarea:valid:focus,.was-validated form[name=sampleheader_form] input[type=text]:valid:focus,.was-validated form[name=sampleheader_form] select:valid:focus,.was-validated form[name=sampleheader_form] textarea:valid:focus,.was-validated ul.configlets>li>form input[type=text]:valid:focus,.was-validated ul.configlets>li>form select:valid:focus,.was-validated ul.configlets>li>form textarea:valid:focus,form.loginform .was-validated input[type=text]:valid:focus,form.loginform .was-validated select:valid:focus,form.loginform .was-validated textarea:valid:focus,form.loginform input.is-valid[type=text]:focus,form.loginform select.is-valid:focus,form.loginform textarea.is-valid:focus,form.rowlike .was-validated input[type=text]:valid:focus,form.rowlike .was-validated select:valid:focus,form.rowlike .was-validated textarea:valid:focus,form.rowlike input.is-valid[type=text]:focus,form.rowlike select.is-valid:focus,form.rowlike textarea.is-valid:focus,form.senaite-form .was-validated input[type=text]:valid:focus,form.senaite-form .was-validated select:valid:focus,form.senaite-form .was-validated textarea:valid:focus,form.senaite-form input.is-valid[type=text]:focus,form.senaite-form select.is-valid:focus,form.senaite-form textarea.is-valid:focus,form[action*=-controlpanel] .was-validated input[type=text]:valid:focus,form[action*=-controlpanel] .was-validated select:valid:focus,form[action*=-controlpanel] .was-validated textarea:valid:focus,form[action*=-controlpanel] input.is-valid[type=text]:focus,form[action*=-controlpanel] select.is-valid:focus,form[action*=-controlpanel] textarea.is-valid:focus,form[name=analysisrequest_add_form] .was-validated input[type=text]:valid:focus,form[name=analysisrequest_add_form] .was-validated select:valid:focus,form[name=analysisrequest_add_form] .was-validated textarea:valid:focus,form[name=analysisrequest_add_form] input.is-valid[type=text]:focus,form[name=analysisrequest_add_form] select.is-valid:focus,form[name=analysisrequest_add_form] textarea.is-valid:focus,form[name=edit_form] .was-validated input[type=text]:valid:focus,form[name=edit_form] .was-validated select:valid:focus,form[name=edit_form] .was-validated textarea:valid:focus,form[name=edit_form] div.listing-container .was-validated input:valid:focus,form[name=edit_form] div.listing-container input.is-valid:focus,form[name=edit_form] input.is-valid[type=text]:focus,form[name=edit_form] select.is-valid:focus,form[name=edit_form] textarea.is-valid:focus,form[name=sampleheader_form] .was-validated input[type=text]:valid:focus,form[name=sampleheader_form] .was-validated select:valid:focus,form[name=sampleheader_form] .was-validated textarea:valid:focus,form[name=sampleheader_form] input.is-valid[type=text]:focus,form[name=sampleheader_form] select.is-valid:focus,form[name=sampleheader_form] textarea.is-valid:focus,ul.configlets>li>form .was-validated input[type=text]:valid:focus,ul.configlets>li>form .was-validated select:valid:focus,ul.configlets>li>form .was-validated textarea:valid:focus,ul.configlets>li>form input.is-valid[type=text]:focus,ul.configlets>li>form select.is-valid:focus,ul.configlets>li>form textarea.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated form.loginform select:valid,.was-validated form.rowlike select:valid,.was-validated form.senaite-form select:valid,.was-validated form[action*=-controlpanel] select:valid,.was-validated form[name=analysisrequest_add_form] select:valid,.was-validated form[name=edit_form] select:valid,.was-validated form[name=sampleheader_form] select:valid,.was-validated select.form-control:valid,.was-validated ul.configlets>li>form select:valid,form.loginform .was-validated select:valid,form.loginform select.is-valid,form.rowlike .was-validated select:valid,form.rowlike select.is-valid,form.senaite-form .was-validated select:valid,form.senaite-form select.is-valid,form[action*=-controlpanel] .was-validated select:valid,form[action*=-controlpanel] select.is-valid,form[name=analysisrequest_add_form] .was-validated select:valid,form[name=analysisrequest_add_form] select.is-valid,form[name=edit_form] .was-validated select:valid,form[name=edit_form] div.listing-container select.is-valid,form[name=edit_form] select.is-valid,form[name=sampleheader_form] .was-validated select:valid,form[name=sampleheader_form] select.is-valid,select.form-control.is-valid,ul.configlets>li>form .was-validated select:valid,ul.configlets>li>form select.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated form.loginform textarea:valid,.was-validated form.rowlike textarea:valid,.was-validated form.senaite-form textarea:valid,.was-validated form[action*=-controlpanel] textarea:valid,.was-validated form[name=analysisrequest_add_form] textarea:valid,.was-validated form[name=edit_form] textarea:valid,.was-validated form[name=sampleheader_form] textarea:valid,.was-validated textarea.form-control:valid,.was-validated ul.configlets>li>form textarea:valid,form.loginform .was-validated textarea:valid,form.loginform textarea.is-valid,form.rowlike .was-validated textarea:valid,form.rowlike textarea.is-valid,form.senaite-form .was-validated textarea:valid,form.senaite-form textarea.is-valid,form[action*=-controlpanel] .was-validated textarea:valid,form[action*=-controlpanel] textarea.is-valid,form[name=analysisrequest_add_form] .was-validated textarea:valid,form[name=analysisrequest_add_form] textarea.is-valid,form[name=edit_form] .was-validated textarea:valid,form[name=edit_form] textarea.is-valid,form[name=sampleheader_form] .was-validated textarea:valid,form[name=sampleheader_form] textarea.is-valid,textarea.form-control.is-valid,ul.configlets>li>form .was-validated textarea:valid,ul.configlets>li>form textarea.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.loginform span.option input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike span.option input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.loginform span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform span.option input.is-valid[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.rowlike span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike span.option input.is-valid[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form span.option input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.loginform span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.loginform span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform span.option input.is-valid[type=checkbox]~.valid-feedback,form.loginform span.option input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike span.option input.is-valid[type=checkbox]~.valid-feedback,form.rowlike span.option input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form span.option input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form span.option input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,form.loginform .field.error input~.invalid-feedback,form.loginform .field.error input~.invalid-tooltip,form.loginform .field.error select~.invalid-feedback,form.loginform .field.error select~.invalid-tooltip,form.loginform .field.error textarea~.invalid-feedback,form.loginform .field.error textarea~.invalid-tooltip,form.rowlike .field.error input~.invalid-feedback,form.rowlike .field.error input~.invalid-tooltip,form.rowlike .field.error select~.invalid-feedback,form.rowlike .field.error select~.invalid-tooltip,form.rowlike .field.error textarea~.invalid-feedback,form.rowlike .field.error textarea~.invalid-tooltip,form.senaite-form .field.error input~.invalid-feedback,form.senaite-form .field.error input~.invalid-tooltip,form.senaite-form .field.error select~.invalid-feedback,form.senaite-form .field.error select~.invalid-tooltip,form.senaite-form .field.error textarea~.invalid-feedback,form.senaite-form .field.error textarea~.invalid-tooltip,form[action*=-controlpanel] .field.error input~.invalid-feedback,form[action*=-controlpanel] .field.error input~.invalid-tooltip,form[action*=-controlpanel] .field.error select~.invalid-feedback,form[action*=-controlpanel] .field.error select~.invalid-tooltip,form[action*=-controlpanel] .field.error textarea~.invalid-feedback,form[action*=-controlpanel] .field.error textarea~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error select~.invalid-feedback,form[name=analysisrequest_add_form] .field.error select~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error textarea~.invalid-feedback,form[name=analysisrequest_add_form] .field.error textarea~.invalid-tooltip,form[name=edit_form] .field.error input~.invalid-feedback,form[name=edit_form] .field.error input~.invalid-tooltip,form[name=edit_form] .field.error select~.invalid-feedback,form[name=edit_form] .field.error select~.invalid-tooltip,form[name=edit_form] .field.error textarea~.invalid-feedback,form[name=edit_form] .field.error textarea~.invalid-tooltip,form[name=sampleheader_form] .field.error input~.invalid-feedback,form[name=sampleheader_form] .field.error input~.invalid-tooltip,form[name=sampleheader_form] .field.error select~.invalid-feedback,form[name=sampleheader_form] .field.error select~.invalid-tooltip,form[name=sampleheader_form] .field.error textarea~.invalid-feedback,form[name=sampleheader_form] .field.error textarea~.invalid-tooltip,ul.configlets>li>form .field.error input~.invalid-feedback,ul.configlets>li>form .field.error input~.invalid-tooltip,ul.configlets>li>form .field.error select~.invalid-feedback,ul.configlets>li>form .field.error select~.invalid-tooltip,ul.configlets>li>form .field.error textarea~.invalid-feedback,ul.configlets>li>form .field.error textarea~.invalid-tooltip{display:block}.form-control.is-invalid,.portlet:not(.portletNavigationTree) .was-validated input:invalid:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-invalid:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .field.error input:not([name=submit]),.was-validated .form-control:invalid,.was-validated .portlet:not(.portletNavigationTree) input:invalid:not([name=submit]),.was-validated form.loginform input[type=text]:invalid,.was-validated form.loginform select:invalid,.was-validated form.loginform textarea:invalid,.was-validated form.rowlike input[type=text]:invalid,.was-validated form.rowlike select:invalid,.was-validated form.rowlike textarea:invalid,.was-validated form.senaite-form input[type=text]:invalid,.was-validated form.senaite-form select:invalid,.was-validated form.senaite-form textarea:invalid,.was-validated form[action*=-controlpanel] input[type=text]:invalid,.was-validated form[action*=-controlpanel] select:invalid,.was-validated form[action*=-controlpanel] textarea:invalid,.was-validated form[name=analysisrequest_add_form] input[type=text]:invalid,.was-validated form[name=analysisrequest_add_form] select:invalid,.was-validated form[name=analysisrequest_add_form] textarea:invalid,.was-validated form[name=edit_form] div.listing-container input:invalid,.was-validated form[name=edit_form] input[type=text]:invalid,.was-validated form[name=edit_form] select:invalid,.was-validated form[name=edit_form] textarea:invalid,.was-validated form[name=sampleheader_form] input[type=text]:invalid,.was-validated form[name=sampleheader_form] select:invalid,.was-validated form[name=sampleheader_form] textarea:invalid,.was-validated ul.configlets>li>form input[type=text]:invalid,.was-validated ul.configlets>li>form select:invalid,.was-validated ul.configlets>li>form textarea:invalid,form.loginform .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform .field.error form.rowlike input[type=text],form.loginform .field.error form.rowlike select,form.loginform .field.error form.rowlike textarea,form.loginform .field.error form.senaite-form input[type=text],form.loginform .field.error form.senaite-form select,form.loginform .field.error form.senaite-form textarea,form.loginform .field.error form[action*=-controlpanel] input[type=text],form.loginform .field.error form[action*=-controlpanel] select,form.loginform .field.error form[action*=-controlpanel] textarea,form.loginform .field.error form[name=analysisrequest_add_form] input[type=text],form.loginform .field.error form[name=analysisrequest_add_form] select,form.loginform .field.error form[name=analysisrequest_add_form] textarea,form.loginform .field.error form[name=edit_form] div.listing-container input,form.loginform .field.error form[name=edit_form] div.listing-container select,form.loginform .field.error form[name=edit_form] input[type=text],form.loginform .field.error form[name=edit_form] select,form.loginform .field.error form[name=edit_form] textarea,form.loginform .field.error form[name=sampleheader_form] input[type=text],form.loginform .field.error form[name=sampleheader_form] select,form.loginform .field.error form[name=sampleheader_form] textarea,form.loginform .field.error input.form-control,form.loginform .field.error input[type=text],form.loginform .field.error select,form.loginform .field.error select.form-control,form.loginform .field.error textarea,form.loginform .field.error textarea.form-control,form.loginform .field.error ul.configlets>li>form input[type=text],form.loginform .field.error ul.configlets>li>form select,form.loginform .field.error ul.configlets>li>form textarea,form.loginform .was-validated input[type=text]:invalid,form.loginform .was-validated select:invalid,form.loginform .was-validated textarea:invalid,form.loginform form.rowlike .field.error input[type=text],form.loginform form.rowlike .field.error select,form.loginform form.rowlike .field.error textarea,form.loginform form.senaite-form .field.error input[type=text],form.loginform form.senaite-form .field.error select,form.loginform form.senaite-form .field.error textarea,form.loginform form[action*=-controlpanel] .field.error input[type=text],form.loginform form[action*=-controlpanel] .field.error select,form.loginform form[action*=-controlpanel] .field.error textarea,form.loginform form[name=analysisrequest_add_form] .field.error input[type=text],form.loginform form[name=analysisrequest_add_form] .field.error select,form.loginform form[name=analysisrequest_add_form] .field.error textarea,form.loginform form[name=edit_form] .field.error input[type=text],form.loginform form[name=edit_form] .field.error select,form.loginform form[name=edit_form] .field.error textarea,form.loginform form[name=sampleheader_form] .field.error input[type=text],form.loginform form[name=sampleheader_form] .field.error select,form.loginform form[name=sampleheader_form] .field.error textarea,form.loginform input.is-invalid[type=text],form.loginform select.is-invalid,form.loginform textarea.is-invalid,form.loginform ul.configlets>li>form .field.error input[type=text],form.loginform ul.configlets>li>form .field.error select,form.loginform ul.configlets>li>form .field.error textarea,form.rowlike .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.rowlike .field.error form.loginform input[type=text],form.rowlike .field.error form.loginform select,form.rowlike .field.error form.loginform textarea,form.rowlike .field.error form.senaite-form input[type=text],form.rowlike .field.error form.senaite-form select,form.rowlike .field.error form.senaite-form textarea,form.rowlike .field.error form[action*=-controlpanel] input[type=text],form.rowlike .field.error form[action*=-controlpanel] select,form.rowlike .field.error form[action*=-controlpanel] textarea,form.rowlike .field.error form[name=analysisrequest_add_form] input[type=text],form.rowlike .field.error form[name=analysisrequest_add_form] select,form.rowlike .field.error form[name=analysisrequest_add_form] textarea,form.rowlike .field.error form[name=edit_form] div.listing-container input,form.rowlike .field.error form[name=edit_form] div.listing-container select,form.rowlike .field.error form[name=edit_form] input[type=text],form.rowlike .field.error form[name=edit_form] select,form.rowlike .field.error form[name=edit_form] textarea,form.rowlike .field.error form[name=sampleheader_form] input[type=text],form.rowlike .field.error form[name=sampleheader_form] select,form.rowlike .field.error form[name=sampleheader_form] textarea,form.rowlike .field.error input.form-control,form.rowlike .field.error input[type=text],form.rowlike .field.error select,form.rowlike .field.error select.form-control,form.rowlike .field.error textarea,form.rowlike .field.error textarea.form-control,form.rowlike .field.error ul.configlets>li>form input[type=text],form.rowlike .field.error ul.configlets>li>form select,form.rowlike .field.error ul.configlets>li>form textarea,form.rowlike .was-validated input[type=text]:invalid,form.rowlike .was-validated select:invalid,form.rowlike .was-validated textarea:invalid,form.rowlike form.loginform .field.error input[type=text],form.rowlike form.loginform .field.error select,form.rowlike form.loginform .field.error textarea,form.rowlike form.senaite-form .field.error input[type=text],form.rowlike form.senaite-form .field.error select,form.rowlike form.senaite-form .field.error textarea,form.rowlike form[action*=-controlpanel] .field.error input[type=text],form.rowlike form[action*=-controlpanel] .field.error select,form.rowlike form[action*=-controlpanel] .field.error textarea,form.rowlike form[name=analysisrequest_add_form] .field.error input[type=text],form.rowlike form[name=analysisrequest_add_form] .field.error select,form.rowlike form[name=analysisrequest_add_form] .field.error textarea,form.rowlike form[name=edit_form] .field.error input[type=text],form.rowlike form[name=edit_form] .field.error select,form.rowlike form[name=edit_form] .field.error textarea,form.rowlike form[name=sampleheader_form] .field.error input[type=text],form.rowlike form[name=sampleheader_form] .field.error select,form.rowlike form[name=sampleheader_form] .field.error textarea,form.rowlike input.is-invalid[type=text],form.rowlike select.is-invalid,form.rowlike textarea.is-invalid,form.rowlike ul.configlets>li>form .field.error input[type=text],form.rowlike ul.configlets>li>form .field.error select,form.rowlike ul.configlets>li>form .field.error textarea,form.senaite-form .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.senaite-form .field.error form.loginform input[type=text],form.senaite-form .field.error form.loginform select,form.senaite-form .field.error form.loginform textarea,form.senaite-form .field.error form.rowlike input[type=text],form.senaite-form .field.error form.rowlike select,form.senaite-form .field.error form.rowlike textarea,form.senaite-form .field.error form[action*=-controlpanel] input[type=text],form.senaite-form .field.error form[action*=-controlpanel] select,form.senaite-form .field.error form[action*=-controlpanel] textarea,form.senaite-form .field.error form[name=analysisrequest_add_form] input[type=text],form.senaite-form .field.error form[name=analysisrequest_add_form] select,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea,form.senaite-form .field.error form[name=edit_form] div.listing-container input,form.senaite-form .field.error form[name=edit_form] div.listing-container select,form.senaite-form .field.error form[name=edit_form] input[type=text],form.senaite-form .field.error form[name=edit_form] select,form.senaite-form .field.error form[name=edit_form] textarea,form.senaite-form .field.error form[name=sampleheader_form] input[type=text],form.senaite-form .field.error form[name=sampleheader_form] select,form.senaite-form .field.error form[name=sampleheader_form] textarea,form.senaite-form .field.error input.form-control,form.senaite-form .field.error input[type=text],form.senaite-form .field.error select,form.senaite-form .field.error select.form-control,form.senaite-form .field.error textarea,form.senaite-form .field.error textarea.form-control,form.senaite-form .field.error ul.configlets>li>form input[type=text],form.senaite-form .field.error ul.configlets>li>form select,form.senaite-form .field.error ul.configlets>li>form textarea,form.senaite-form .was-validated input[type=text]:invalid,form.senaite-form .was-validated select:invalid,form.senaite-form .was-validated textarea:invalid,form.senaite-form form.loginform .field.error input[type=text],form.senaite-form form.loginform .field.error select,form.senaite-form form.loginform .field.error textarea,form.senaite-form form.rowlike .field.error input[type=text],form.senaite-form form.rowlike .field.error select,form.senaite-form form.rowlike .field.error textarea,form.senaite-form form[action*=-controlpanel] .field.error input[type=text],form.senaite-form form[action*=-controlpanel] .field.error select,form.senaite-form form[action*=-controlpanel] .field.error textarea,form.senaite-form form[name=analysisrequest_add_form] .field.error input[type=text],form.senaite-form form[name=analysisrequest_add_form] .field.error select,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea,form.senaite-form form[name=edit_form] .field.error input[type=text],form.senaite-form form[name=edit_form] .field.error select,form.senaite-form form[name=edit_form] .field.error textarea,form.senaite-form form[name=sampleheader_form] .field.error input[type=text],form.senaite-form form[name=sampleheader_form] .field.error select,form.senaite-form form[name=sampleheader_form] .field.error textarea,form.senaite-form input.is-invalid[type=text],form.senaite-form select.is-invalid,form.senaite-form textarea.is-invalid,form.senaite-form ul.configlets>li>form .field.error input[type=text],form.senaite-form ul.configlets>li>form .field.error select,form.senaite-form ul.configlets>li>form .field.error textarea,form[action*=-controlpanel] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[action*=-controlpanel] .field.error form.loginform input[type=text],form[action*=-controlpanel] .field.error form.loginform select,form[action*=-controlpanel] .field.error form.loginform textarea,form[action*=-controlpanel] .field.error form.rowlike input[type=text],form[action*=-controlpanel] .field.error form.rowlike select,form[action*=-controlpanel] .field.error form.rowlike textarea,form[action*=-controlpanel] .field.error form.senaite-form input[type=text],form[action*=-controlpanel] .field.error form.senaite-form select,form[action*=-controlpanel] .field.error form.senaite-form textarea,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] input[type=text],form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container input,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container select,form[action*=-controlpanel] .field.error form[name=edit_form] input[type=text],form[action*=-controlpanel] .field.error form[name=edit_form] select,form[action*=-controlpanel] .field.error form[name=edit_form] textarea,form[action*=-controlpanel] .field.error form[name=sampleheader_form] input[type=text],form[action*=-controlpanel] .field.error form[name=sampleheader_form] select,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea,form[action*=-controlpanel] .field.error input.form-control,form[action*=-controlpanel] .field.error input[type=text],form[action*=-controlpanel] .field.error select,form[action*=-controlpanel] .field.error select.form-control,form[action*=-controlpanel] .field.error textarea,form[action*=-controlpanel] .field.error textarea.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form input[type=text],form[action*=-controlpanel] .field.error ul.configlets>li>form select,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea,form[action*=-controlpanel] .was-validated input[type=text]:invalid,form[action*=-controlpanel] .was-validated select:invalid,form[action*=-controlpanel] .was-validated textarea:invalid,form[action*=-controlpanel] form.loginform .field.error input[type=text],form[action*=-controlpanel] form.loginform .field.error select,form[action*=-controlpanel] form.loginform .field.error textarea,form[action*=-controlpanel] form.rowlike .field.error input[type=text],form[action*=-controlpanel] form.rowlike .field.error select,form[action*=-controlpanel] form.rowlike .field.error textarea,form[action*=-controlpanel] form.senaite-form .field.error input[type=text],form[action*=-controlpanel] form.senaite-form .field.error select,form[action*=-controlpanel] form.senaite-form .field.error textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea,form[action*=-controlpanel] form[name=edit_form] .field.error input[type=text],form[action*=-controlpanel] form[name=edit_form] .field.error select,form[action*=-controlpanel] form[name=edit_form] .field.error textarea,form[action*=-controlpanel] form[name=sampleheader_form] .field.error input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .field.error select,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea,form[action*=-controlpanel] input.is-invalid[type=text],form[action*=-controlpanel] select.is-invalid,form[action*=-controlpanel] textarea.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error input[type=text],form[action*=-controlpanel] ul.configlets>li>form .field.error select,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea,form[name=analysisrequest_add_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=analysisrequest_add_form] .field.error form.loginform input[type=text],form[name=analysisrequest_add_form] .field.error form.loginform select,form[name=analysisrequest_add_form] .field.error form.loginform textarea,form[name=analysisrequest_add_form] .field.error form.rowlike input[type=text],form[name=analysisrequest_add_form] .field.error form.rowlike select,form[name=analysisrequest_add_form] .field.error form.rowlike textarea,form[name=analysisrequest_add_form] .field.error form.senaite-form input[type=text],form[name=analysisrequest_add_form] .field.error form.senaite-form select,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] input[type=text],form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container input,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] input[type=text],form[name=analysisrequest_add_form] .field.error form[name=edit_form] select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] input[type=text],form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea,form[name=analysisrequest_add_form] .field.error input.form-control,form[name=analysisrequest_add_form] .field.error input[type=text],form[name=analysisrequest_add_form] .field.error select,form[name=analysisrequest_add_form] .field.error select.form-control,form[name=analysisrequest_add_form] .field.error textarea,form[name=analysisrequest_add_form] .field.error textarea.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form input[type=text],form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea,form[name=analysisrequest_add_form] .was-validated input[type=text]:invalid,form[name=analysisrequest_add_form] .was-validated select:invalid,form[name=analysisrequest_add_form] .was-validated textarea:invalid,form[name=analysisrequest_add_form] form.loginform .field.error input[type=text],form[name=analysisrequest_add_form] form.loginform .field.error select,form[name=analysisrequest_add_form] form.loginform .field.error textarea,form[name=analysisrequest_add_form] form.rowlike .field.error input[type=text],form[name=analysisrequest_add_form] form.rowlike .field.error select,form[name=analysisrequest_add_form] form.rowlike .field.error textarea,form[name=analysisrequest_add_form] form.senaite-form .field.error input[type=text],form[name=analysisrequest_add_form] form.senaite-form .field.error select,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea,form[name=analysisrequest_add_form] form[name=edit_form] .field.error input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .field.error select,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea,form[name=analysisrequest_add_form] input.is-invalid[type=text],form[name=analysisrequest_add_form] select.is-invalid,form[name=analysisrequest_add_form] textarea.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea,form[name=edit_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=edit_form] .field.error div.listing-container input,form[name=edit_form] .field.error div.listing-container select,form[name=edit_form] .field.error form.loginform input[type=text],form[name=edit_form] .field.error form.loginform select,form[name=edit_form] .field.error form.loginform textarea,form[name=edit_form] .field.error form.rowlike input[type=text],form[name=edit_form] .field.error form.rowlike select,form[name=edit_form] .field.error form.rowlike textarea,form[name=edit_form] .field.error form.senaite-form input[type=text],form[name=edit_form] .field.error form.senaite-form select,form[name=edit_form] .field.error form.senaite-form textarea,form[name=edit_form] .field.error form[action*=-controlpanel] input[type=text],form[name=edit_form] .field.error form[action*=-controlpanel] select,form[name=edit_form] .field.error form[action*=-controlpanel] textarea,form[name=edit_form] .field.error form[name=analysisrequest_add_form] input[type=text],form[name=edit_form] .field.error form[name=analysisrequest_add_form] select,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=edit_form] .field.error form[name=sampleheader_form] input[type=text],form[name=edit_form] .field.error form[name=sampleheader_form] select,form[name=edit_form] .field.error form[name=sampleheader_form] textarea,form[name=edit_form] .field.error input.form-control,form[name=edit_form] .field.error input[type=text],form[name=edit_form] .field.error select,form[name=edit_form] .field.error select.form-control,form[name=edit_form] .field.error textarea,form[name=edit_form] .field.error textarea.form-control,form[name=edit_form] .field.error ul.configlets>li>form input[type=text],form[name=edit_form] .field.error ul.configlets>li>form select,form[name=edit_form] .field.error ul.configlets>li>form textarea,form[name=edit_form] .was-validated input[type=text]:invalid,form[name=edit_form] .was-validated select:invalid,form[name=edit_form] .was-validated textarea:invalid,form[name=edit_form] div.listing-container .field.error input,form[name=edit_form] div.listing-container .field.error select,form[name=edit_form] div.listing-container .was-validated input:invalid,form[name=edit_form] div.listing-container form.loginform .field.error input,form[name=edit_form] div.listing-container form.loginform .field.error select,form[name=edit_form] div.listing-container form.rowlike .field.error input,form[name=edit_form] div.listing-container form.rowlike .field.error select,form[name=edit_form] div.listing-container form.senaite-form .field.error input,form[name=edit_form] div.listing-container form.senaite-form .field.error select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error select,form[name=edit_form] div.listing-container input.is-invalid,form[name=edit_form] div.listing-container select.is-invalid,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error input,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error select,form[name=edit_form] form.loginform .field.error input[type=text],form[name=edit_form] form.loginform .field.error select,form[name=edit_form] form.loginform .field.error textarea,form[name=edit_form] form.rowlike .field.error input[type=text],form[name=edit_form] form.rowlike .field.error select,form[name=edit_form] form.rowlike .field.error textarea,form[name=edit_form] form.senaite-form .field.error input[type=text],form[name=edit_form] form.senaite-form .field.error select,form[name=edit_form] form.senaite-form .field.error textarea,form[name=edit_form] form[action*=-controlpanel] .field.error input[type=text],form[name=edit_form] form[action*=-controlpanel] .field.error select,form[name=edit_form] form[action*=-controlpanel] .field.error textarea,form[name=edit_form] form[name=analysisrequest_add_form] .field.error input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=edit_form] form[name=sampleheader_form] .field.error input[type=text],form[name=edit_form] form[name=sampleheader_form] .field.error select,form[name=edit_form] form[name=sampleheader_form] .field.error textarea,form[name=edit_form] input.is-invalid[type=text],form[name=edit_form] select.is-invalid,form[name=edit_form] textarea.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error input[type=text],form[name=edit_form] ul.configlets>li>form .field.error select,form[name=edit_form] ul.configlets>li>form .field.error textarea,form[name=sampleheader_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=sampleheader_form] .field.error form.loginform input[type=text],form[name=sampleheader_form] .field.error form.loginform select,form[name=sampleheader_form] .field.error form.loginform textarea,form[name=sampleheader_form] .field.error form.rowlike input[type=text],form[name=sampleheader_form] .field.error form.rowlike select,form[name=sampleheader_form] .field.error form.rowlike textarea,form[name=sampleheader_form] .field.error form.senaite-form input[type=text],form[name=sampleheader_form] .field.error form.senaite-form select,form[name=sampleheader_form] .field.error form.senaite-form textarea,form[name=sampleheader_form] .field.error form[action*=-controlpanel] input[type=text],form[name=sampleheader_form] .field.error form[action*=-controlpanel] select,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] input[type=text],form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container input,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container select,form[name=sampleheader_form] .field.error form[name=edit_form] input[type=text],form[name=sampleheader_form] .field.error form[name=edit_form] select,form[name=sampleheader_form] .field.error form[name=edit_form] textarea,form[name=sampleheader_form] .field.error input.form-control,form[name=sampleheader_form] .field.error input[type=text],form[name=sampleheader_form] .field.error select,form[name=sampleheader_form] .field.error select.form-control,form[name=sampleheader_form] .field.error textarea,form[name=sampleheader_form] .field.error textarea.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form input[type=text],form[name=sampleheader_form] .field.error ul.configlets>li>form select,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea,form[name=sampleheader_form] .was-validated input[type=text]:invalid,form[name=sampleheader_form] .was-validated select:invalid,form[name=sampleheader_form] .was-validated textarea:invalid,form[name=sampleheader_form] form.loginform .field.error input[type=text],form[name=sampleheader_form] form.loginform .field.error select,form[name=sampleheader_form] form.loginform .field.error textarea,form[name=sampleheader_form] form.rowlike .field.error input[type=text],form[name=sampleheader_form] form.rowlike .field.error select,form[name=sampleheader_form] form.rowlike .field.error textarea,form[name=sampleheader_form] form.senaite-form .field.error input[type=text],form[name=sampleheader_form] form.senaite-form .field.error select,form[name=sampleheader_form] form.senaite-form .field.error textarea,form[name=sampleheader_form] form[action*=-controlpanel] .field.error input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .field.error select,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=sampleheader_form] form[name=edit_form] .field.error input[type=text],form[name=sampleheader_form] form[name=edit_form] .field.error select,form[name=sampleheader_form] form[name=edit_form] .field.error textarea,form[name=sampleheader_form] input.is-invalid[type=text],form[name=sampleheader_form] select.is-invalid,form[name=sampleheader_form] textarea.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error input[type=text],form[name=sampleheader_form] ul.configlets>li>form .field.error select,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),ul.configlets>li>form .field.error form.loginform input[type=text],ul.configlets>li>form .field.error form.loginform select,ul.configlets>li>form .field.error form.loginform textarea,ul.configlets>li>form .field.error form.rowlike input[type=text],ul.configlets>li>form .field.error form.rowlike select,ul.configlets>li>form .field.error form.rowlike textarea,ul.configlets>li>form .field.error form.senaite-form input[type=text],ul.configlets>li>form .field.error form.senaite-form select,ul.configlets>li>form .field.error form.senaite-form textarea,ul.configlets>li>form .field.error form[action*=-controlpanel] input[type=text],ul.configlets>li>form .field.error form[action*=-controlpanel] select,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] input[type=text],ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container input,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container select,ul.configlets>li>form .field.error form[name=edit_form] input[type=text],ul.configlets>li>form .field.error form[name=edit_form] select,ul.configlets>li>form .field.error form[name=edit_form] textarea,ul.configlets>li>form .field.error form[name=sampleheader_form] input[type=text],ul.configlets>li>form .field.error form[name=sampleheader_form] select,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea,ul.configlets>li>form .field.error input.form-control,ul.configlets>li>form .field.error input[type=text],ul.configlets>li>form .field.error select,ul.configlets>li>form .field.error select.form-control,ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error textarea.form-control,ul.configlets>li>form .was-validated input[type=text]:invalid,ul.configlets>li>form .was-validated select:invalid,ul.configlets>li>form .was-validated textarea:invalid,ul.configlets>li>form form.loginform .field.error input[type=text],ul.configlets>li>form form.loginform .field.error select,ul.configlets>li>form form.loginform .field.error textarea,ul.configlets>li>form form.rowlike .field.error input[type=text],ul.configlets>li>form form.rowlike .field.error select,ul.configlets>li>form form.rowlike .field.error textarea,ul.configlets>li>form form.senaite-form .field.error input[type=text],ul.configlets>li>form form.senaite-form .field.error select,ul.configlets>li>form form.senaite-form .field.error textarea,ul.configlets>li>form form[action*=-controlpanel] .field.error input[type=text],ul.configlets>li>form form[action*=-controlpanel] .field.error select,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea,ul.configlets>li>form form[name=edit_form] .field.error input[type=text],ul.configlets>li>form form[name=edit_form] .field.error select,ul.configlets>li>form form[name=edit_form] .field.error textarea,ul.configlets>li>form form[name=sampleheader_form] .field.error input[type=text],ul.configlets>li>form form[name=sampleheader_form] .field.error select,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea,ul.configlets>li>form input.is-invalid[type=text],ul.configlets>li>form select.is-invalid,ul.configlets>li>form textarea.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.portlet:not(.portletNavigationTree) .was-validated input:invalid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-invalid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .field.error input:focus:not([name=submit]),.was-validated .form-control:invalid:focus,.was-validated .portlet:not(.portletNavigationTree) input:invalid:focus:not([name=submit]),.was-validated form.loginform input[type=text]:invalid:focus,.was-validated form.loginform select:invalid:focus,.was-validated form.loginform textarea:invalid:focus,.was-validated form.rowlike input[type=text]:invalid:focus,.was-validated form.rowlike select:invalid:focus,.was-validated form.rowlike textarea:invalid:focus,.was-validated form.senaite-form input[type=text]:invalid:focus,.was-validated form.senaite-form select:invalid:focus,.was-validated form.senaite-form textarea:invalid:focus,.was-validated form[action*=-controlpanel] input[type=text]:invalid:focus,.was-validated form[action*=-controlpanel] select:invalid:focus,.was-validated form[action*=-controlpanel] textarea:invalid:focus,.was-validated form[name=analysisrequest_add_form] input[type=text]:invalid:focus,.was-validated form[name=analysisrequest_add_form] select:invalid:focus,.was-validated form[name=analysisrequest_add_form] textarea:invalid:focus,.was-validated form[name=edit_form] div.listing-container input:invalid:focus,.was-validated form[name=edit_form] input[type=text]:invalid:focus,.was-validated form[name=edit_form] select:invalid:focus,.was-validated form[name=edit_form] textarea:invalid:focus,.was-validated form[name=sampleheader_form] input[type=text]:invalid:focus,.was-validated form[name=sampleheader_form] select:invalid:focus,.was-validated form[name=sampleheader_form] textarea:invalid:focus,.was-validated ul.configlets>li>form input[type=text]:invalid:focus,.was-validated ul.configlets>li>form select:invalid:focus,.was-validated ul.configlets>li>form textarea:invalid:focus,form.loginform .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.loginform .field.error form.rowlike input[type=text]:focus,form.loginform .field.error form.rowlike select:focus,form.loginform .field.error form.rowlike textarea:focus,form.loginform .field.error form.senaite-form input[type=text]:focus,form.loginform .field.error form.senaite-form select:focus,form.loginform .field.error form.senaite-form textarea:focus,form.loginform .field.error form[action*=-controlpanel] input[type=text]:focus,form.loginform .field.error form[action*=-controlpanel] select:focus,form.loginform .field.error form[action*=-controlpanel] textarea:focus,form.loginform .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.loginform .field.error form[name=analysisrequest_add_form] select:focus,form.loginform .field.error form[name=analysisrequest_add_form] textarea:focus,form.loginform .field.error form[name=edit_form] div.listing-container input:focus,form.loginform .field.error form[name=edit_form] input[type=text]:focus,form.loginform .field.error form[name=edit_form] select:focus,form.loginform .field.error form[name=edit_form] textarea:focus,form.loginform .field.error form[name=sampleheader_form] input[type=text]:focus,form.loginform .field.error form[name=sampleheader_form] select:focus,form.loginform .field.error form[name=sampleheader_form] textarea:focus,form.loginform .field.error input.form-control:focus,form.loginform .field.error input[type=text]:focus,form.loginform .field.error select.form-control:focus,form.loginform .field.error select:focus,form.loginform .field.error textarea.form-control:focus,form.loginform .field.error textarea:focus,form.loginform .field.error ul.configlets>li>form input[type=text]:focus,form.loginform .field.error ul.configlets>li>form select:focus,form.loginform .field.error ul.configlets>li>form textarea:focus,form.loginform .was-validated input[type=text]:invalid:focus,form.loginform .was-validated select:invalid:focus,form.loginform .was-validated textarea:invalid:focus,form.loginform form.rowlike .field.error input[type=text]:focus,form.loginform form.rowlike .field.error select:focus,form.loginform form.rowlike .field.error textarea:focus,form.loginform form.senaite-form .field.error input[type=text]:focus,form.loginform form.senaite-form .field.error select:focus,form.loginform form.senaite-form .field.error textarea:focus,form.loginform form[action*=-controlpanel] .field.error input[type=text]:focus,form.loginform form[action*=-controlpanel] .field.error select:focus,form.loginform form[action*=-controlpanel] .field.error textarea:focus,form.loginform form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.loginform form[name=analysisrequest_add_form] .field.error select:focus,form.loginform form[name=analysisrequest_add_form] .field.error textarea:focus,form.loginform form[name=edit_form] .field.error input[type=text]:focus,form.loginform form[name=edit_form] .field.error select:focus,form.loginform form[name=edit_form] .field.error textarea:focus,form.loginform form[name=sampleheader_form] .field.error input[type=text]:focus,form.loginform form[name=sampleheader_form] .field.error select:focus,form.loginform form[name=sampleheader_form] .field.error textarea:focus,form.loginform input.is-invalid[type=text]:focus,form.loginform select.is-invalid:focus,form.loginform textarea.is-invalid:focus,form.loginform ul.configlets>li>form .field.error input[type=text]:focus,form.loginform ul.configlets>li>form .field.error select:focus,form.loginform ul.configlets>li>form .field.error textarea:focus,form.rowlike .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.rowlike .field.error form.loginform input[type=text]:focus,form.rowlike .field.error form.loginform select:focus,form.rowlike .field.error form.loginform textarea:focus,form.rowlike .field.error form.senaite-form input[type=text]:focus,form.rowlike .field.error form.senaite-form select:focus,form.rowlike .field.error form.senaite-form textarea:focus,form.rowlike .field.error form[action*=-controlpanel] input[type=text]:focus,form.rowlike .field.error form[action*=-controlpanel] select:focus,form.rowlike .field.error form[action*=-controlpanel] textarea:focus,form.rowlike .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.rowlike .field.error form[name=analysisrequest_add_form] select:focus,form.rowlike .field.error form[name=analysisrequest_add_form] textarea:focus,form.rowlike .field.error form[name=edit_form] div.listing-container input:focus,form.rowlike .field.error form[name=edit_form] input[type=text]:focus,form.rowlike .field.error form[name=edit_form] select:focus,form.rowlike .field.error form[name=edit_form] textarea:focus,form.rowlike .field.error form[name=sampleheader_form] input[type=text]:focus,form.rowlike .field.error form[name=sampleheader_form] select:focus,form.rowlike .field.error form[name=sampleheader_form] textarea:focus,form.rowlike .field.error input.form-control:focus,form.rowlike .field.error input[type=text]:focus,form.rowlike .field.error select.form-control:focus,form.rowlike .field.error select:focus,form.rowlike .field.error textarea.form-control:focus,form.rowlike .field.error textarea:focus,form.rowlike .field.error ul.configlets>li>form input[type=text]:focus,form.rowlike .field.error ul.configlets>li>form select:focus,form.rowlike .field.error ul.configlets>li>form textarea:focus,form.rowlike .was-validated input[type=text]:invalid:focus,form.rowlike .was-validated select:invalid:focus,form.rowlike .was-validated textarea:invalid:focus,form.rowlike form.loginform .field.error input[type=text]:focus,form.rowlike form.loginform .field.error select:focus,form.rowlike form.loginform .field.error textarea:focus,form.rowlike form.senaite-form .field.error input[type=text]:focus,form.rowlike form.senaite-form .field.error select:focus,form.rowlike form.senaite-form .field.error textarea:focus,form.rowlike form[action*=-controlpanel] .field.error input[type=text]:focus,form.rowlike form[action*=-controlpanel] .field.error select:focus,form.rowlike form[action*=-controlpanel] .field.error textarea:focus,form.rowlike form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.rowlike form[name=analysisrequest_add_form] .field.error select:focus,form.rowlike form[name=analysisrequest_add_form] .field.error textarea:focus,form.rowlike form[name=edit_form] .field.error input[type=text]:focus,form.rowlike form[name=edit_form] .field.error select:focus,form.rowlike form[name=edit_form] .field.error textarea:focus,form.rowlike form[name=sampleheader_form] .field.error input[type=text]:focus,form.rowlike form[name=sampleheader_form] .field.error select:focus,form.rowlike form[name=sampleheader_form] .field.error textarea:focus,form.rowlike input.is-invalid[type=text]:focus,form.rowlike select.is-invalid:focus,form.rowlike textarea.is-invalid:focus,form.rowlike ul.configlets>li>form .field.error input[type=text]:focus,form.rowlike ul.configlets>li>form .field.error select:focus,form.rowlike ul.configlets>li>form .field.error textarea:focus,form.senaite-form .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.senaite-form .field.error form.loginform input[type=text]:focus,form.senaite-form .field.error form.loginform select:focus,form.senaite-form .field.error form.loginform textarea:focus,form.senaite-form .field.error form.rowlike input[type=text]:focus,form.senaite-form .field.error form.rowlike select:focus,form.senaite-form .field.error form.rowlike textarea:focus,form.senaite-form .field.error form[action*=-controlpanel] input[type=text]:focus,form.senaite-form .field.error form[action*=-controlpanel] select:focus,form.senaite-form .field.error form[action*=-controlpanel] textarea:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] select:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea:focus,form.senaite-form .field.error form[name=edit_form] div.listing-container input:focus,form.senaite-form .field.error form[name=edit_form] input[type=text]:focus,form.senaite-form .field.error form[name=edit_form] select:focus,form.senaite-form .field.error form[name=edit_form] textarea:focus,form.senaite-form .field.error form[name=sampleheader_form] input[type=text]:focus,form.senaite-form .field.error form[name=sampleheader_form] select:focus,form.senaite-form .field.error form[name=sampleheader_form] textarea:focus,form.senaite-form .field.error input.form-control:focus,form.senaite-form .field.error input[type=text]:focus,form.senaite-form .field.error select.form-control:focus,form.senaite-form .field.error select:focus,form.senaite-form .field.error textarea.form-control:focus,form.senaite-form .field.error textarea:focus,form.senaite-form .field.error ul.configlets>li>form input[type=text]:focus,form.senaite-form .field.error ul.configlets>li>form select:focus,form.senaite-form .field.error ul.configlets>li>form textarea:focus,form.senaite-form .was-validated input[type=text]:invalid:focus,form.senaite-form .was-validated select:invalid:focus,form.senaite-form .was-validated textarea:invalid:focus,form.senaite-form form.loginform .field.error input[type=text]:focus,form.senaite-form form.loginform .field.error select:focus,form.senaite-form form.loginform .field.error textarea:focus,form.senaite-form form.rowlike .field.error input[type=text]:focus,form.senaite-form form.rowlike .field.error select:focus,form.senaite-form form.rowlike .field.error textarea:focus,form.senaite-form form[action*=-controlpanel] .field.error input[type=text]:focus,form.senaite-form form[action*=-controlpanel] .field.error select:focus,form.senaite-form form[action*=-controlpanel] .field.error textarea:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error select:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea:focus,form.senaite-form form[name=edit_form] .field.error input[type=text]:focus,form.senaite-form form[name=edit_form] .field.error select:focus,form.senaite-form form[name=edit_form] .field.error textarea:focus,form.senaite-form form[name=sampleheader_form] .field.error input[type=text]:focus,form.senaite-form form[name=sampleheader_form] .field.error select:focus,form.senaite-form form[name=sampleheader_form] .field.error textarea:focus,form.senaite-form input.is-invalid[type=text]:focus,form.senaite-form select.is-invalid:focus,form.senaite-form textarea.is-invalid:focus,form.senaite-form ul.configlets>li>form .field.error input[type=text]:focus,form.senaite-form ul.configlets>li>form .field.error select:focus,form.senaite-form ul.configlets>li>form .field.error textarea:focus,form[action*=-controlpanel] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[action*=-controlpanel] .field.error form.loginform input[type=text]:focus,form[action*=-controlpanel] .field.error form.loginform select:focus,form[action*=-controlpanel] .field.error form.loginform textarea:focus,form[action*=-controlpanel] .field.error form.rowlike input[type=text]:focus,form[action*=-controlpanel] .field.error form.rowlike select:focus,form[action*=-controlpanel] .field.error form.rowlike textarea:focus,form[action*=-controlpanel] .field.error form.senaite-form input[type=text]:focus,form[action*=-controlpanel] .field.error form.senaite-form select:focus,form[action*=-controlpanel] .field.error form.senaite-form textarea:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea:focus,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container input:focus,form[action*=-controlpanel] .field.error form[name=edit_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=edit_form] select:focus,form[action*=-controlpanel] .field.error form[name=edit_form] textarea:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] select:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea:focus,form[action*=-controlpanel] .field.error input.form-control:focus,form[action*=-controlpanel] .field.error input[type=text]:focus,form[action*=-controlpanel] .field.error select.form-control:focus,form[action*=-controlpanel] .field.error select:focus,form[action*=-controlpanel] .field.error textarea.form-control:focus,form[action*=-controlpanel] .field.error textarea:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form input[type=text]:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form select:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea:focus,form[action*=-controlpanel] .was-validated input[type=text]:invalid:focus,form[action*=-controlpanel] .was-validated select:invalid:focus,form[action*=-controlpanel] .was-validated textarea:invalid:focus,form[action*=-controlpanel] form.loginform .field.error input[type=text]:focus,form[action*=-controlpanel] form.loginform .field.error select:focus,form[action*=-controlpanel] form.loginform .field.error textarea:focus,form[action*=-controlpanel] form.rowlike .field.error input[type=text]:focus,form[action*=-controlpanel] form.rowlike .field.error select:focus,form[action*=-controlpanel] form.rowlike .field.error textarea:focus,form[action*=-controlpanel] form.senaite-form .field.error input[type=text]:focus,form[action*=-controlpanel] form.senaite-form .field.error select:focus,form[action*=-controlpanel] form.senaite-form .field.error textarea:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea:focus,form[action*=-controlpanel] form[name=edit_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=edit_form] .field.error select:focus,form[action*=-controlpanel] form[name=edit_form] .field.error textarea:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error select:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea:focus,form[action*=-controlpanel] input.is-invalid[type=text]:focus,form[action*=-controlpanel] select.is-invalid:focus,form[action*=-controlpanel] textarea.is-invalid:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error input[type=text]:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error select:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea:focus,form[name=analysisrequest_add_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=analysisrequest_add_form] .field.error form.loginform input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.loginform select:focus,form[name=analysisrequest_add_form] .field.error form.loginform textarea:focus,form[name=analysisrequest_add_form] .field.error form.rowlike input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.rowlike select:focus,form[name=analysisrequest_add_form] .field.error form.rowlike textarea:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form select:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container input:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] select:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea:focus,form[name=analysisrequest_add_form] .field.error input.form-control:focus,form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] .field.error select.form-control:focus,form[name=analysisrequest_add_form] .field.error select:focus,form[name=analysisrequest_add_form] .field.error textarea.form-control:focus,form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea:focus,form[name=analysisrequest_add_form] .was-validated input[type=text]:invalid:focus,form[name=analysisrequest_add_form] .was-validated select:invalid:focus,form[name=analysisrequest_add_form] .was-validated textarea:invalid:focus,form[name=analysisrequest_add_form] form.loginform .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.loginform .field.error select:focus,form[name=analysisrequest_add_form] form.loginform .field.error textarea:focus,form[name=analysisrequest_add_form] form.rowlike .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.rowlike .field.error select:focus,form[name=analysisrequest_add_form] form.rowlike .field.error textarea:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error select:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error select:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea:focus,form[name=analysisrequest_add_form] input.is-invalid[type=text]:focus,form[name=analysisrequest_add_form] select.is-invalid:focus,form[name=analysisrequest_add_form] textarea.is-invalid:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea:focus,form[name=edit_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=edit_form] .field.error div.listing-container input:focus,form[name=edit_form] .field.error form.loginform input[type=text]:focus,form[name=edit_form] .field.error form.loginform select:focus,form[name=edit_form] .field.error form.loginform textarea:focus,form[name=edit_form] .field.error form.rowlike input[type=text]:focus,form[name=edit_form] .field.error form.rowlike select:focus,form[name=edit_form] .field.error form.rowlike textarea:focus,form[name=edit_form] .field.error form.senaite-form input[type=text]:focus,form[name=edit_form] .field.error form.senaite-form select:focus,form[name=edit_form] .field.error form.senaite-form textarea:focus,form[name=edit_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=edit_form] .field.error form[action*=-controlpanel] select:focus,form[name=edit_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] select:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea:focus,form[name=edit_form] .field.error form[name=sampleheader_form] input[type=text]:focus,form[name=edit_form] .field.error form[name=sampleheader_form] select:focus,form[name=edit_form] .field.error form[name=sampleheader_form] textarea:focus,form[name=edit_form] .field.error input.form-control:focus,form[name=edit_form] .field.error input[type=text]:focus,form[name=edit_form] .field.error select.form-control:focus,form[name=edit_form] .field.error select:focus,form[name=edit_form] .field.error textarea.form-control:focus,form[name=edit_form] .field.error textarea:focus,form[name=edit_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=edit_form] .field.error ul.configlets>li>form select:focus,form[name=edit_form] .field.error ul.configlets>li>form textarea:focus,form[name=edit_form] .was-validated input[type=text]:invalid:focus,form[name=edit_form] .was-validated select:invalid:focus,form[name=edit_form] .was-validated textarea:invalid:focus,form[name=edit_form] div.listing-container .field.error input:focus,form[name=edit_form] div.listing-container .was-validated input:invalid:focus,form[name=edit_form] div.listing-container form.loginform .field.error input:focus,form[name=edit_form] div.listing-container form.rowlike .field.error input:focus,form[name=edit_form] div.listing-container form.senaite-form .field.error input:focus,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error input:focus,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error input:focus,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error input:focus,form[name=edit_form] div.listing-container input.is-invalid:focus,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error input:focus,form[name=edit_form] form.loginform .field.error input[type=text]:focus,form[name=edit_form] form.loginform .field.error select:focus,form[name=edit_form] form.loginform .field.error textarea:focus,form[name=edit_form] form.rowlike .field.error input[type=text]:focus,form[name=edit_form] form.rowlike .field.error select:focus,form[name=edit_form] form.rowlike .field.error textarea:focus,form[name=edit_form] form.senaite-form .field.error input[type=text]:focus,form[name=edit_form] form.senaite-form .field.error select:focus,form[name=edit_form] form.senaite-form .field.error textarea:focus,form[name=edit_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=edit_form] form[action*=-controlpanel] .field.error select:focus,form[name=edit_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error select:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=edit_form] form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=edit_form] form[name=sampleheader_form] .field.error select:focus,form[name=edit_form] form[name=sampleheader_form] .field.error textarea:focus,form[name=edit_form] input.is-invalid[type=text]:focus,form[name=edit_form] select.is-invalid:focus,form[name=edit_form] textarea.is-invalid:focus,form[name=edit_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=edit_form] ul.configlets>li>form .field.error select:focus,form[name=edit_form] ul.configlets>li>form .field.error textarea:focus,form[name=sampleheader_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=sampleheader_form] .field.error form.loginform input[type=text]:focus,form[name=sampleheader_form] .field.error form.loginform select:focus,form[name=sampleheader_form] .field.error form.loginform textarea:focus,form[name=sampleheader_form] .field.error form.rowlike input[type=text]:focus,form[name=sampleheader_form] .field.error form.rowlike select:focus,form[name=sampleheader_form] .field.error form.rowlike textarea:focus,form[name=sampleheader_form] .field.error form.senaite-form input[type=text]:focus,form[name=sampleheader_form] .field.error form.senaite-form select:focus,form[name=sampleheader_form] .field.error form.senaite-form textarea:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] select:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea:focus,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container input:focus,form[name=sampleheader_form] .field.error form[name=edit_form] input[type=text]:focus,form[name=sampleheader_form] .field.error form[name=edit_form] select:focus,form[name=sampleheader_form] .field.error form[name=edit_form] textarea:focus,form[name=sampleheader_form] .field.error input.form-control:focus,form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=sampleheader_form] .field.error select.form-control:focus,form[name=sampleheader_form] .field.error select:focus,form[name=sampleheader_form] .field.error textarea.form-control:focus,form[name=sampleheader_form] .field.error textarea:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form select:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea:focus,form[name=sampleheader_form] .was-validated input[type=text]:invalid:focus,form[name=sampleheader_form] .was-validated select:invalid:focus,form[name=sampleheader_form] .was-validated textarea:invalid:focus,form[name=sampleheader_form] form.loginform .field.error input[type=text]:focus,form[name=sampleheader_form] form.loginform .field.error select:focus,form[name=sampleheader_form] form.loginform .field.error textarea:focus,form[name=sampleheader_form] form.rowlike .field.error input[type=text]:focus,form[name=sampleheader_form] form.rowlike .field.error select:focus,form[name=sampleheader_form] form.rowlike .field.error textarea:focus,form[name=sampleheader_form] form.senaite-form .field.error input[type=text]:focus,form[name=sampleheader_form] form.senaite-form .field.error select:focus,form[name=sampleheader_form] form.senaite-form .field.error textarea:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error select:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=sampleheader_form] form[name=edit_form] .field.error input[type=text]:focus,form[name=sampleheader_form] form[name=edit_form] .field.error select:focus,form[name=sampleheader_form] form[name=edit_form] .field.error textarea:focus,form[name=sampleheader_form] input.is-invalid[type=text]:focus,form[name=sampleheader_form] select.is-invalid:focus,form[name=sampleheader_form] textarea.is-invalid:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error select:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea:focus,ul.configlets>li>form .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),ul.configlets>li>form .field.error form.loginform input[type=text]:focus,ul.configlets>li>form .field.error form.loginform select:focus,ul.configlets>li>form .field.error form.loginform textarea:focus,ul.configlets>li>form .field.error form.rowlike input[type=text]:focus,ul.configlets>li>form .field.error form.rowlike select:focus,ul.configlets>li>form .field.error form.rowlike textarea:focus,ul.configlets>li>form .field.error form.senaite-form input[type=text]:focus,ul.configlets>li>form .field.error form.senaite-form select:focus,ul.configlets>li>form .field.error form.senaite-form textarea:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] input[type=text]:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] select:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea:focus,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container input:focus,ul.configlets>li>form .field.error form[name=edit_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=edit_form] select:focus,ul.configlets>li>form .field.error form[name=edit_form] textarea:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] select:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea:focus,ul.configlets>li>form .field.error input.form-control:focus,ul.configlets>li>form .field.error input[type=text]:focus,ul.configlets>li>form .field.error select.form-control:focus,ul.configlets>li>form .field.error select:focus,ul.configlets>li>form .field.error textarea.form-control:focus,ul.configlets>li>form .field.error textarea:focus,ul.configlets>li>form .was-validated input[type=text]:invalid:focus,ul.configlets>li>form .was-validated select:invalid:focus,ul.configlets>li>form .was-validated textarea:invalid:focus,ul.configlets>li>form form.loginform .field.error input[type=text]:focus,ul.configlets>li>form form.loginform .field.error select:focus,ul.configlets>li>form form.loginform .field.error textarea:focus,ul.configlets>li>form form.rowlike .field.error input[type=text]:focus,ul.configlets>li>form form.rowlike .field.error select:focus,ul.configlets>li>form form.rowlike .field.error textarea:focus,ul.configlets>li>form form.senaite-form .field.error input[type=text]:focus,ul.configlets>li>form form.senaite-form .field.error select:focus,ul.configlets>li>form form.senaite-form .field.error textarea:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error input[type=text]:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error select:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea:focus,ul.configlets>li>form form[name=edit_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=edit_form] .field.error select:focus,ul.configlets>li>form form[name=edit_form] .field.error textarea:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error select:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea:focus,ul.configlets>li>form input.is-invalid[type=text]:focus,ul.configlets>li>form select.is-invalid:focus,ul.configlets>li>form textarea.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated form.loginform select:invalid,.was-validated form.rowlike select:invalid,.was-validated form.senaite-form select:invalid,.was-validated form[action*=-controlpanel] select:invalid,.was-validated form[name=analysisrequest_add_form] select:invalid,.was-validated form[name=edit_form] select:invalid,.was-validated form[name=sampleheader_form] select:invalid,.was-validated select.form-control:invalid,.was-validated ul.configlets>li>form select:invalid,form.loginform .field.error form.rowlike select,form.loginform .field.error form.senaite-form select,form.loginform .field.error form[action*=-controlpanel] select,form.loginform .field.error form[name=analysisrequest_add_form] select,form.loginform .field.error form[name=edit_form] div.listing-container select,form.loginform .field.error form[name=edit_form] select,form.loginform .field.error form[name=sampleheader_form] select,form.loginform .field.error select,form.loginform .field.error select.form-control,form.loginform .field.error ul.configlets>li>form select,form.loginform .was-validated select:invalid,form.loginform form.rowlike .field.error select,form.loginform form.senaite-form .field.error select,form.loginform form[action*=-controlpanel] .field.error select,form.loginform form[name=analysisrequest_add_form] .field.error select,form.loginform form[name=edit_form] .field.error select,form.loginform form[name=sampleheader_form] .field.error select,form.loginform select.is-invalid,form.loginform ul.configlets>li>form .field.error select,form.rowlike .field.error form.loginform select,form.rowlike .field.error form.senaite-form select,form.rowlike .field.error form[action*=-controlpanel] select,form.rowlike .field.error form[name=analysisrequest_add_form] select,form.rowlike .field.error form[name=edit_form] div.listing-container select,form.rowlike .field.error form[name=edit_form] select,form.rowlike .field.error form[name=sampleheader_form] select,form.rowlike .field.error select,form.rowlike .field.error select.form-control,form.rowlike .field.error ul.configlets>li>form select,form.rowlike .was-validated select:invalid,form.rowlike form.loginform .field.error select,form.rowlike form.senaite-form .field.error select,form.rowlike form[action*=-controlpanel] .field.error select,form.rowlike form[name=analysisrequest_add_form] .field.error select,form.rowlike form[name=edit_form] .field.error select,form.rowlike form[name=sampleheader_form] .field.error select,form.rowlike select.is-invalid,form.rowlike ul.configlets>li>form .field.error select,form.senaite-form .field.error form.loginform select,form.senaite-form .field.error form.rowlike select,form.senaite-form .field.error form[action*=-controlpanel] select,form.senaite-form .field.error form[name=analysisrequest_add_form] select,form.senaite-form .field.error form[name=edit_form] div.listing-container select,form.senaite-form .field.error form[name=edit_form] select,form.senaite-form .field.error form[name=sampleheader_form] select,form.senaite-form .field.error select,form.senaite-form .field.error select.form-control,form.senaite-form .field.error ul.configlets>li>form select,form.senaite-form .was-validated select:invalid,form.senaite-form form.loginform .field.error select,form.senaite-form form.rowlike .field.error select,form.senaite-form form[action*=-controlpanel] .field.error select,form.senaite-form form[name=analysisrequest_add_form] .field.error select,form.senaite-form form[name=edit_form] .field.error select,form.senaite-form form[name=sampleheader_form] .field.error select,form.senaite-form select.is-invalid,form.senaite-form ul.configlets>li>form .field.error select,form[action*=-controlpanel] .field.error form.loginform select,form[action*=-controlpanel] .field.error form.rowlike select,form[action*=-controlpanel] .field.error form.senaite-form select,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container select,form[action*=-controlpanel] .field.error form[name=edit_form] select,form[action*=-controlpanel] .field.error form[name=sampleheader_form] select,form[action*=-controlpanel] .field.error select,form[action*=-controlpanel] .field.error select.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form select,form[action*=-controlpanel] .was-validated select:invalid,form[action*=-controlpanel] form.loginform .field.error select,form[action*=-controlpanel] form.rowlike .field.error select,form[action*=-controlpanel] form.senaite-form .field.error select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select,form[action*=-controlpanel] form[name=edit_form] .field.error select,form[action*=-controlpanel] form[name=sampleheader_form] .field.error select,form[action*=-controlpanel] select.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error select,form[name=analysisrequest_add_form] .field.error form.loginform select,form[name=analysisrequest_add_form] .field.error form.rowlike select,form[name=analysisrequest_add_form] .field.error form.senaite-form select,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] select,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select,form[name=analysisrequest_add_form] .field.error select,form[name=analysisrequest_add_form] .field.error select.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select,form[name=analysisrequest_add_form] .was-validated select:invalid,form[name=analysisrequest_add_form] form.loginform .field.error select,form[name=analysisrequest_add_form] form.rowlike .field.error select,form[name=analysisrequest_add_form] form.senaite-form .field.error select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select,form[name=analysisrequest_add_form] form[name=edit_form] .field.error select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select,form[name=analysisrequest_add_form] select.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select,form[name=edit_form] .field.error div.listing-container select,form[name=edit_form] .field.error form.loginform select,form[name=edit_form] .field.error form.rowlike select,form[name=edit_form] .field.error form.senaite-form select,form[name=edit_form] .field.error form[action*=-controlpanel] select,form[name=edit_form] .field.error form[name=analysisrequest_add_form] select,form[name=edit_form] .field.error form[name=sampleheader_form] select,form[name=edit_form] .field.error select,form[name=edit_form] .field.error select.form-control,form[name=edit_form] .field.error ul.configlets>li>form select,form[name=edit_form] .was-validated select:invalid,form[name=edit_form] div.listing-container .field.error select,form[name=edit_form] div.listing-container form.loginform .field.error select,form[name=edit_form] div.listing-container form.rowlike .field.error select,form[name=edit_form] div.listing-container form.senaite-form .field.error select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error select,form[name=edit_form] div.listing-container select.is-invalid,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error select,form[name=edit_form] form.loginform .field.error select,form[name=edit_form] form.rowlike .field.error select,form[name=edit_form] form.senaite-form .field.error select,form[name=edit_form] form[action*=-controlpanel] .field.error select,form[name=edit_form] form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] form[name=sampleheader_form] .field.error select,form[name=edit_form] select.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error select,form[name=sampleheader_form] .field.error form.loginform select,form[name=sampleheader_form] .field.error form.rowlike select,form[name=sampleheader_form] .field.error form.senaite-form select,form[name=sampleheader_form] .field.error form[action*=-controlpanel] select,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container select,form[name=sampleheader_form] .field.error form[name=edit_form] select,form[name=sampleheader_form] .field.error select,form[name=sampleheader_form] .field.error select.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form select,form[name=sampleheader_form] .was-validated select:invalid,form[name=sampleheader_form] form.loginform .field.error select,form[name=sampleheader_form] form.rowlike .field.error select,form[name=sampleheader_form] form.senaite-form .field.error select,form[name=sampleheader_form] form[action*=-controlpanel] .field.error select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select,form[name=sampleheader_form] form[name=edit_form] .field.error select,form[name=sampleheader_form] select.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error select,select.form-control.is-invalid,ul.configlets>li>form .field.error form.loginform select,ul.configlets>li>form .field.error form.rowlike select,ul.configlets>li>form .field.error form.senaite-form select,ul.configlets>li>form .field.error form[action*=-controlpanel] select,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container select,ul.configlets>li>form .field.error form[name=edit_form] select,ul.configlets>li>form .field.error form[name=sampleheader_form] select,ul.configlets>li>form .field.error select,ul.configlets>li>form .field.error select.form-control,ul.configlets>li>form .was-validated select:invalid,ul.configlets>li>form form.loginform .field.error select,ul.configlets>li>form form.rowlike .field.error select,ul.configlets>li>form form.senaite-form .field.error select,ul.configlets>li>form form[action*=-controlpanel] .field.error select,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select,ul.configlets>li>form form[name=edit_form] .field.error select,ul.configlets>li>form form[name=sampleheader_form] .field.error select,ul.configlets>li>form select.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated form.loginform textarea:invalid,.was-validated form.rowlike textarea:invalid,.was-validated form.senaite-form textarea:invalid,.was-validated form[action*=-controlpanel] textarea:invalid,.was-validated form[name=analysisrequest_add_form] textarea:invalid,.was-validated form[name=edit_form] textarea:invalid,.was-validated form[name=sampleheader_form] textarea:invalid,.was-validated textarea.form-control:invalid,.was-validated ul.configlets>li>form textarea:invalid,form.loginform .field.error form.rowlike textarea,form.loginform .field.error form.senaite-form textarea,form.loginform .field.error form[action*=-controlpanel] textarea,form.loginform .field.error form[name=analysisrequest_add_form] textarea,form.loginform .field.error form[name=edit_form] textarea,form.loginform .field.error form[name=sampleheader_form] textarea,form.loginform .field.error textarea,form.loginform .field.error textarea.form-control,form.loginform .field.error ul.configlets>li>form textarea,form.loginform .was-validated textarea:invalid,form.loginform form.rowlike .field.error textarea,form.loginform form.senaite-form .field.error textarea,form.loginform form[action*=-controlpanel] .field.error textarea,form.loginform form[name=analysisrequest_add_form] .field.error textarea,form.loginform form[name=edit_form] .field.error textarea,form.loginform form[name=sampleheader_form] .field.error textarea,form.loginform textarea.is-invalid,form.loginform ul.configlets>li>form .field.error textarea,form.rowlike .field.error form.loginform textarea,form.rowlike .field.error form.senaite-form textarea,form.rowlike .field.error form[action*=-controlpanel] textarea,form.rowlike .field.error form[name=analysisrequest_add_form] textarea,form.rowlike .field.error form[name=edit_form] textarea,form.rowlike .field.error form[name=sampleheader_form] textarea,form.rowlike .field.error textarea,form.rowlike .field.error textarea.form-control,form.rowlike .field.error ul.configlets>li>form textarea,form.rowlike .was-validated textarea:invalid,form.rowlike form.loginform .field.error textarea,form.rowlike form.senaite-form .field.error textarea,form.rowlike form[action*=-controlpanel] .field.error textarea,form.rowlike form[name=analysisrequest_add_form] .field.error textarea,form.rowlike form[name=edit_form] .field.error textarea,form.rowlike form[name=sampleheader_form] .field.error textarea,form.rowlike textarea.is-invalid,form.rowlike ul.configlets>li>form .field.error textarea,form.senaite-form .field.error form.loginform textarea,form.senaite-form .field.error form.rowlike textarea,form.senaite-form .field.error form[action*=-controlpanel] textarea,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea,form.senaite-form .field.error form[name=edit_form] textarea,form.senaite-form .field.error form[name=sampleheader_form] textarea,form.senaite-form .field.error textarea,form.senaite-form .field.error textarea.form-control,form.senaite-form .field.error ul.configlets>li>form textarea,form.senaite-form .was-validated textarea:invalid,form.senaite-form form.loginform .field.error textarea,form.senaite-form form.rowlike .field.error textarea,form.senaite-form form[action*=-controlpanel] .field.error textarea,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea,form.senaite-form form[name=edit_form] .field.error textarea,form.senaite-form form[name=sampleheader_form] .field.error textarea,form.senaite-form textarea.is-invalid,form.senaite-form ul.configlets>li>form .field.error textarea,form[action*=-controlpanel] .field.error form.loginform textarea,form[action*=-controlpanel] .field.error form.rowlike textarea,form[action*=-controlpanel] .field.error form.senaite-form textarea,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea,form[action*=-controlpanel] .field.error form[name=edit_form] textarea,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea,form[action*=-controlpanel] .field.error textarea,form[action*=-controlpanel] .field.error textarea.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea,form[action*=-controlpanel] .was-validated textarea:invalid,form[action*=-controlpanel] form.loginform .field.error textarea,form[action*=-controlpanel] form.rowlike .field.error textarea,form[action*=-controlpanel] form.senaite-form .field.error textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea,form[action*=-controlpanel] form[name=edit_form] .field.error textarea,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea,form[action*=-controlpanel] textarea.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea,form[name=analysisrequest_add_form] .field.error form.loginform textarea,form[name=analysisrequest_add_form] .field.error form.rowlike textarea,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea,form[name=analysisrequest_add_form] .field.error textarea,form[name=analysisrequest_add_form] .field.error textarea.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea,form[name=analysisrequest_add_form] .was-validated textarea:invalid,form[name=analysisrequest_add_form] form.loginform .field.error textarea,form[name=analysisrequest_add_form] form.rowlike .field.error textarea,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea,form[name=analysisrequest_add_form] textarea.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea,form[name=edit_form] .field.error form.loginform textarea,form[name=edit_form] .field.error form.rowlike textarea,form[name=edit_form] .field.error form.senaite-form textarea,form[name=edit_form] .field.error form[action*=-controlpanel] textarea,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=edit_form] .field.error form[name=sampleheader_form] textarea,form[name=edit_form] .field.error textarea,form[name=edit_form] .field.error textarea.form-control,form[name=edit_form] .field.error ul.configlets>li>form textarea,form[name=edit_form] .was-validated textarea:invalid,form[name=edit_form] form.loginform .field.error textarea,form[name=edit_form] form.rowlike .field.error textarea,form[name=edit_form] form.senaite-form .field.error textarea,form[name=edit_form] form[action*=-controlpanel] .field.error textarea,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=edit_form] form[name=sampleheader_form] .field.error textarea,form[name=edit_form] textarea.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error textarea,form[name=sampleheader_form] .field.error form.loginform textarea,form[name=sampleheader_form] .field.error form.rowlike textarea,form[name=sampleheader_form] .field.error form.senaite-form textarea,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=sampleheader_form] .field.error form[name=edit_form] textarea,form[name=sampleheader_form] .field.error textarea,form[name=sampleheader_form] .field.error textarea.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea,form[name=sampleheader_form] .was-validated textarea:invalid,form[name=sampleheader_form] form.loginform .field.error textarea,form[name=sampleheader_form] form.rowlike .field.error textarea,form[name=sampleheader_form] form.senaite-form .field.error textarea,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=sampleheader_form] form[name=edit_form] .field.error textarea,form[name=sampleheader_form] textarea.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea,textarea.form-control.is-invalid,ul.configlets>li>form .field.error form.loginform textarea,ul.configlets>li>form .field.error form.rowlike textarea,ul.configlets>li>form .field.error form.senaite-form textarea,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea,ul.configlets>li>form .field.error form[name=edit_form] textarea,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea,ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error textarea.form-control,ul.configlets>li>form .was-validated textarea:invalid,ul.configlets>li>form form.loginform .field.error textarea,ul.configlets>li>form form.rowlike .field.error textarea,ul.configlets>li>form form.senaite-form .field.error textarea,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea,ul.configlets>li>form form[name=edit_form] .field.error textarea,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea,ul.configlets>li>form textarea.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid,form.loginform .field.error input.custom-select,form.loginform .field.error select.custom-select,form.loginform .field.error textarea.custom-select,form.rowlike .field.error input.custom-select,form.rowlike .field.error select.custom-select,form.rowlike .field.error textarea.custom-select,form.senaite-form .field.error input.custom-select,form.senaite-form .field.error select.custom-select,form.senaite-form .field.error textarea.custom-select,form[action*=-controlpanel] .field.error input.custom-select,form[action*=-controlpanel] .field.error select.custom-select,form[action*=-controlpanel] .field.error textarea.custom-select,form[name=analysisrequest_add_form] .field.error input.custom-select,form[name=analysisrequest_add_form] .field.error select.custom-select,form[name=analysisrequest_add_form] .field.error textarea.custom-select,form[name=edit_form] .field.error input.custom-select,form[name=edit_form] .field.error select.custom-select,form[name=edit_form] .field.error textarea.custom-select,form[name=sampleheader_form] .field.error input.custom-select,form[name=sampleheader_form] .field.error select.custom-select,form[name=sampleheader_form] .field.error textarea.custom-select,ul.configlets>li>form .field.error input.custom-select,ul.configlets>li>form .field.error select.custom-select,ul.configlets>li>form .field.error textarea.custom-select{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus,form.loginform .field.error input.custom-select:focus,form.loginform .field.error select.custom-select:focus,form.loginform .field.error textarea.custom-select:focus,form.rowlike .field.error input.custom-select:focus,form.rowlike .field.error select.custom-select:focus,form.rowlike .field.error textarea.custom-select:focus,form.senaite-form .field.error input.custom-select:focus,form.senaite-form .field.error select.custom-select:focus,form.senaite-form .field.error textarea.custom-select:focus,form[action*=-controlpanel] .field.error input.custom-select:focus,form[action*=-controlpanel] .field.error select.custom-select:focus,form[action*=-controlpanel] .field.error textarea.custom-select:focus,form[name=analysisrequest_add_form] .field.error input.custom-select:focus,form[name=analysisrequest_add_form] .field.error select.custom-select:focus,form[name=analysisrequest_add_form] .field.error textarea.custom-select:focus,form[name=edit_form] .field.error input.custom-select:focus,form[name=edit_form] .field.error select.custom-select:focus,form[name=edit_form] .field.error textarea.custom-select:focus,form[name=sampleheader_form] .field.error input.custom-select:focus,form[name=sampleheader_form] .field.error select.custom-select:focus,form[name=sampleheader_form] .field.error textarea.custom-select:focus,ul.configlets>li>form .field.error input.custom-select:focus,ul.configlets>li>form .field.error select.custom-select:focus,ul.configlets>li>form .field.error textarea.custom-select:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.loginform span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error input.form-check-input~.form-check-label,form.loginform .field.error select.form-check-input~.form-check-label,form.loginform .field.error span.option input[type=checkbox]~.form-check-label,form.loginform .field.error textarea.form-check-input~.form-check-label,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.loginform span.option .field.error input[type=checkbox]~.form-check-label,form.loginform span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option input.is-invalid[type=checkbox]~.form-check-label,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error input.form-check-input~.form-check-label,form.rowlike .field.error select.form-check-input~.form-check-label,form.rowlike .field.error span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error textarea.form-check-input~.form-check-label,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option input.is-invalid[type=checkbox]~.form-check-label,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error input.form-check-input~.form-check-label,form.senaite-form .field.error select.form-check-input~.form-check-label,form.senaite-form .field.error span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error textarea.form-check-input~.form-check-label,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error input.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error select.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error textarea.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error input.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error select.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error input.form-check-input~.form-check-label,form[name=edit_form] .field.error select.form-check-input~.form-check-label,form[name=edit_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error textarea.form-check-input~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error input.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error select.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error textarea.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error input.form-check-input~.form-check-label,ul.configlets>li>form .field.error select.form-check-input~.form-check-label,ul.configlets>li>form .field.error span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error textarea.form-check-input~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.loginform span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error input.form-check-input~.invalid-feedback,form.loginform .field.error input.form-check-input~.invalid-tooltip,form.loginform .field.error select.form-check-input~.invalid-feedback,form.loginform .field.error select.form-check-input~.invalid-tooltip,form.loginform .field.error span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error textarea.form-check-input~.invalid-feedback,form.loginform .field.error textarea.form-check-input~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error input.form-check-input~.invalid-feedback,form.rowlike .field.error input.form-check-input~.invalid-tooltip,form.rowlike .field.error select.form-check-input~.invalid-feedback,form.rowlike .field.error select.form-check-input~.invalid-tooltip,form.rowlike .field.error span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error textarea.form-check-input~.invalid-feedback,form.rowlike .field.error textarea.form-check-input~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error input.form-check-input~.invalid-feedback,form.senaite-form .field.error input.form-check-input~.invalid-tooltip,form.senaite-form .field.error select.form-check-input~.invalid-feedback,form.senaite-form .field.error select.form-check-input~.invalid-tooltip,form.senaite-form .field.error span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error textarea.form-check-input~.invalid-feedback,form.senaite-form .field.error textarea.form-check-input~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error input.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error input.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error select.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error select.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error textarea.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error textarea.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error input.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error input.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error select.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error select.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error input.form-check-input~.invalid-feedback,form[name=edit_form] .field.error input.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error select.form-check-input~.invalid-feedback,form[name=edit_form] .field.error select.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=edit_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error input.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error input.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error select.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error select.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error input.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error input.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.error select.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error select.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.error span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error textarea.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error textarea.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label,form.loginform .field.error input.custom-control-input~.custom-control-label,form.loginform .field.error select.custom-control-input~.custom-control-label,form.loginform .field.error textarea.custom-control-input~.custom-control-label,form.rowlike .field.error input.custom-control-input~.custom-control-label,form.rowlike .field.error select.custom-control-input~.custom-control-label,form.rowlike .field.error textarea.custom-control-input~.custom-control-label,form.senaite-form .field.error input.custom-control-input~.custom-control-label,form.senaite-form .field.error select.custom-control-input~.custom-control-label,form.senaite-form .field.error textarea.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error input.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error select.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error textarea.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error input.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error select.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input~.custom-control-label,form[name=edit_form] .field.error input.custom-control-input~.custom-control-label,form[name=edit_form] .field.error select.custom-control-input~.custom-control-label,form[name=edit_form] .field.error textarea.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error input.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error select.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error textarea.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error input.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error select.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error textarea.custom-control-input~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before,form.loginform .field.error input.custom-control-input~.custom-control-label:before,form.loginform .field.error select.custom-control-input~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input~.custom-control-label:before,form.rowlike .field.error input.custom-control-input~.custom-control-label:before,form.rowlike .field.error select.custom-control-input~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before,form.loginform .field.error input.custom-control-input:checked~.custom-control-label:before,form.loginform .field.error select.custom-control-input:checked~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error input.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error select.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before,form.loginform .field.error input.custom-control-input:focus~.custom-control-label:before,form.loginform .field.error select.custom-control-input:focus~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error input.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error select.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label,form.loginform .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error input.custom-file-input~.custom-file-label,form.loginform .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error select.custom-file-input~.custom-file-label,form.loginform .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error textarea.custom-file-input~.custom-file-label,form.rowlike .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error input.custom-file-input~.custom-file-label,form.rowlike .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error select.custom-file-input~.custom-file-label,form.rowlike .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error textarea.custom-file-input~.custom-file-label,form.senaite-form .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error input.custom-file-input~.custom-file-label,form.senaite-form .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error select.custom-file-input~.custom-file-label,form.senaite-form .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error textarea.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-file-input~.custom-file-label,form[name=edit_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error input.custom-file-input~.custom-file-label,form[name=edit_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error select.custom-file-input~.custom-file-label,form[name=edit_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-file-input~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label,form.loginform .field.error input.custom-file-input:focus~.custom-file-label,form.loginform .field.error select.custom-file-input:focus~.custom-file-label,form.loginform .field.error textarea.custom-file-input:focus~.custom-file-label,form.rowlike .field.error input.custom-file-input:focus~.custom-file-label,form.rowlike .field.error select.custom-file-input:focus~.custom-file-label,form.rowlike .field.error textarea.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error input.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error select.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error textarea.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error input.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error select.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error textarea.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error input.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error select.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error textarea.custom-file-input:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check,.form-inline form.loginform .field.ArchetypesBooleanWidget,.form-inline form.loginform .field.RejectionSetupWidget,.form-inline form.loginform span.option,.form-inline form.rowlike .field.ArchetypesBooleanWidget,.form-inline form.rowlike .field.RejectionSetupWidget,.form-inline form.rowlike span.option,.form-inline form.senaite-form .field.ArchetypesBooleanWidget,.form-inline form.senaite-form .field.RejectionSetupWidget,.form-inline form.senaite-form span.option,.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget,.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget,.form-inline form[action*=-controlpanel] span.option,.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget,.form-inline form[name=analysisrequest_add_form] span.option,.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget,.form-inline form[name=edit_form] .field.RejectionSetupWidget,.form-inline form[name=edit_form] span.option,.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget,.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget,.form-inline form[name=sampleheader_form] span.option,.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget,.form-inline ul.configlets>li>form .field.RejectionSetupWidget,.form-inline ul.configlets>li>form span.option,form.loginform .form-inline .field.ArchetypesBooleanWidget,form.loginform .form-inline .field.RejectionSetupWidget,form.loginform .form-inline span.option,form.rowlike .form-inline .field.ArchetypesBooleanWidget,form.rowlike .form-inline .field.RejectionSetupWidget,form.rowlike .form-inline span.option,form.senaite-form .form-inline .field.ArchetypesBooleanWidget,form.senaite-form .form-inline .field.RejectionSetupWidget,form.senaite-form .form-inline span.option,form[action*=-controlpanel] .form-inline .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .form-inline .field.RejectionSetupWidget,form[action*=-controlpanel] .form-inline span.option,form[name=analysisrequest_add_form] .form-inline .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .form-inline .field.RejectionSetupWidget,form[name=analysisrequest_add_form] .form-inline span.option,form[name=edit_form] .form-inline .field.ArchetypesBooleanWidget,form[name=edit_form] .form-inline .field.RejectionSetupWidget,form[name=edit_form] .form-inline span.option,form[name=sampleheader_form] .form-inline .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .form-inline .field.RejectionSetupWidget,form[name=sampleheader_form] .form-inline span.option,ul.configlets>li>form .form-inline .field.ArchetypesBooleanWidget,ul.configlets>li>form .form-inline .field.RejectionSetupWidget,ul.configlets>li>form .form-inline span.option{width:100%}@media(min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group,.form-inline form.loginform .field,.form-inline form.rowlike .field,.form-inline form.senaite-form .field,.form-inline form[action*=-controlpanel] .field,.form-inline form[name=analysisrequest_add_form] .field,.form-inline form[name=edit_form] .field,.form-inline form[name=sampleheader_form] .field,.form-inline ul.configlets>li>form .field,form.loginform .form-inline .field,form.rowlike .form-inline .field,form.senaite-form .form-inline .field,form[action*=-controlpanel] .form-inline .field,form[name=analysisrequest_add_form] .form-inline .field,form[name=edit_form] .form-inline .field,form[name=sampleheader_form] .form-inline .field,ul.configlets>li>form .form-inline .field{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control,.form-inline .portlet:not(.portletNavigationTree) input:not([name=submit]),.form-inline form.loginform input[type=text],.form-inline form.loginform select,.form-inline form.loginform textarea,.form-inline form.rowlike input[type=text],.form-inline form.rowlike select,.form-inline form.rowlike textarea,.form-inline form.senaite-form input[type=text],.form-inline form.senaite-form select,.form-inline form.senaite-form textarea,.form-inline form[action*=-controlpanel] input[type=text],.form-inline form[action*=-controlpanel] select,.form-inline form[action*=-controlpanel] textarea,.form-inline form[name=analysisrequest_add_form] input[type=text],.form-inline form[name=analysisrequest_add_form] select,.form-inline form[name=analysisrequest_add_form] textarea,.form-inline form[name=edit_form] div.listing-container input,.form-inline form[name=edit_form] div.listing-container select,.form-inline form[name=edit_form] input[type=text],.form-inline form[name=edit_form] select,.form-inline form[name=edit_form] textarea,.form-inline form[name=sampleheader_form] input[type=text],.form-inline form[name=sampleheader_form] select,.form-inline form[name=sampleheader_form] textarea,.form-inline ul.configlets>li>form input[type=text],.form-inline ul.configlets>li>form select,.form-inline ul.configlets>li>form textarea,.portlet:not(.portletNavigationTree) .form-inline input:not([name=submit]),form.loginform .form-inline input[type=text],form.loginform .form-inline select,form.loginform .form-inline textarea,form.rowlike .form-inline input[type=text],form.rowlike .form-inline select,form.rowlike .form-inline textarea,form.senaite-form .form-inline input[type=text],form.senaite-form .form-inline select,form.senaite-form .form-inline textarea,form[action*=-controlpanel] .form-inline input[type=text],form[action*=-controlpanel] .form-inline select,form[action*=-controlpanel] .form-inline textarea,form[name=analysisrequest_add_form] .form-inline input[type=text],form[name=analysisrequest_add_form] .form-inline select,form[name=analysisrequest_add_form] .form-inline textarea,form[name=edit_form] .form-inline input[type=text],form[name=edit_form] .form-inline select,form[name=edit_form] .form-inline textarea,form[name=edit_form] div.listing-container .form-inline input,form[name=edit_form] div.listing-container .form-inline select,form[name=sampleheader_form] .form-inline input[type=text],form[name=sampleheader_form] .form-inline select,form[name=sampleheader_form] .form-inline textarea,ul.configlets>li>form .form-inline input[type=text],ul.configlets>li>form .form-inline select,ul.configlets>li>form .form-inline textarea{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check,.form-inline form.loginform .field.ArchetypesBooleanWidget,.form-inline form.loginform .field.RejectionSetupWidget,.form-inline form.loginform span.option,.form-inline form.rowlike .field.ArchetypesBooleanWidget,.form-inline form.rowlike .field.RejectionSetupWidget,.form-inline form.rowlike span.option,.form-inline form.senaite-form .field.ArchetypesBooleanWidget,.form-inline form.senaite-form .field.RejectionSetupWidget,.form-inline form.senaite-form span.option,.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget,.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget,.form-inline form[action*=-controlpanel] span.option,.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget,.form-inline form[name=analysisrequest_add_form] span.option,.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget,.form-inline form[name=edit_form] .field.RejectionSetupWidget,.form-inline form[name=edit_form] span.option,.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget,.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget,.form-inline form[name=sampleheader_form] span.option,.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget,.form-inline ul.configlets>li>form .field.RejectionSetupWidget,.form-inline ul.configlets>li>form span.option,form.loginform .form-inline .field.ArchetypesBooleanWidget,form.loginform .form-inline .field.RejectionSetupWidget,form.loginform .form-inline span.option,form.rowlike .form-inline .field.ArchetypesBooleanWidget,form.rowlike .form-inline .field.RejectionSetupWidget,form.rowlike .form-inline span.option,form.senaite-form .form-inline .field.ArchetypesBooleanWidget,form.senaite-form .form-inline .field.RejectionSetupWidget,form.senaite-form .form-inline span.option,form[action*=-controlpanel] .form-inline .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .form-inline .field.RejectionSetupWidget,form[action*=-controlpanel] .form-inline span.option,form[name=analysisrequest_add_form] .form-inline .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .form-inline .field.RejectionSetupWidget,form[name=analysisrequest_add_form] .form-inline span.option,form[name=edit_form] .form-inline .field.ArchetypesBooleanWidget,form[name=edit_form] .form-inline .field.RejectionSetupWidget,form[name=edit_form] .form-inline span.option,form[name=sampleheader_form] .form-inline .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .form-inline .field.RejectionSetupWidget,form[name=sampleheader_form] .form-inline span.option,ul.configlets>li>form .form-inline .field.ArchetypesBooleanWidget,ul.configlets>li>form .form-inline .field.RejectionSetupWidget,ul.configlets>li>form .form-inline span.option{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input,.form-inline form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.loginform .field.RejectionSetupWidget input[type=checkbox],.form-inline form.loginform span.option input[type=checkbox],.form-inline form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.rowlike .field.RejectionSetupWidget input[type=checkbox],.form-inline form.rowlike span.option input[type=checkbox],.form-inline form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.senaite-form .field.RejectionSetupWidget input[type=checkbox],.form-inline form.senaite-form span.option input[type=checkbox],.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[action*=-controlpanel] span.option input[type=checkbox],.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=analysisrequest_add_form] span.option input[type=checkbox],.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=edit_form] span.option input[type=checkbox],.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=sampleheader_form] span.option input[type=checkbox],.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],.form-inline ul.configlets>li>form span.option input[type=checkbox],form.loginform .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.loginform .field.RejectionSetupWidget .form-inline input[type=checkbox],form.loginform span.option .form-inline input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.rowlike .field.RejectionSetupWidget .form-inline input[type=checkbox],form.rowlike span.option .form-inline input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.senaite-form .field.RejectionSetupWidget .form-inline input[type=checkbox],form.senaite-form span.option .form-inline input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[action*=-controlpanel] span.option .form-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=analysisrequest_add_form] span.option .form-inline input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=edit_form] span.option .form-inline input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=sampleheader_form] span.option .form-inline input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget .form-inline input[type=checkbox],ul.configlets>li>form span.option .form-inline input[type=checkbox]{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{display:inline-block;font-weight:400;color:#293333;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{transition:none}}.btn:hover,.formControls input[name*="form.button"]:hover,.portlet:not(.portletNavigationTree) input[name=submit]:hover,a#setup-link:hover,form.loginform input[type=button]:hover,form.rowlike input[type=button]:hover,form.senaite-form input[type=button]:hover,form[action*=-controlpanel] input[type=button]:hover,form[name=analysisrequest_add_form] input[type=button]:hover,form[name=edit_form] input[type=button]:hover,form[name=sampleheader_form] input[type=button]:hover,section>ol.configlets li input[type=submit]:hover,section>ul.configlets li input[type=submit]:hover,ul.configlets>li>form input[type=button]:hover{color:#293333;text-decoration:none}.btn.focus,.btn:focus,.formControls input.focus[name*="form.button"],.formControls input[name*="form.button"]:focus,.portlet:not(.portletNavigationTree) input.focus[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:focus,a#setup-link:focus,a.focus#setup-link,form.loginform input.focus[type=button],form.loginform input[type=button]:focus,form.rowlike input.focus[type=button],form.rowlike input[type=button]:focus,form.senaite-form input.focus[type=button],form.senaite-form input[type=button]:focus,form[action*=-controlpanel] input.focus[type=button],form[action*=-controlpanel] input[type=button]:focus,form[name=analysisrequest_add_form] input.focus[type=button],form[name=analysisrequest_add_form] input[type=button]:focus,form[name=edit_form] input.focus[type=button],form[name=edit_form] input[type=button]:focus,form[name=sampleheader_form] input.focus[type=button],form[name=sampleheader_form] input[type=button]:focus,section>ol.configlets li input.focus[type=submit],section>ol.configlets li input[type=submit]:focus,section>ul.configlets li input.focus[type=submit],section>ul.configlets li input[type=submit]:focus,ul.configlets>li>form input.focus[type=button],ul.configlets>li>form input[type=button]:focus{outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.btn.disabled,.btn:disabled,.formControls input.disabled[name*="form.button"],.formControls input[name*="form.button"]:disabled,.portlet:not(.portletNavigationTree) input.disabled[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:disabled,a#setup-link:disabled,a.disabled#setup-link,form.loginform input.disabled[type=button],form.loginform input[type=button]:disabled,form.rowlike input.disabled[type=button],form.rowlike input[type=button]:disabled,form.senaite-form input.disabled[type=button],form.senaite-form input[type=button]:disabled,form[action*=-controlpanel] input.disabled[type=button],form[action*=-controlpanel] input[type=button]:disabled,form[name=analysisrequest_add_form] input.disabled[type=button],form[name=analysisrequest_add_form] input[type=button]:disabled,form[name=edit_form] input.disabled[type=button],form[name=edit_form] input[type=button]:disabled,form[name=sampleheader_form] input.disabled[type=button],form[name=sampleheader_form] input[type=button]:disabled,section>ol.configlets li input.disabled[type=submit],section>ol.configlets li input[type=submit]:disabled,section>ul.configlets li input.disabled[type=submit],section>ul.configlets li input[type=submit]:disabled,ul.configlets>li>form input.disabled[type=button],ul.configlets>li>form input[type=button]:disabled{opacity:.65}.btn:not(:disabled):not(.disabled),.formControls input[name*="form.button"]:not(:disabled):not(.disabled),.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled),a#setup-link:not(:disabled):not(.disabled),form.loginform input[type=button]:not(:disabled):not(.disabled),form.rowlike input[type=button]:not(:disabled):not(.disabled),form.senaite-form input[type=button]:not(:disabled):not(.disabled),form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled),form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled),form[name=edit_form] input[type=button]:not(:disabled):not(.disabled),form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled),section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled),section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled),ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,a.disabled#setup-link,fieldset:disabled a#setup-link,fieldset:disabled a.btn{pointer-events:none}.btn-primary,.formControls input[name*="form.button"][name="form.button.save"],.formControls input[name*="form.button"][name="form.buttons.save"],.portlet:not(.portletNavigationTree) input[name=submit]{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-primary:hover,.formControls input[name*="form.button"][name="form.button.save"]:hover,.formControls input[name*="form.button"][name="form.buttons.save"]:hover,.portlet:not(.portletNavigationTree) input[name=submit]:hover{color:#fff;background-color:#387493;border-color:#346d8a}.btn-primary.focus,.btn-primary:focus,.formControls input.focus[name*="form.button"][name="form.button.save"],.formControls input.focus[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:focus,.portlet:not(.portletNavigationTree) input.focus[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:focus{color:#fff;background-color:#387493;border-color:#346d8a;box-shadow:0 0 0 .2rem rgba(94,156,187,.5)}.btn-primary.disabled,.btn-primary:disabled,.formControls input.disabled[name*="form.button"][name="form.button.save"],.formControls input.disabled[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:disabled,.formControls input[name*="form.button"][name="form.buttons.save"]:disabled,.portlet:not(.portletNavigationTree) input.disabled[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:disabled{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.button.save"],.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled):active,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled):active,.portlet:not(.portletNavigationTree) .show>input.dropdown-toggle[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled).active,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#346d8a;border-color:#316581}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.button.save"]:focus,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.buttons.save"]:focus,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled):active:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled):active:focus,.portlet:not(.portletNavigationTree) .show>input.dropdown-toggle[name=submit]:focus,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled).active:focus,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(94,156,187,.5)}.btn-secondary,.formControls input[name*="form.button"]{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover,.formControls input[name*="form.button"]:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus,.formControls input.focus[name*="form.button"],.formControls input[name*="form.button"]:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled,.formControls input.disabled[name*="form.button"],.formControls input[name*="form.button"]:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.formControls .show>input.dropdown-toggle[name*="form.button"],.formControls input[name*="form.button"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"]:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.formControls .show>input.dropdown-toggle[name*="form.button"]:focus,.formControls input[name*="form.button"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"]:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#428aaf;border-color:#428aaf}.btn-outline-primary:hover{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#428aaf;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.btn-outline-secondary,a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover,a#setup-link:hover,form.loginform input[type=button]:hover,form.rowlike input[type=button]:hover,form.senaite-form input[type=button]:hover,form[action*=-controlpanel] input[type=button]:hover,form[name=analysisrequest_add_form] input[type=button]:hover,form[name=edit_form] input[type=button]:hover,form[name=sampleheader_form] input[type=button]:hover,section>ol.configlets li input[type=submit]:hover,section>ul.configlets li input[type=submit]:hover,ul.configlets>li>form input[type=button]:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus,a#setup-link:focus,a.focus#setup-link,form.loginform input.focus[type=button],form.loginform input[type=button]:focus,form.rowlike input.focus[type=button],form.rowlike input[type=button]:focus,form.senaite-form input.focus[type=button],form.senaite-form input[type=button]:focus,form[action*=-controlpanel] input.focus[type=button],form[action*=-controlpanel] input[type=button]:focus,form[name=analysisrequest_add_form] input.focus[type=button],form[name=analysisrequest_add_form] input[type=button]:focus,form[name=edit_form] input.focus[type=button],form[name=edit_form] input[type=button]:focus,form[name=sampleheader_form] input.focus[type=button],form[name=sampleheader_form] input[type=button]:focus,section>ol.configlets li input.focus[type=submit],section>ol.configlets li input[type=submit]:focus,section>ul.configlets li input.focus[type=submit],section>ul.configlets li input[type=submit]:focus,ul.configlets>li>form input.focus[type=button],ul.configlets>li>form input[type=button]:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled,a#setup-link:disabled,a.disabled#setup-link,form.loginform input.disabled[type=button],form.loginform input[type=button]:disabled,form.rowlike input.disabled[type=button],form.rowlike input[type=button]:disabled,form.senaite-form input.disabled[type=button],form.senaite-form input[type=button]:disabled,form[action*=-controlpanel] input.disabled[type=button],form[action*=-controlpanel] input[type=button]:disabled,form[name=analysisrequest_add_form] input.disabled[type=button],form[name=analysisrequest_add_form] input[type=button]:disabled,form[name=edit_form] input.disabled[type=button],form[name=edit_form] input[type=button]:disabled,form[name=sampleheader_form] input.disabled[type=button],form[name=sampleheader_form] input[type=button]:disabled,section>ol.configlets li input.disabled[type=submit],section>ol.configlets li input[type=submit]:disabled,section>ul.configlets li input.disabled[type=submit],section>ul.configlets li input[type=submit]:disabled,ul.configlets>li>form input.disabled[type=button],ul.configlets>li>form input[type=button]:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle,.show>a.dropdown-toggle#setup-link,a#setup-link:not(:disabled):not(.disabled).active,a#setup-link:not(:disabled):not(.disabled):active,form.loginform .show>input.dropdown-toggle[type=button],form.loginform input[type=button]:not(:disabled):not(.disabled).active,form.loginform input[type=button]:not(:disabled):not(.disabled):active,form.rowlike .show>input.dropdown-toggle[type=button],form.rowlike input[type=button]:not(:disabled):not(.disabled).active,form.rowlike input[type=button]:not(:disabled):not(.disabled):active,form.senaite-form .show>input.dropdown-toggle[type=button],form.senaite-form input[type=button]:not(:disabled):not(.disabled).active,form.senaite-form input[type=button]:not(:disabled):not(.disabled):active,form[action*=-controlpanel] .show>input.dropdown-toggle[type=button],form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled).active,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled):active,form[name=analysisrequest_add_form] .show>input.dropdown-toggle[type=button],form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled):active,form[name=edit_form] .show>input.dropdown-toggle[type=button],form[name=edit_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled):active,form[name=sampleheader_form] .show>input.dropdown-toggle[type=button],form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled):active,section>ol.configlets li .show>input.dropdown-toggle[type=submit],section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled).active,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled):active,section>ul.configlets li .show>input.dropdown-toggle[type=submit],section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled).active,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled):active,ul.configlets>li>form .show>input.dropdown-toggle[type=button],ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled).active,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled):active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus,.show>a.dropdown-toggle#setup-link:focus,a#setup-link:not(:disabled):not(.disabled).active:focus,a#setup-link:not(:disabled):not(.disabled):active:focus,form.loginform .show>input.dropdown-toggle[type=button]:focus,form.loginform input[type=button]:not(:disabled):not(.disabled).active:focus,form.loginform input[type=button]:not(:disabled):not(.disabled):active:focus,form.rowlike .show>input.dropdown-toggle[type=button]:focus,form.rowlike input[type=button]:not(:disabled):not(.disabled).active:focus,form.rowlike input[type=button]:not(:disabled):not(.disabled):active:focus,form.senaite-form .show>input.dropdown-toggle[type=button]:focus,form.senaite-form input[type=button]:not(:disabled):not(.disabled).active:focus,form.senaite-form input[type=button]:not(:disabled):not(.disabled):active:focus,form[action*=-controlpanel] .show>input.dropdown-toggle[type=button]:focus,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled).active:focus,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=analysisrequest_add_form] .show>input.dropdown-toggle[type=button]:focus,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=edit_form] .show>input.dropdown-toggle[type=button]:focus,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=sampleheader_form] .show>input.dropdown-toggle[type=button]:focus,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled):active:focus,section>ol.configlets li .show>input.dropdown-toggle[type=submit]:focus,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled).active:focus,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled):active:focus,section>ul.configlets li .show>input.dropdown-toggle[type=submit]:focus,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled).active:focus,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled):active:focus,ul.configlets>li>form .show>input.dropdown-toggle[type=button]:focus,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled).active:focus,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#428aaf;text-decoration:none}.btn-link:hover{color:#2d5e77}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-group-lg>a#setup-link,.btn-lg,.formControls .btn-group-lg>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-lg>input[name=submit],form.loginform .btn-group-lg>input[type=button],form.rowlike .btn-group-lg>input[type=button],form.senaite-form .btn-group-lg>input[type=button],form[action*=-controlpanel] .btn-group-lg>input[type=button],form[name=analysisrequest_add_form] .btn-group-lg>input[type=button],form[name=edit_form] .btn-group-lg>input[type=button],form[name=sampleheader_form] .btn-group-lg>input[type=button],section>ol.configlets li .btn-group-lg>input[type=submit],section>ul.configlets li .btn-group-lg>input[type=submit],ul.configlets>li>form .btn-group-lg>input[type=button]{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-group-sm>a#setup-link,.btn-sm,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],form.loginform .btn-group-sm>input[type=button],form.loginform input[type=button],form.rowlike .btn-group-sm>input[type=button],form.rowlike input[type=button],form.senaite-form .btn-group-sm>input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] .btn-group-sm>input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] .btn-group-sm>input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] .btn-group-sm>input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] .btn-group-sm>input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#293333;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#428aaf}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group-vertical>a#setup-link,.btn-group>.btn,.btn-group>a#setup-link,.formControls .btn-group-vertical>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit],form.loginform .btn-group-vertical>input[type=button],form.loginform .btn-group>input[type=button],form.rowlike .btn-group-vertical>input[type=button],form.rowlike .btn-group>input[type=button],form.senaite-form .btn-group-vertical>input[type=button],form.senaite-form .btn-group>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button],form[name=edit_form] .btn-group>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button],section>ol.configlets li .btn-group-vertical>input[type=submit],section>ol.configlets li .btn-group>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit],section>ul.configlets li .btn-group>input[type=submit],ul.configlets>li>form .btn-group-vertical>input[type=button],ul.configlets>li>form .btn-group>input[type=button]{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group-vertical>a#setup-link:active,.btn-group-vertical>a#setup-link:focus,.btn-group-vertical>a#setup-link:hover,.btn-group-vertical>a.active#setup-link,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover,.btn-group>a#setup-link:active,.btn-group>a#setup-link:focus,.btn-group>a#setup-link:hover,.btn-group>a.active#setup-link,.formControls .btn-group-vertical>input.active[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:active,.formControls .btn-group-vertical>input[name*="form.button"]:focus,.formControls .btn-group-vertical>input[name*="form.button"]:hover,.formControls .btn-group>input.active[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:active,.formControls .btn-group>input[name*="form.button"]:focus,.formControls .btn-group>input[name*="form.button"]:hover,.portlet:not(.portletNavigationTree) .btn-group-vertical>input.active[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:active,.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:focus,.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:hover,.portlet:not(.portletNavigationTree) .btn-group>input.active[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:active,.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:focus,.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:hover,form.loginform .btn-group-vertical>input.active[type=button],form.loginform .btn-group-vertical>input[type=button]:active,form.loginform .btn-group-vertical>input[type=button]:focus,form.loginform .btn-group-vertical>input[type=button]:hover,form.loginform .btn-group>input.active[type=button],form.loginform .btn-group>input[type=button]:active,form.loginform .btn-group>input[type=button]:focus,form.loginform .btn-group>input[type=button]:hover,form.rowlike .btn-group-vertical>input.active[type=button],form.rowlike .btn-group-vertical>input[type=button]:active,form.rowlike .btn-group-vertical>input[type=button]:focus,form.rowlike .btn-group-vertical>input[type=button]:hover,form.rowlike .btn-group>input.active[type=button],form.rowlike .btn-group>input[type=button]:active,form.rowlike .btn-group>input[type=button]:focus,form.rowlike .btn-group>input[type=button]:hover,form.senaite-form .btn-group-vertical>input.active[type=button],form.senaite-form .btn-group-vertical>input[type=button]:active,form.senaite-form .btn-group-vertical>input[type=button]:focus,form.senaite-form .btn-group-vertical>input[type=button]:hover,form.senaite-form .btn-group>input.active[type=button],form.senaite-form .btn-group>input[type=button]:active,form.senaite-form .btn-group>input[type=button]:focus,form.senaite-form .btn-group>input[type=button]:hover,form[action*=-controlpanel] .btn-group-vertical>input.active[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:active,form[action*=-controlpanel] .btn-group-vertical>input[type=button]:focus,form[action*=-controlpanel] .btn-group-vertical>input[type=button]:hover,form[action*=-controlpanel] .btn-group>input.active[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:active,form[action*=-controlpanel] .btn-group>input[type=button]:focus,form[action*=-controlpanel] .btn-group>input[type=button]:hover,form[name=analysisrequest_add_form] .btn-group-vertical>input.active[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:active,form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:focus,form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:hover,form[name=analysisrequest_add_form] .btn-group>input.active[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:active,form[name=analysisrequest_add_form] .btn-group>input[type=button]:focus,form[name=analysisrequest_add_form] .btn-group>input[type=button]:hover,form[name=edit_form] .btn-group-vertical>input.active[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:active,form[name=edit_form] .btn-group-vertical>input[type=button]:focus,form[name=edit_form] .btn-group-vertical>input[type=button]:hover,form[name=edit_form] .btn-group>input.active[type=button],form[name=edit_form] .btn-group>input[type=button]:active,form[name=edit_form] .btn-group>input[type=button]:focus,form[name=edit_form] .btn-group>input[type=button]:hover,form[name=sampleheader_form] .btn-group-vertical>input.active[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:active,form[name=sampleheader_form] .btn-group-vertical>input[type=button]:focus,form[name=sampleheader_form] .btn-group-vertical>input[type=button]:hover,form[name=sampleheader_form] .btn-group>input.active[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:active,form[name=sampleheader_form] .btn-group>input[type=button]:focus,form[name=sampleheader_form] .btn-group>input[type=button]:hover,section>ol.configlets li .btn-group-vertical>input.active[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:active,section>ol.configlets li .btn-group-vertical>input[type=submit]:focus,section>ol.configlets li .btn-group-vertical>input[type=submit]:hover,section>ol.configlets li .btn-group>input.active[type=submit],section>ol.configlets li .btn-group>input[type=submit]:active,section>ol.configlets li .btn-group>input[type=submit]:focus,section>ol.configlets li .btn-group>input[type=submit]:hover,section>ul.configlets li .btn-group-vertical>input.active[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:active,section>ul.configlets li .btn-group-vertical>input[type=submit]:focus,section>ul.configlets li .btn-group-vertical>input[type=submit]:hover,section>ul.configlets li .btn-group>input.active[type=submit],section>ul.configlets li .btn-group>input[type=submit]:active,section>ul.configlets li .btn-group>input[type=submit]:focus,section>ul.configlets li .btn-group>input[type=submit]:hover,ul.configlets>li>form .btn-group-vertical>input.active[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:active,ul.configlets>li>form .btn-group-vertical>input[type=button]:focus,ul.configlets>li>form .btn-group-vertical>input[type=button]:hover,ul.configlets>li>form .btn-group>input.active[type=button],ul.configlets>li>form .btn-group>input[type=button]:active,ul.configlets>li>form .btn-group>input[type=button]:focus,ul.configlets>li>form .btn-group>input[type=button]:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child),.btn-group>a#setup-link:not(:first-child),.formControls .btn-group>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:first-child),form.loginform .btn-group>input[type=button]:not(:first-child),form.rowlike .btn-group>input[type=button]:not(:first-child),form.senaite-form .btn-group>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:first-child),form[name=edit_form] .btn-group>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group>input[type=button]:not(:first-child),section>ol.configlets li .btn-group>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group>input[type=button]:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn-group:not(:last-child)>a#setup-link,.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>a#setup-link:not(:last-child):not(.dropdown-toggle),.formControls .btn-group>.btn-group:not(:last-child)>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .btn-group>.btn-group:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:last-child):not(.dropdown-toggle),form.loginform .btn-group>.btn-group:not(:last-child)>input[type=button],form.loginform .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .btn-group>.btn-group:not(:last-child)>input[type=button],form.rowlike .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .btn-group>.btn-group:not(:last-child)>input[type=button],form.senaite-form .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .btn-group>.btn-group:not(:last-child)>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=edit_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .btn-group>.btn-group:not(:last-child)>input[type=submit],section>ol.configlets li .btn-group>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .btn-group>.btn-group:not(:last-child)>input[type=submit],section>ul.configlets li .btn-group>input[type=submit]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .btn-group>.btn-group:not(:last-child)>input[type=button],ul.configlets>li>form .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn-group:not(:first-child)>a#setup-link,.btn-group>.btn:not(:first-child),.btn-group>a#setup-link:not(:first-child),.formControls .btn-group>.btn-group:not(:first-child)>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group>.btn-group:not(:first-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:first-child),form.loginform .btn-group>.btn-group:not(:first-child)>input[type=button],form.loginform .btn-group>input[type=button]:not(:first-child),form.rowlike .btn-group>.btn-group:not(:first-child)>input[type=button],form.rowlike .btn-group>input[type=button]:not(:first-child),form.senaite-form .btn-group>.btn-group:not(:first-child)>input[type=button],form.senaite-form .btn-group>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group>.btn-group:not(:first-child)>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:first-child),form[name=edit_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=edit_form] .btn-group>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:not(:first-child),section>ol.configlets li .btn-group>.btn-group:not(:first-child)>input[type=submit],section>ol.configlets li .btn-group>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group>.btn-group:not(:first-child)>input[type=submit],section>ul.configlets li .btn-group>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group>.btn-group:not(:first-child)>input[type=button],ul.configlets>li>form .btn-group>input[type=button]:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-group-sm>a#setup-link+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split,.formControls input[name*="form.button"]+.dropdown-toggle-split,.portlet:not(.portletNavigationTree) input[name=submit]+.dropdown-toggle-split,form.loginform input[type=button]+.dropdown-toggle-split,form.rowlike input[type=button]+.dropdown-toggle-split,form.senaite-form input[type=button]+.dropdown-toggle-split,form[action*=-controlpanel] input[type=button]+.dropdown-toggle-split,form[name=analysisrequest_add_form] input[type=button]+.dropdown-toggle-split,form[name=edit_form] input[type=button]+.dropdown-toggle-split,form[name=sampleheader_form] input[type=button]+.dropdown-toggle-split,section>ol.configlets li input[type=submit]+.dropdown-toggle-split,section>ul.configlets li input[type=submit]+.dropdown-toggle-split,ul.configlets>li>form input[type=button]+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-group-lg>a#setup-link+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split,.formControls .btn-group-lg>input[name*="form.button"]+.dropdown-toggle-split,.portlet:not(.portletNavigationTree) .btn-group-lg>input[name=submit]+.dropdown-toggle-split,form.loginform .btn-group-lg>input[type=button]+.dropdown-toggle-split,form.rowlike .btn-group-lg>input[type=button]+.dropdown-toggle-split,form.senaite-form .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[action*=-controlpanel] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=analysisrequest_add_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=edit_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=sampleheader_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,section>ol.configlets li .btn-group-lg>input[type=submit]+.dropdown-toggle-split,section>ul.configlets li .btn-group-lg>input[type=submit]+.dropdown-toggle-split,ul.configlets>li>form .btn-group-lg>input[type=button]+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>a#setup-link,.formControls .btn-group-vertical>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit],form.loginform .btn-group-vertical>input[type=button],form.rowlike .btn-group-vertical>input[type=button],form.senaite-form .btn-group-vertical>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button],section>ol.configlets li .btn-group-vertical>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit],ul.configlets>li>form .btn-group-vertical>input[type=button]{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>a#setup-link:not(:first-child),.formControls .btn-group-vertical>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:first-child),form.loginform .btn-group-vertical>input[type=button]:not(:first-child),form.rowlike .btn-group-vertical>input[type=button]:not(:first-child),form.senaite-form .btn-group-vertical>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=edit_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:first-child),section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn-group:not(:last-child)>a#setup-link,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>a#setup-link:not(:last-child):not(.dropdown-toggle),.formControls .btn-group-vertical>.btn-group:not(:last-child)>input[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .btn-group-vertical>.btn-group:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:last-child):not(.dropdown-toggle),form.loginform .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.loginform .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.rowlike .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.senaite-form .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .btn-group-vertical>.btn-group:not(:last-child)>input[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .btn-group-vertical>.btn-group:not(:last-child)>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn-group:not(:first-child)>a#setup-link,.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>a#setup-link:not(:first-child),.formControls .btn-group-vertical>.btn-group:not(:first-child)>input[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group-vertical>.btn-group:not(:first-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:first-child),form.loginform .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.loginform .btn-group-vertical>input[type=button]:not(:first-child),form.rowlike .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.rowlike .btn-group-vertical>input[type=button]:not(:first-child),form.senaite-form .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.senaite-form .btn-group-vertical>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=edit_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:first-child),section>ol.configlets li .btn-group-vertical>.btn-group:not(:first-child)>input[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group-vertical>.btn-group:not(:first-child)>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn,.btn-group-toggle>.btn-group>a#setup-link,.btn-group-toggle>a#setup-link,.formControls .btn-group-toggle>.btn-group>input[name*="form.button"],.formControls .btn-group-toggle>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit],form.loginform .btn-group-toggle>.btn-group>input[type=button],form.loginform .btn-group-toggle>input[type=button],form.rowlike .btn-group-toggle>.btn-group>input[type=button],form.rowlike .btn-group-toggle>input[type=button],form.senaite-form .btn-group-toggle>.btn-group>input[type=button],form.senaite-form .btn-group-toggle>input[type=button],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button],form[action*=-controlpanel] .btn-group-toggle>input[type=button],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button],form[name=edit_form] .btn-group-toggle>input[type=button],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button],form[name=sampleheader_form] .btn-group-toggle>input[type=button],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit],section>ol.configlets li .btn-group-toggle>input[type=submit],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit],section>ul.configlets li .btn-group-toggle>input[type=submit],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button],ul.configlets>li>form .btn-group-toggle>input[type=button]{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>a#setup-link input[type=checkbox],.btn-group-toggle>.btn-group>a#setup-link input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>a#setup-link input[type=checkbox],.btn-group-toggle>a#setup-link input[type=radio],.formControls .btn-group-toggle>.btn-group>input[name*="form.button"] input[type=checkbox],.formControls .btn-group-toggle>.btn-group>input[name*="form.button"] input[type=radio],.formControls .btn-group-toggle>input[name*="form.button"] input[type=checkbox],.formControls .btn-group-toggle>input[name*="form.button"] input[type=radio],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit] input[type=checkbox],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit] input[type=radio],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit] input[type=checkbox],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit] input[type=radio],form.loginform .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.loginform .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.loginform .btn-group-toggle>input[type=button] input[type=checkbox],form.loginform .btn-group-toggle>input[type=button] input[type=radio],form.rowlike .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.rowlike .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.rowlike .btn-group-toggle>input[type=button] input[type=checkbox],form.rowlike .btn-group-toggle>input[type=button] input[type=radio],form.senaite-form .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.senaite-form .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.senaite-form .btn-group-toggle>input[type=button] input[type=checkbox],form.senaite-form .btn-group-toggle>input[type=button] input[type=radio],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[action*=-controlpanel] .btn-group-toggle>input[type=button] input[type=checkbox],form[action*=-controlpanel] .btn-group-toggle>input[type=button] input[type=radio],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button] input[type=radio],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=edit_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=edit_form] .btn-group-toggle>input[type=button] input[type=radio],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=sampleheader_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=sampleheader_form] .btn-group-toggle>input[type=button] input[type=radio],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=checkbox],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=radio],section>ol.configlets li .btn-group-toggle>input[type=submit] input[type=checkbox],section>ol.configlets li .btn-group-toggle>input[type=submit] input[type=radio],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=checkbox],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=radio],section>ul.configlets li .btn-group-toggle>input[type=submit] input[type=checkbox],section>ul.configlets li .btn-group-toggle>input[type=submit] input[type=radio],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button] input[type=radio],ul.configlets>li>form .btn-group-toggle>input[type=button] input[type=checkbox],ul.configlets>li>form .btn-group-toggle>input[type=button] input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit]),form.loginform .input-group>input[type=text],form.loginform .input-group>select,form.loginform .input-group>textarea,form.rowlike .input-group>input[type=text],form.rowlike .input-group>select,form.rowlike .input-group>textarea,form.senaite-form .input-group>input[type=text],form.senaite-form .input-group>select,form.senaite-form .input-group>textarea,form[action*=-controlpanel] .input-group>input[type=text],form[action*=-controlpanel] .input-group>select,form[action*=-controlpanel] .input-group>textarea,form[name=analysisrequest_add_form] .input-group>input[type=text],form[name=analysisrequest_add_form] .input-group>select,form[name=analysisrequest_add_form] .input-group>textarea,form[name=edit_form] .input-group>input[type=text],form[name=edit_form] .input-group>select,form[name=edit_form] .input-group>textarea,form[name=edit_form] div.listing-container .input-group>input,form[name=edit_form] div.listing-container .input-group>select,form[name=sampleheader_form] .input-group>input[type=text],form[name=sampleheader_form] .input-group>select,form[name=sampleheader_form] .input-group>textarea,ul.configlets>li>form .input-group>input[type=text],ul.configlets>li>form .input-group>select,ul.configlets>li>form .input-group>textarea{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control,.portlet:not(.portletNavigationTree) .input-group>.custom-file+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.custom-select+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.form-control+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.form-control-plaintext+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.custom-file,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.custom-select,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.form-control,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.loginform .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.rowlike .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input:not([name=submit])+input,.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>textarea+input:not([name=submit]),form.loginform .input-group>.custom-file+input[type=text],form.loginform .input-group>.custom-file+select,form.loginform .input-group>.custom-file+textarea,form.loginform .input-group>.custom-select+input[type=text],form.loginform .input-group>.custom-select+select,form.loginform .input-group>.custom-select+textarea,form.loginform .input-group>.form-control+input[type=text],form.loginform .input-group>.form-control+select,form.loginform .input-group>.form-control+textarea,form.loginform .input-group>.form-control-plaintext+input[type=text],form.loginform .input-group>.form-control-plaintext+select,form.loginform .input-group>.form-control-plaintext+textarea,form.loginform .input-group>input[type=text]+.custom-file,form.loginform .input-group>input[type=text]+.custom-select,form.loginform .input-group>input[type=text]+.form-control,form.loginform .input-group>input[type=text]+input[type=text],form.loginform .input-group>input[type=text]+select,form.loginform .input-group>input[type=text]+textarea,form.loginform .input-group>select+.custom-file,form.loginform .input-group>select+.custom-select,form.loginform .input-group>select+.form-control,form.loginform .input-group>select+input[type=text],form.loginform .input-group>select+select,form.loginform .input-group>select+textarea,form.loginform .input-group>textarea+.custom-file,form.loginform .input-group>textarea+.custom-select,form.loginform .input-group>textarea+.form-control,form.loginform .input-group>textarea+input[type=text],form.loginform .input-group>textarea+select,form.loginform .input-group>textarea+textarea,form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.loginform .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.loginform .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.loginform .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.loginform form.rowlike .input-group>input[type=text]+input[type=text],form.loginform form.rowlike .input-group>input[type=text]+select,form.loginform form.rowlike .input-group>input[type=text]+textarea,form.loginform form.rowlike .input-group>select+input[type=text],form.loginform form.rowlike .input-group>select+select,form.loginform form.rowlike .input-group>select+textarea,form.loginform form.rowlike .input-group>textarea+input[type=text],form.loginform form.rowlike .input-group>textarea+select,form.loginform form.rowlike .input-group>textarea+textarea,form.loginform form.senaite-form .input-group>input[type=text]+input[type=text],form.loginform form.senaite-form .input-group>input[type=text]+select,form.loginform form.senaite-form .input-group>input[type=text]+textarea,form.loginform form.senaite-form .input-group>select+input[type=text],form.loginform form.senaite-form .input-group>select+select,form.loginform form.senaite-form .input-group>select+textarea,form.loginform form.senaite-form .input-group>textarea+input[type=text],form.loginform form.senaite-form .input-group>textarea+select,form.loginform form.senaite-form .input-group>textarea+textarea,form.loginform form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.loginform form[action*=-controlpanel] .input-group>input[type=text]+select,form.loginform form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.loginform form[action*=-controlpanel] .input-group>select+input[type=text],form.loginform form[action*=-controlpanel] .input-group>select+select,form.loginform form[action*=-controlpanel] .input-group>select+textarea,form.loginform form[action*=-controlpanel] .input-group>textarea+input[type=text],form.loginform form[action*=-controlpanel] .input-group>textarea+select,form.loginform form[action*=-controlpanel] .input-group>textarea+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>select+select,form.loginform form[name=analysisrequest_add_form] .input-group>select+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>textarea+select,form.loginform form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.loginform form[name=edit_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=edit_form] .input-group>input[type=text]+select,form.loginform form[name=edit_form] .input-group>input[type=text]+textarea,form.loginform form[name=edit_form] .input-group>select+input[type=text],form.loginform form[name=edit_form] .input-group>select+select,form.loginform form[name=edit_form] .input-group>select+textarea,form.loginform form[name=edit_form] .input-group>textarea+input[type=text],form.loginform form[name=edit_form] .input-group>textarea+select,form.loginform form[name=edit_form] .input-group>textarea+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.loginform form[name=edit_form] div.listing-container .input-group>input+select,form.loginform form[name=edit_form] div.listing-container .input-group>input+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.loginform form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.loginform form[name=edit_form] div.listing-container .input-group>select+input,form.loginform form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.loginform form[name=edit_form] div.listing-container .input-group>select+select,form.loginform form[name=edit_form] div.listing-container .input-group>select+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>textarea+input,form.loginform form[name=edit_form] div.listing-container .input-group>textarea+select,form.loginform form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=sampleheader_form] .input-group>input[type=text]+select,form.loginform form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.loginform form[name=sampleheader_form] .input-group>select+input[type=text],form.loginform form[name=sampleheader_form] .input-group>select+select,form.loginform form[name=sampleheader_form] .input-group>select+textarea,form.loginform form[name=sampleheader_form] .input-group>textarea+input[type=text],form.loginform form[name=sampleheader_form] .input-group>textarea+select,form.loginform form[name=sampleheader_form] .input-group>textarea+textarea,form.loginform ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.loginform ul.configlets>li>form .input-group>input[type=text]+select,form.loginform ul.configlets>li>form .input-group>input[type=text]+textarea,form.loginform ul.configlets>li>form .input-group>select+input[type=text],form.loginform ul.configlets>li>form .input-group>select+select,form.loginform ul.configlets>li>form .input-group>select+textarea,form.loginform ul.configlets>li>form .input-group>textarea+input[type=text],form.loginform ul.configlets>li>form .input-group>textarea+select,form.loginform ul.configlets>li>form .input-group>textarea+textarea,form.rowlike .input-group>.custom-file+input[type=text],form.rowlike .input-group>.custom-file+select,form.rowlike .input-group>.custom-file+textarea,form.rowlike .input-group>.custom-select+input[type=text],form.rowlike .input-group>.custom-select+select,form.rowlike .input-group>.custom-select+textarea,form.rowlike .input-group>.form-control+input[type=text],form.rowlike .input-group>.form-control+select,form.rowlike .input-group>.form-control+textarea,form.rowlike .input-group>.form-control-plaintext+input[type=text],form.rowlike .input-group>.form-control-plaintext+select,form.rowlike .input-group>.form-control-plaintext+textarea,form.rowlike .input-group>input[type=text]+.custom-file,form.rowlike .input-group>input[type=text]+.custom-select,form.rowlike .input-group>input[type=text]+.form-control,form.rowlike .input-group>input[type=text]+input[type=text],form.rowlike .input-group>input[type=text]+select,form.rowlike .input-group>input[type=text]+textarea,form.rowlike .input-group>select+.custom-file,form.rowlike .input-group>select+.custom-select,form.rowlike .input-group>select+.form-control,form.rowlike .input-group>select+input[type=text],form.rowlike .input-group>select+select,form.rowlike .input-group>select+textarea,form.rowlike .input-group>textarea+.custom-file,form.rowlike .input-group>textarea+.custom-select,form.rowlike .input-group>textarea+.form-control,form.rowlike .input-group>textarea+input[type=text],form.rowlike .input-group>textarea+select,form.rowlike .input-group>textarea+textarea,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.rowlike .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.rowlike .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.rowlike form.loginform .input-group>input[type=text]+input[type=text],form.rowlike form.loginform .input-group>input[type=text]+select,form.rowlike form.loginform .input-group>input[type=text]+textarea,form.rowlike form.loginform .input-group>select+input[type=text],form.rowlike form.loginform .input-group>select+select,form.rowlike form.loginform .input-group>select+textarea,form.rowlike form.loginform .input-group>textarea+input[type=text],form.rowlike form.loginform .input-group>textarea+select,form.rowlike form.loginform .input-group>textarea+textarea,form.rowlike form.senaite-form .input-group>input[type=text]+input[type=text],form.rowlike form.senaite-form .input-group>input[type=text]+select,form.rowlike form.senaite-form .input-group>input[type=text]+textarea,form.rowlike form.senaite-form .input-group>select+input[type=text],form.rowlike form.senaite-form .input-group>select+select,form.rowlike form.senaite-form .input-group>select+textarea,form.rowlike form.senaite-form .input-group>textarea+input[type=text],form.rowlike form.senaite-form .input-group>textarea+select,form.rowlike form.senaite-form .input-group>textarea+textarea,form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+select,form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.rowlike form[action*=-controlpanel] .input-group>select+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>select+select,form.rowlike form[action*=-controlpanel] .input-group>select+textarea,form.rowlike form[action*=-controlpanel] .input-group>textarea+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>textarea+select,form.rowlike form[action*=-controlpanel] .input-group>textarea+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>select+select,form.rowlike form[name=analysisrequest_add_form] .input-group>select+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+select,form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.rowlike form[name=edit_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=edit_form] .input-group>input[type=text]+select,form.rowlike form[name=edit_form] .input-group>input[type=text]+textarea,form.rowlike form[name=edit_form] .input-group>select+input[type=text],form.rowlike form[name=edit_form] .input-group>select+select,form.rowlike form[name=edit_form] .input-group>select+textarea,form.rowlike form[name=edit_form] .input-group>textarea+input[type=text],form.rowlike form[name=edit_form] .input-group>textarea+select,form.rowlike form[name=edit_form] .input-group>textarea+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.rowlike form[name=edit_form] div.listing-container .input-group>input+select,form.rowlike form[name=edit_form] div.listing-container .input-group>input+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.rowlike form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.rowlike form[name=edit_form] div.listing-container .input-group>select+input,form.rowlike form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.rowlike form[name=edit_form] div.listing-container .input-group>select+select,form.rowlike form[name=edit_form] div.listing-container .input-group>select+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>textarea+input,form.rowlike form[name=edit_form] div.listing-container .input-group>textarea+select,form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+select,form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.rowlike form[name=sampleheader_form] .input-group>select+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>select+select,form.rowlike form[name=sampleheader_form] .input-group>select+textarea,form.rowlike form[name=sampleheader_form] .input-group>textarea+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>textarea+select,form.rowlike form[name=sampleheader_form] .input-group>textarea+textarea,form.rowlike ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.rowlike ul.configlets>li>form .input-group>input[type=text]+select,form.rowlike ul.configlets>li>form .input-group>input[type=text]+textarea,form.rowlike ul.configlets>li>form .input-group>select+input[type=text],form.rowlike ul.configlets>li>form .input-group>select+select,form.rowlike ul.configlets>li>form .input-group>select+textarea,form.rowlike ul.configlets>li>form .input-group>textarea+input[type=text],form.rowlike ul.configlets>li>form .input-group>textarea+select,form.rowlike ul.configlets>li>form .input-group>textarea+textarea,form.senaite-form .input-group>.custom-file+input[type=text],form.senaite-form .input-group>.custom-file+select,form.senaite-form .input-group>.custom-file+textarea,form.senaite-form .input-group>.custom-select+input[type=text],form.senaite-form .input-group>.custom-select+select,form.senaite-form .input-group>.custom-select+textarea,form.senaite-form .input-group>.form-control+input[type=text],form.senaite-form .input-group>.form-control+select,form.senaite-form .input-group>.form-control+textarea,form.senaite-form .input-group>.form-control-plaintext+input[type=text],form.senaite-form .input-group>.form-control-plaintext+select,form.senaite-form .input-group>.form-control-plaintext+textarea,form.senaite-form .input-group>input[type=text]+.custom-file,form.senaite-form .input-group>input[type=text]+.custom-select,form.senaite-form .input-group>input[type=text]+.form-control,form.senaite-form .input-group>input[type=text]+input[type=text],form.senaite-form .input-group>input[type=text]+select,form.senaite-form .input-group>input[type=text]+textarea,form.senaite-form .input-group>select+.custom-file,form.senaite-form .input-group>select+.custom-select,form.senaite-form .input-group>select+.form-control,form.senaite-form .input-group>select+input[type=text],form.senaite-form .input-group>select+select,form.senaite-form .input-group>select+textarea,form.senaite-form .input-group>textarea+.custom-file,form.senaite-form .input-group>textarea+.custom-select,form.senaite-form .input-group>textarea+.form-control,form.senaite-form .input-group>textarea+input[type=text],form.senaite-form .input-group>textarea+select,form.senaite-form .input-group>textarea+textarea,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.senaite-form .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.senaite-form .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.senaite-form form.loginform .input-group>input[type=text]+input[type=text],form.senaite-form form.loginform .input-group>input[type=text]+select,form.senaite-form form.loginform .input-group>input[type=text]+textarea,form.senaite-form form.loginform .input-group>select+input[type=text],form.senaite-form form.loginform .input-group>select+select,form.senaite-form form.loginform .input-group>select+textarea,form.senaite-form form.loginform .input-group>textarea+input[type=text],form.senaite-form form.loginform .input-group>textarea+select,form.senaite-form form.loginform .input-group>textarea+textarea,form.senaite-form form.rowlike .input-group>input[type=text]+input[type=text],form.senaite-form form.rowlike .input-group>input[type=text]+select,form.senaite-form form.rowlike .input-group>input[type=text]+textarea,form.senaite-form form.rowlike .input-group>select+input[type=text],form.senaite-form form.rowlike .input-group>select+select,form.senaite-form form.rowlike .input-group>select+textarea,form.senaite-form form.rowlike .input-group>textarea+input[type=text],form.senaite-form form.rowlike .input-group>textarea+select,form.senaite-form form.rowlike .input-group>textarea+textarea,form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+select,form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.senaite-form form[action*=-controlpanel] .input-group>select+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>select+select,form.senaite-form form[action*=-controlpanel] .input-group>select+textarea,form.senaite-form form[action*=-controlpanel] .input-group>textarea+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>textarea+select,form.senaite-form form[action*=-controlpanel] .input-group>textarea+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>select+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>select+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.senaite-form form[name=edit_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=edit_form] .input-group>input[type=text]+select,form.senaite-form form[name=edit_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=edit_form] .input-group>select+input[type=text],form.senaite-form form[name=edit_form] .input-group>select+select,form.senaite-form form[name=edit_form] .input-group>select+textarea,form.senaite-form form[name=edit_form] .input-group>textarea+input[type=text],form.senaite-form form[name=edit_form] .input-group>textarea+select,form.senaite-form form[name=edit_form] .input-group>textarea+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.senaite-form form[name=edit_form] div.listing-container .input-group>input+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>input+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.senaite-form form[name=edit_form] div.listing-container .input-group>select+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>textarea+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>textarea+select,form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+select,form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=sampleheader_form] .input-group>select+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>select+select,form.senaite-form form[name=sampleheader_form] .input-group>select+textarea,form.senaite-form form[name=sampleheader_form] .input-group>textarea+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>textarea+select,form.senaite-form form[name=sampleheader_form] .input-group>textarea+textarea,form.senaite-form ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.senaite-form ul.configlets>li>form .input-group>input[type=text]+select,form.senaite-form ul.configlets>li>form .input-group>input[type=text]+textarea,form.senaite-form ul.configlets>li>form .input-group>select+input[type=text],form.senaite-form ul.configlets>li>form .input-group>select+select,form.senaite-form ul.configlets>li>form .input-group>select+textarea,form.senaite-form ul.configlets>li>form .input-group>textarea+input[type=text],form.senaite-form ul.configlets>li>form .input-group>textarea+select,form.senaite-form ul.configlets>li>form .input-group>textarea+textarea,form[action*=-controlpanel] .input-group>.custom-file+input[type=text],form[action*=-controlpanel] .input-group>.custom-file+select,form[action*=-controlpanel] .input-group>.custom-file+textarea,form[action*=-controlpanel] .input-group>.custom-select+input[type=text],form[action*=-controlpanel] .input-group>.custom-select+select,form[action*=-controlpanel] .input-group>.custom-select+textarea,form[action*=-controlpanel] .input-group>.form-control+input[type=text],form[action*=-controlpanel] .input-group>.form-control+select,form[action*=-controlpanel] .input-group>.form-control+textarea,form[action*=-controlpanel] .input-group>.form-control-plaintext+input[type=text],form[action*=-controlpanel] .input-group>.form-control-plaintext+select,form[action*=-controlpanel] .input-group>.form-control-plaintext+textarea,form[action*=-controlpanel] .input-group>input[type=text]+.custom-file,form[action*=-controlpanel] .input-group>input[type=text]+.custom-select,form[action*=-controlpanel] .input-group>input[type=text]+.form-control,form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] .input-group>input[type=text]+select,form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[action*=-controlpanel] .input-group>select+.custom-file,form[action*=-controlpanel] .input-group>select+.custom-select,form[action*=-controlpanel] .input-group>select+.form-control,form[action*=-controlpanel] .input-group>select+input[type=text],form[action*=-controlpanel] .input-group>select+select,form[action*=-controlpanel] .input-group>select+textarea,form[action*=-controlpanel] .input-group>textarea+.custom-file,form[action*=-controlpanel] .input-group>textarea+.custom-select,form[action*=-controlpanel] .input-group>textarea+.form-control,form[action*=-controlpanel] .input-group>textarea+input[type=text],form[action*=-controlpanel] .input-group>textarea+select,form[action*=-controlpanel] .input-group>textarea+textarea,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[action*=-controlpanel] form.loginform .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.loginform .input-group>input[type=text]+select,form[action*=-controlpanel] form.loginform .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.loginform .input-group>select+input[type=text],form[action*=-controlpanel] form.loginform .input-group>select+select,form[action*=-controlpanel] form.loginform .input-group>select+textarea,form[action*=-controlpanel] form.loginform .input-group>textarea+input[type=text],form[action*=-controlpanel] form.loginform .input-group>textarea+select,form[action*=-controlpanel] form.loginform .input-group>textarea+textarea,form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+select,form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.rowlike .input-group>select+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>select+select,form[action*=-controlpanel] form.rowlike .input-group>select+textarea,form[action*=-controlpanel] form.rowlike .input-group>textarea+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>textarea+select,form[action*=-controlpanel] form.rowlike .input-group>textarea+textarea,form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+select,form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.senaite-form .input-group>select+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>select+select,form[action*=-controlpanel] form.senaite-form .input-group>select+textarea,form[action*=-controlpanel] form.senaite-form .input-group>textarea+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>textarea+select,form[action*=-controlpanel] form.senaite-form .input-group>textarea+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>select+select,form[action*=-controlpanel] form[name=edit_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>textarea+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>textarea+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>select+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>select+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>select+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+textarea,form[name=analysisrequest_add_form] .input-group>.custom-file+input[type=text],form[name=analysisrequest_add_form] .input-group>.custom-file+select,form[name=analysisrequest_add_form] .input-group>.custom-file+textarea,form[name=analysisrequest_add_form] .input-group>.custom-select+input[type=text],form[name=analysisrequest_add_form] .input-group>.custom-select+select,form[name=analysisrequest_add_form] .input-group>.custom-select+textarea,form[name=analysisrequest_add_form] .input-group>.form-control+input[type=text],form[name=analysisrequest_add_form] .input-group>.form-control+select,form[name=analysisrequest_add_form] .input-group>.form-control+textarea,form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+input[type=text],form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+select,form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+textarea,form[name=analysisrequest_add_form] .input-group>input[type=text]+.custom-file,form[name=analysisrequest_add_form] .input-group>input[type=text]+.custom-select,form[name=analysisrequest_add_form] .input-group>input[type=text]+.form-control,form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] .input-group>select+.custom-file,form[name=analysisrequest_add_form] .input-group>select+.custom-select,form[name=analysisrequest_add_form] .input-group>select+.form-control,form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] .input-group>select+select,form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=analysisrequest_add_form] .input-group>textarea+.custom-file,form[name=analysisrequest_add_form] .input-group>textarea+.custom-select,form[name=analysisrequest_add_form] .input-group>textarea+.form-control,form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.loginform .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>select+select,form[name=analysisrequest_add_form] form.loginform .input-group>select+textarea,form[name=analysisrequest_add_form] form.loginform .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>textarea+select,form[name=analysisrequest_add_form] form.loginform .input-group>textarea+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>select+select,form[name=analysisrequest_add_form] form.rowlike .input-group>select+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+select,form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>select+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>select+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+textarea,form[name=edit_form] .input-group>.custom-file+input[type=text],form[name=edit_form] .input-group>.custom-file+select,form[name=edit_form] .input-group>.custom-file+textarea,form[name=edit_form] .input-group>.custom-select+input[type=text],form[name=edit_form] .input-group>.custom-select+select,form[name=edit_form] .input-group>.custom-select+textarea,form[name=edit_form] .input-group>.form-control+input[type=text],form[name=edit_form] .input-group>.form-control+select,form[name=edit_form] .input-group>.form-control+textarea,form[name=edit_form] .input-group>.form-control-plaintext+input[type=text],form[name=edit_form] .input-group>.form-control-plaintext+select,form[name=edit_form] .input-group>.form-control-plaintext+textarea,form[name=edit_form] .input-group>input[type=text]+.custom-file,form[name=edit_form] .input-group>input[type=text]+.custom-select,form[name=edit_form] .input-group>input[type=text]+.form-control,form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] .input-group>input[type=text]+select,form[name=edit_form] .input-group>input[type=text]+textarea,form[name=edit_form] .input-group>select+.custom-file,form[name=edit_form] .input-group>select+.custom-select,form[name=edit_form] .input-group>select+.form-control,form[name=edit_form] .input-group>select+input[type=text],form[name=edit_form] .input-group>select+select,form[name=edit_form] .input-group>select+textarea,form[name=edit_form] .input-group>textarea+.custom-file,form[name=edit_form] .input-group>textarea+.custom-select,form[name=edit_form] .input-group>textarea+.form-control,form[name=edit_form] .input-group>textarea+input[type=text],form[name=edit_form] .input-group>textarea+select,form[name=edit_form] .input-group>textarea+textarea,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=edit_form] div.listing-container .input-group>.custom-file+input,form[name=edit_form] div.listing-container .input-group>.custom-file+select,form[name=edit_form] div.listing-container .input-group>.custom-select+input,form[name=edit_form] div.listing-container .input-group>.custom-select+select,form[name=edit_form] div.listing-container .input-group>.form-control+input,form[name=edit_form] div.listing-container .input-group>.form-control+select,form[name=edit_form] div.listing-container .input-group>.form-control-plaintext+input,form[name=edit_form] div.listing-container .input-group>.form-control-plaintext+select,form[name=edit_form] div.listing-container .input-group>input+.custom-file,form[name=edit_form] div.listing-container .input-group>input+.custom-select,form[name=edit_form] div.listing-container .input-group>input+.form-control,form[name=edit_form] div.listing-container .input-group>input+input,form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=edit_form] div.listing-container .input-group>input+select,form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=edit_form] div.listing-container .input-group>select+.custom-file,form[name=edit_form] div.listing-container .input-group>select+.custom-select,form[name=edit_form] div.listing-container .input-group>select+.form-control,form[name=edit_form] div.listing-container .input-group>select+input,form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=edit_form] div.listing-container .input-group>select+select,form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input+input:not([name=submit]),form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=edit_form] div.listing-container form.loginform .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.loginform .input-group>input+select,form[name=edit_form] div.listing-container form.loginform .input-group>input+textarea,form[name=edit_form] div.listing-container form.loginform .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.loginform .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.loginform .input-group>select+input,form[name=edit_form] div.listing-container form.loginform .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.loginform .input-group>select+select,form[name=edit_form] div.listing-container form.loginform .input-group>select+textarea,form[name=edit_form] div.listing-container form.loginform .input-group>textarea+input,form[name=edit_form] div.listing-container form.loginform .input-group>textarea+select,form[name=edit_form] div.listing-container form.rowlike .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.rowlike .input-group>input+select,form[name=edit_form] div.listing-container form.rowlike .input-group>input+textarea,form[name=edit_form] div.listing-container form.rowlike .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.rowlike .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.rowlike .input-group>select+input,form[name=edit_form] div.listing-container form.rowlike .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.rowlike .input-group>select+select,form[name=edit_form] div.listing-container form.rowlike .input-group>select+textarea,form[name=edit_form] div.listing-container form.rowlike .input-group>textarea+input,form[name=edit_form] div.listing-container form.rowlike .input-group>textarea+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.senaite-form .input-group>input+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>input+textarea,form[name=edit_form] div.listing-container form.senaite-form .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.senaite-form .input-group>select+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+textarea,form[name=edit_form] div.listing-container form.senaite-form .input-group>textarea+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>textarea+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+textarea,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+textarea,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>textarea+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>textarea+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+textarea,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>textarea+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+textarea,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+textarea,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>textarea+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>textarea+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+input[type=text],form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+textarea,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input[type=text]+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input[type=text]+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+input[type=text],form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+textarea,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>textarea+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>textarea+select,form[name=edit_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=edit_form] form.loginform .input-group>input[type=text]+select,form[name=edit_form] form.loginform .input-group>input[type=text]+textarea,form[name=edit_form] form.loginform .input-group>select+input[type=text],form[name=edit_form] form.loginform .input-group>select+select,form[name=edit_form] form.loginform .input-group>select+textarea,form[name=edit_form] form.loginform .input-group>textarea+input[type=text],form[name=edit_form] form.loginform .input-group>textarea+select,form[name=edit_form] form.loginform .input-group>textarea+textarea,form[name=edit_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=edit_form] form.rowlike .input-group>input[type=text]+select,form[name=edit_form] form.rowlike .input-group>input[type=text]+textarea,form[name=edit_form] form.rowlike .input-group>select+input[type=text],form[name=edit_form] form.rowlike .input-group>select+select,form[name=edit_form] form.rowlike .input-group>select+textarea,form[name=edit_form] form.rowlike .input-group>textarea+input[type=text],form[name=edit_form] form.rowlike .input-group>textarea+select,form[name=edit_form] form.rowlike .input-group>textarea+textarea,form[name=edit_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=edit_form] form.senaite-form .input-group>input[type=text]+select,form[name=edit_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=edit_form] form.senaite-form .input-group>select+input[type=text],form[name=edit_form] form.senaite-form .input-group>select+select,form[name=edit_form] form.senaite-form .input-group>select+textarea,form[name=edit_form] form.senaite-form .input-group>textarea+input[type=text],form[name=edit_form] form.senaite-form .input-group>textarea+select,form[name=edit_form] form.senaite-form .input-group>textarea+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>select+select,form[name=edit_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>select+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>select+select,form[name=edit_form] form[name=sampleheader_form] .input-group>select+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+select,form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+textarea,form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=edit_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>select+select,form[name=edit_form] ul.configlets>li>form .input-group>select+textarea,form[name=edit_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>textarea+select,form[name=edit_form] ul.configlets>li>form .input-group>textarea+textarea,form[name=sampleheader_form] .input-group>.custom-file+input[type=text],form[name=sampleheader_form] .input-group>.custom-file+select,form[name=sampleheader_form] .input-group>.custom-file+textarea,form[name=sampleheader_form] .input-group>.custom-select+input[type=text],form[name=sampleheader_form] .input-group>.custom-select+select,form[name=sampleheader_form] .input-group>.custom-select+textarea,form[name=sampleheader_form] .input-group>.form-control+input[type=text],form[name=sampleheader_form] .input-group>.form-control+select,form[name=sampleheader_form] .input-group>.form-control+textarea,form[name=sampleheader_form] .input-group>.form-control-plaintext+input[type=text],form[name=sampleheader_form] .input-group>.form-control-plaintext+select,form[name=sampleheader_form] .input-group>.form-control-plaintext+textarea,form[name=sampleheader_form] .input-group>input[type=text]+.custom-file,form[name=sampleheader_form] .input-group>input[type=text]+.custom-select,form[name=sampleheader_form] .input-group>input[type=text]+.form-control,form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] .input-group>select+.custom-file,form[name=sampleheader_form] .input-group>select+.custom-select,form[name=sampleheader_form] .input-group>select+.form-control,form[name=sampleheader_form] .input-group>select+input[type=text],form[name=sampleheader_form] .input-group>select+select,form[name=sampleheader_form] .input-group>select+textarea,form[name=sampleheader_form] .input-group>textarea+.custom-file,form[name=sampleheader_form] .input-group>textarea+.custom-select,form[name=sampleheader_form] .input-group>textarea+.form-control,form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] .input-group>textarea+select,form[name=sampleheader_form] .input-group>textarea+textarea,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=sampleheader_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.loginform .input-group>input[type=text]+select,form[name=sampleheader_form] form.loginform .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.loginform .input-group>select+input[type=text],form[name=sampleheader_form] form.loginform .input-group>select+select,form[name=sampleheader_form] form.loginform .input-group>select+textarea,form[name=sampleheader_form] form.loginform .input-group>textarea+input[type=text],form[name=sampleheader_form] form.loginform .input-group>textarea+select,form[name=sampleheader_form] form.loginform .input-group>textarea+textarea,form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+select,form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.rowlike .input-group>select+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>select+select,form[name=sampleheader_form] form.rowlike .input-group>select+textarea,form[name=sampleheader_form] form.rowlike .input-group>textarea+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>textarea+select,form[name=sampleheader_form] form.rowlike .input-group>textarea+textarea,form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+select,form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.senaite-form .input-group>select+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>select+select,form[name=sampleheader_form] form.senaite-form .input-group>select+textarea,form[name=sampleheader_form] form.senaite-form .input-group>textarea+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>textarea+select,form[name=sampleheader_form] form.senaite-form .input-group>textarea+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>select+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>select+select,form[name=sampleheader_form] form[name=edit_form] .input-group>select+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+select,form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=sampleheader_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>select+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>select+textarea,form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+textarea,ul.configlets>li>form .input-group>.custom-file+input[type=text],ul.configlets>li>form .input-group>.custom-file+select,ul.configlets>li>form .input-group>.custom-file+textarea,ul.configlets>li>form .input-group>.custom-select+input[type=text],ul.configlets>li>form .input-group>.custom-select+select,ul.configlets>li>form .input-group>.custom-select+textarea,ul.configlets>li>form .input-group>.form-control+input[type=text],ul.configlets>li>form .input-group>.form-control+select,ul.configlets>li>form .input-group>.form-control+textarea,ul.configlets>li>form .input-group>.form-control-plaintext+input[type=text],ul.configlets>li>form .input-group>.form-control-plaintext+select,ul.configlets>li>form .input-group>.form-control-plaintext+textarea,ul.configlets>li>form .input-group>input[type=text]+.custom-file,ul.configlets>li>form .input-group>input[type=text]+.custom-select,ul.configlets>li>form .input-group>input[type=text]+.form-control,ul.configlets>li>form .input-group>input[type=text]+input[type=text],ul.configlets>li>form .input-group>input[type=text]+select,ul.configlets>li>form .input-group>input[type=text]+textarea,ul.configlets>li>form .input-group>select+.custom-file,ul.configlets>li>form .input-group>select+.custom-select,ul.configlets>li>form .input-group>select+.form-control,ul.configlets>li>form .input-group>select+input[type=text],ul.configlets>li>form .input-group>select+select,ul.configlets>li>form .input-group>select+textarea,ul.configlets>li>form .input-group>textarea+.custom-file,ul.configlets>li>form .input-group>textarea+.custom-select,ul.configlets>li>form .input-group>textarea+.form-control,ul.configlets>li>form .input-group>textarea+input[type=text],ul.configlets>li>form .input-group>textarea+select,ul.configlets>li>form .input-group>textarea+textarea,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),ul.configlets>li>form form.loginform .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.loginform .input-group>input[type=text]+select,ul.configlets>li>form form.loginform .input-group>input[type=text]+textarea,ul.configlets>li>form form.loginform .input-group>select+input[type=text],ul.configlets>li>form form.loginform .input-group>select+select,ul.configlets>li>form form.loginform .input-group>select+textarea,ul.configlets>li>form form.loginform .input-group>textarea+input[type=text],ul.configlets>li>form form.loginform .input-group>textarea+select,ul.configlets>li>form form.loginform .input-group>textarea+textarea,ul.configlets>li>form form.rowlike .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.rowlike .input-group>input[type=text]+select,ul.configlets>li>form form.rowlike .input-group>input[type=text]+textarea,ul.configlets>li>form form.rowlike .input-group>select+input[type=text],ul.configlets>li>form form.rowlike .input-group>select+select,ul.configlets>li>form form.rowlike .input-group>select+textarea,ul.configlets>li>form form.rowlike .input-group>textarea+input[type=text],ul.configlets>li>form form.rowlike .input-group>textarea+select,ul.configlets>li>form form.rowlike .input-group>textarea+textarea,ul.configlets>li>form form.senaite-form .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.senaite-form .input-group>input[type=text]+select,ul.configlets>li>form form.senaite-form .input-group>input[type=text]+textarea,ul.configlets>li>form form.senaite-form .input-group>select+input[type=text],ul.configlets>li>form form.senaite-form .input-group>select+select,ul.configlets>li>form form.senaite-form .input-group>select+textarea,ul.configlets>li>form form.senaite-form .input-group>textarea+input[type=text],ul.configlets>li>form form.senaite-form .input-group>textarea+select,ul.configlets>li>form form.senaite-form .input-group>textarea+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>select+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>select+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>select+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+textarea,ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=edit_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>select+select,ul.configlets>li>form form[name=edit_form] .input-group>select+textarea,ul.configlets>li>form form[name=edit_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>textarea+select,ul.configlets>li>form form[name=edit_form] .input-group>textarea+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+input[type=text],ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input[type=text]+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input[type=text]+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+input[type=text],ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>textarea+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>textarea+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=sampleheader_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>select+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>select+textarea,ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+textarea{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus,.portlet:not(.portletNavigationTree) .input-group>input:focus:not([name=submit]),form.loginform .input-group>input[type=text]:focus,form.loginform .input-group>select:focus,form.loginform .input-group>textarea:focus,form.rowlike .input-group>input[type=text]:focus,form.rowlike .input-group>select:focus,form.rowlike .input-group>textarea:focus,form.senaite-form .input-group>input[type=text]:focus,form.senaite-form .input-group>select:focus,form.senaite-form .input-group>textarea:focus,form[action*=-controlpanel] .input-group>input[type=text]:focus,form[action*=-controlpanel] .input-group>select:focus,form[action*=-controlpanel] .input-group>textarea:focus,form[name=analysisrequest_add_form] .input-group>input[type=text]:focus,form[name=analysisrequest_add_form] .input-group>select:focus,form[name=analysisrequest_add_form] .input-group>textarea:focus,form[name=edit_form] .input-group>input[type=text]:focus,form[name=edit_form] .input-group>select:focus,form[name=edit_form] .input-group>textarea:focus,form[name=edit_form] div.listing-container .input-group>input:focus,form[name=sampleheader_form] .input-group>input[type=text]:focus,form[name=sampleheader_form] .input-group>select:focus,form[name=sampleheader_form] .input-group>textarea:focus,ul.configlets>li>form .input-group>input[type=text]:focus,ul.configlets>li>form .input-group>select:focus,ul.configlets>li>form .input-group>textarea:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child),.portlet:not(.portletNavigationTree) .input-group>input:not(:first-child):not([name=submit]),form.loginform .input-group>input[type=text]:not(:first-child),form.loginform .input-group>select:not(:first-child),form.loginform .input-group>textarea:not(:first-child),form.rowlike .input-group>input[type=text]:not(:first-child),form.rowlike .input-group>select:not(:first-child),form.rowlike .input-group>textarea:not(:first-child),form.senaite-form .input-group>input[type=text]:not(:first-child),form.senaite-form .input-group>select:not(:first-child),form.senaite-form .input-group>textarea:not(:first-child),form[action*=-controlpanel] .input-group>input[type=text]:not(:first-child),form[action*=-controlpanel] .input-group>select:not(:first-child),form[action*=-controlpanel] .input-group>textarea:not(:first-child),form[name=analysisrequest_add_form] .input-group>input[type=text]:not(:first-child),form[name=analysisrequest_add_form] .input-group>select:not(:first-child),form[name=analysisrequest_add_form] .input-group>textarea:not(:first-child),form[name=edit_form] .input-group>input[type=text]:not(:first-child),form[name=edit_form] .input-group>select:not(:first-child),form[name=edit_form] .input-group>textarea:not(:first-child),form[name=edit_form] div.listing-container .input-group>input:not(:first-child),form[name=sampleheader_form] .input-group>input[type=text]:not(:first-child),form[name=sampleheader_form] .input-group>select:not(:first-child),form[name=sampleheader_form] .input-group>textarea:not(:first-child),ul.configlets>li>form .input-group>input[type=text]:not(:first-child),ul.configlets>li>form .input-group>select:not(:first-child),ul.configlets>li>form .input-group>textarea:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child),.portlet:not(.portletNavigationTree) .input-group.has-validation>input:nth-last-child(n+3):not([name=submit]),.portlet:not(.portletNavigationTree) .input-group:not(.has-validation)>input:not(:last-child):not([name=submit]),form.loginform .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.loginform .input-group.has-validation>select:nth-last-child(n+3),form.loginform .input-group.has-validation>textarea:nth-last-child(n+3),form.loginform .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.loginform .input-group:not(.has-validation)>select:not(:last-child),form.loginform .input-group:not(.has-validation)>textarea:not(:last-child),form.rowlike .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.rowlike .input-group.has-validation>select:nth-last-child(n+3),form.rowlike .input-group.has-validation>textarea:nth-last-child(n+3),form.rowlike .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.rowlike .input-group:not(.has-validation)>select:not(:last-child),form.rowlike .input-group:not(.has-validation)>textarea:not(:last-child),form.senaite-form .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.senaite-form .input-group.has-validation>select:nth-last-child(n+3),form.senaite-form .input-group.has-validation>textarea:nth-last-child(n+3),form.senaite-form .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.senaite-form .input-group:not(.has-validation)>select:not(:last-child),form.senaite-form .input-group:not(.has-validation)>textarea:not(:last-child),form[action*=-controlpanel] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[action*=-controlpanel] .input-group.has-validation>select:nth-last-child(n+3),form[action*=-controlpanel] .input-group.has-validation>textarea:nth-last-child(n+3),form[action*=-controlpanel] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[action*=-controlpanel] .input-group:not(.has-validation)>select:not(:last-child),form[action*=-controlpanel] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=analysisrequest_add_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=edit_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=edit_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=edit_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=edit_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=edit_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=edit_form] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=edit_form] div.listing-container .input-group.has-validation>input:nth-last-child(n+3),form[name=edit_form] div.listing-container .input-group:not(.has-validation)>input:not(:last-child),form[name=sampleheader_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=sampleheader_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=sampleheader_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=sampleheader_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=sampleheader_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=sampleheader_form] .input-group:not(.has-validation)>textarea:not(:last-child),ul.configlets>li>form .input-group.has-validation>input[type=text]:nth-last-child(n+3),ul.configlets>li>form .input-group.has-validation>select:nth-last-child(n+3),ul.configlets>li>form .input-group.has-validation>textarea:nth-last-child(n+3),ul.configlets>li>form .input-group:not(.has-validation)>input[type=text]:not(:last-child),ul.configlets>li>form .input-group:not(.has-validation)>select:not(:last-child),ul.configlets>li>form .input-group:not(.has-validation)>textarea:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.formControls .input-group-append input[name*="form.button"],.formControls .input-group-prepend input[name*="form.button"],.input-group-append .btn,.input-group-append .formControls input[name*="form.button"],.input-group-append .portlet:not(.portletNavigationTree) input[name=submit],.input-group-append a#setup-link,.input-group-append form.loginform input[type=button],.input-group-append form.rowlike input[type=button],.input-group-append form.senaite-form input[type=button],.input-group-append form[action*=-controlpanel] input[type=button],.input-group-append form[name=analysisrequest_add_form] input[type=button],.input-group-append form[name=edit_form] input[type=button],.input-group-append form[name=sampleheader_form] input[type=button],.input-group-append section>ol.configlets li input[type=submit],.input-group-append section>ul.configlets li input[type=submit],.input-group-append ul.configlets>li>form input[type=button],.input-group-prepend .btn,.input-group-prepend .formControls input[name*="form.button"],.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit],.input-group-prepend a#setup-link,.input-group-prepend form.loginform input[type=button],.input-group-prepend form.rowlike input[type=button],.input-group-prepend form.senaite-form input[type=button],.input-group-prepend form[action*=-controlpanel] input[type=button],.input-group-prepend form[name=analysisrequest_add_form] input[type=button],.input-group-prepend form[name=edit_form] input[type=button],.input-group-prepend form[name=sampleheader_form] input[type=button],.input-group-prepend section>ol.configlets li input[type=submit],.input-group-prepend section>ul.configlets li input[type=submit],.input-group-prepend ul.configlets>li>form input[type=button],.portlet:not(.portletNavigationTree) .input-group-append input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit],form.loginform .input-group-append input[type=button],form.loginform .input-group-prepend input[type=button],form.rowlike .input-group-append input[type=button],form.rowlike .input-group-prepend input[type=button],form.senaite-form .input-group-append input[type=button],form.senaite-form .input-group-prepend input[type=button],form[action*=-controlpanel] .input-group-append input[type=button],form[action*=-controlpanel] .input-group-prepend input[type=button],form[name=analysisrequest_add_form] .input-group-append input[type=button],form[name=analysisrequest_add_form] .input-group-prepend input[type=button],form[name=edit_form] .input-group-append input[type=button],form[name=edit_form] .input-group-prepend input[type=button],form[name=sampleheader_form] .input-group-append input[type=button],form[name=sampleheader_form] .input-group-prepend input[type=button],section>ol.configlets li .input-group-append input[type=submit],section>ol.configlets li .input-group-prepend input[type=submit],section>ul.configlets li .input-group-append input[type=submit],section>ul.configlets li .input-group-prepend input[type=submit],ul.configlets>li>form .input-group-append input[type=button],ul.configlets>li>form .input-group-prepend input[type=button]{position:relative;z-index:2}.formControls .input-group-append input[name*="form.button"]:focus,.formControls .input-group-prepend input[name*="form.button"]:focus,.input-group-append .btn:focus,.input-group-append .formControls input[name*="form.button"]:focus,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]:focus,.input-group-append a#setup-link:focus,.input-group-append form.loginform input[type=button]:focus,.input-group-append form.rowlike input[type=button]:focus,.input-group-append form.senaite-form input[type=button]:focus,.input-group-append form[action*=-controlpanel] input[type=button]:focus,.input-group-append form[name=analysisrequest_add_form] input[type=button]:focus,.input-group-append form[name=edit_form] input[type=button]:focus,.input-group-append form[name=sampleheader_form] input[type=button]:focus,.input-group-append section>ol.configlets li input[type=submit]:focus,.input-group-append section>ul.configlets li input[type=submit]:focus,.input-group-append ul.configlets>li>form input[type=button]:focus,.input-group-prepend .btn:focus,.input-group-prepend .formControls input[name*="form.button"]:focus,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]:focus,.input-group-prepend a#setup-link:focus,.input-group-prepend form.loginform input[type=button]:focus,.input-group-prepend form.rowlike input[type=button]:focus,.input-group-prepend form.senaite-form input[type=button]:focus,.input-group-prepend form[action*=-controlpanel] input[type=button]:focus,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]:focus,.input-group-prepend form[name=edit_form] input[type=button]:focus,.input-group-prepend form[name=sampleheader_form] input[type=button]:focus,.input-group-prepend section>ol.configlets li input[type=submit]:focus,.input-group-prepend section>ul.configlets li input[type=submit]:focus,.input-group-prepend ul.configlets>li>form input[type=button]:focus,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]:focus,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]:focus,form.loginform .input-group-append input[type=button]:focus,form.loginform .input-group-prepend input[type=button]:focus,form.rowlike .input-group-append input[type=button]:focus,form.rowlike .input-group-prepend input[type=button]:focus,form.senaite-form .input-group-append input[type=button]:focus,form.senaite-form .input-group-prepend input[type=button]:focus,form[action*=-controlpanel] .input-group-append input[type=button]:focus,form[action*=-controlpanel] .input-group-prepend input[type=button]:focus,form[name=analysisrequest_add_form] .input-group-append input[type=button]:focus,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]:focus,form[name=edit_form] .input-group-append input[type=button]:focus,form[name=edit_form] .input-group-prepend input[type=button]:focus,form[name=sampleheader_form] .input-group-append input[type=button]:focus,form[name=sampleheader_form] .input-group-prepend input[type=button]:focus,section>ol.configlets li .input-group-append input[type=submit]:focus,section>ol.configlets li .input-group-prepend input[type=submit]:focus,section>ul.configlets li .input-group-append input[type=submit]:focus,section>ul.configlets li .input-group-prepend input[type=submit]:focus,ul.configlets>li>form .input-group-append input[type=button]:focus,ul.configlets>li>form .input-group-prepend input[type=button]:focus{z-index:3}.formControls .input-group-append .btn+input[name*="form.button"],.formControls .input-group-append .input-group-text+input[name*="form.button"],.formControls .input-group-append .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.formControls .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.formControls .input-group-append a#setup-link+input[name*="form.button"],.formControls .input-group-append form.loginform input[name*="form.button"]+input[type=button],.formControls .input-group-append form.loginform input[type=button]+input[name*="form.button"],.formControls .input-group-append form.rowlike input[name*="form.button"]+input[type=button],.formControls .input-group-append form.rowlike input[type=button]+input[name*="form.button"],.formControls .input-group-append form.senaite-form input[name*="form.button"]+input[type=button],.formControls .input-group-append form.senaite-form input[type=button]+input[name*="form.button"],.formControls .input-group-append form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=edit_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=edit_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append input[name*="form.button"]+.btn,.formControls .input-group-append input[name*="form.button"]+.input-group-text,.formControls .input-group-append input[name*="form.button"]+a#setup-link,.formControls .input-group-append input[name*="form.button"]+input[name*="form.button"],.formControls .input-group-append section>ol.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-append section>ol.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-append section>ul.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-append section>ul.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-append ul.configlets>li>form input[name*="form.button"]+input[type=button],.formControls .input-group-append ul.configlets>li>form input[type=button]+input[name*="form.button"],.formControls .input-group-prepend .btn+input[name*="form.button"],.formControls .input-group-prepend .input-group-text+input[name*="form.button"],.formControls .input-group-prepend .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.formControls .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.formControls .input-group-prepend a#setup-link+input[name*="form.button"],.formControls .input-group-prepend form.loginform input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.loginform input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form.rowlike input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.rowlike input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form.senaite-form input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.senaite-form input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=edit_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=edit_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend input[name*="form.button"]+.btn,.formControls .input-group-prepend input[name*="form.button"]+.input-group-text,.formControls .input-group-prepend input[name*="form.button"]+a#setup-link,.formControls .input-group-prepend input[name*="form.button"]+input[name*="form.button"],.formControls .input-group-prepend section>ol.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-prepend section>ol.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-prepend section>ul.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-prepend section>ul.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-prepend ul.configlets>li>form input[name*="form.button"]+input[type=button],.formControls .input-group-prepend ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .btn+a#setup-link,.input-group-append .formControls .btn+input[name*="form.button"],.input-group-append .formControls .input-group-text+input[name*="form.button"],.input-group-append .formControls .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.input-group-append .formControls .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.input-group-append .formControls a#setup-link+input[name*="form.button"],.input-group-append .formControls form.loginform input[name*="form.button"]+input[type=button],.input-group-append .formControls form.loginform input[type=button]+input[name*="form.button"],.input-group-append .formControls form.rowlike input[name*="form.button"]+input[type=button],.input-group-append .formControls form.rowlike input[type=button]+input[name*="form.button"],.input-group-append .formControls form.senaite-form input[name*="form.button"]+input[type=button],.input-group-append .formControls form.senaite-form input[type=button]+input[name*="form.button"],.input-group-append .formControls form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=edit_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=edit_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls input[name*="form.button"]+.btn,.input-group-append .formControls input[name*="form.button"]+.input-group-text,.input-group-append .formControls input[name*="form.button"]+a#setup-link,.input-group-append .formControls input[name*="form.button"]+input[name*="form.button"],.input-group-append .formControls section>ol.configlets li input[name*="form.button"]+input[type=submit],.input-group-append .formControls section>ol.configlets li input[type=submit]+input[name*="form.button"],.input-group-append .formControls section>ul.configlets li input[name*="form.button"]+input[type=submit],.input-group-append .formControls section>ul.configlets li input[type=submit]+input[name*="form.button"],.input-group-append .formControls ul.configlets>li>form input[name*="form.button"]+input[type=button],.input-group-append .formControls ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+a#setup-link,.input-group-append .portlet:not(.portletNavigationTree) .btn+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) .input-group-text+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) a#setup-link+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+.btn,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+.input-group-text,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+a#setup-link,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ol.configlets li input[name=submit]+input[type=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ol.configlets li input[type=submit]+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ul.configlets li input[name=submit]+input[type=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ul.configlets li input[type=submit]+input[name=submit],.input-group-append a#setup-link+.btn,.input-group-append a#setup-link+.input-group-text,.input-group-append a#setup-link+a#setup-link,.input-group-append form.loginform .btn+input[type=button],.input-group-append form.loginform .input-group-text+input[type=button],.input-group-append form.loginform .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.loginform .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.loginform a#setup-link+input[type=button],.input-group-append form.loginform form.rowlike input[type=button]+input[type=button],.input-group-append form.loginform form.senaite-form input[type=button]+input[type=button],.input-group-append form.loginform form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.loginform form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.loginform form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.loginform form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.loginform input[type=button]+.btn,.input-group-append form.loginform input[type=button]+.input-group-text,.input-group-append form.loginform input[type=button]+a#setup-link,.input-group-append form.loginform input[type=button]+input[type=button],.input-group-append form.loginform section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.loginform section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.loginform section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.loginform section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.loginform ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form.rowlike .btn+input[type=button],.input-group-append form.rowlike .input-group-text+input[type=button],.input-group-append form.rowlike .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.rowlike .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.rowlike a#setup-link+input[type=button],.input-group-append form.rowlike form.loginform input[type=button]+input[type=button],.input-group-append form.rowlike form.senaite-form input[type=button]+input[type=button],.input-group-append form.rowlike form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.rowlike input[type=button]+.btn,.input-group-append form.rowlike input[type=button]+.input-group-text,.input-group-append form.rowlike input[type=button]+a#setup-link,.input-group-append form.rowlike input[type=button]+input[type=button],.input-group-append form.rowlike section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.rowlike section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.rowlike section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.rowlike section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.rowlike ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form.senaite-form .btn+input[type=button],.input-group-append form.senaite-form .input-group-text+input[type=button],.input-group-append form.senaite-form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.senaite-form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.senaite-form a#setup-link+input[type=button],.input-group-append form.senaite-form form.loginform input[type=button]+input[type=button],.input-group-append form.senaite-form form.rowlike input[type=button]+input[type=button],.input-group-append form.senaite-form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.senaite-form input[type=button]+.btn,.input-group-append form.senaite-form input[type=button]+.input-group-text,.input-group-append form.senaite-form input[type=button]+a#setup-link,.input-group-append form.senaite-form input[type=button]+input[type=button],.input-group-append form.senaite-form section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.senaite-form section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.senaite-form section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.senaite-form section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.senaite-form ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] .btn+input[type=button],.input-group-append form[action*=-controlpanel] .input-group-text+input[type=button],.input-group-append form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[action*=-controlpanel] a#setup-link+input[type=button],.input-group-append form[action*=-controlpanel] form.loginform input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form.rowlike input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form.senaite-form input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] input[type=button]+.btn,.input-group-append form[action*=-controlpanel] input[type=button]+.input-group-text,.input-group-append form[action*=-controlpanel] input[type=button]+a#setup-link,.input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[action*=-controlpanel] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[action*=-controlpanel] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[action*=-controlpanel] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[action*=-controlpanel] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] .btn+input[type=button],.input-group-append form[name=analysisrequest_add_form] .input-group-text+input[type=button],.input-group-append form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=analysisrequest_add_form] a#setup-link+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] input[type=button]+.btn,.input-group-append form[name=analysisrequest_add_form] input[type=button]+.input-group-text,.input-group-append form[name=analysisrequest_add_form] input[type=button]+a#setup-link,.input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=analysisrequest_add_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=analysisrequest_add_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=edit_form] .btn+input[type=button],.input-group-append form[name=edit_form] .input-group-text+input[type=button],.input-group-append form[name=edit_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=edit_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=edit_form] a#setup-link+input[type=button],.input-group-append form[name=edit_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=edit_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=edit_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] input[type=button]+.btn,.input-group-append form[name=edit_form] input[type=button]+.input-group-text,.input-group-append form[name=edit_form] input[type=button]+a#setup-link,.input-group-append form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=edit_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=edit_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=edit_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=edit_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] .btn+input[type=button],.input-group-append form[name=sampleheader_form] .input-group-text+input[type=button],.input-group-append form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=sampleheader_form] a#setup-link+input[type=button],.input-group-append form[name=sampleheader_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] input[type=button]+.btn,.input-group-append form[name=sampleheader_form] input[type=button]+.input-group-text,.input-group-append form[name=sampleheader_form] input[type=button]+a#setup-link,.input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=sampleheader_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=sampleheader_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=sampleheader_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=sampleheader_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append section>ol.configlets li .btn+input[type=submit],.input-group-append section>ol.configlets li .input-group-text+input[type=submit],.input-group-append section>ol.configlets li a#setup-link+input[type=submit],.input-group-append section>ol.configlets li input[type=submit]+.btn,.input-group-append section>ol.configlets li input[type=submit]+.input-group-text,.input-group-append section>ol.configlets li input[type=submit]+a#setup-link,.input-group-append section>ol.configlets li input[type=submit]+input[type=submit],.input-group-append section>ol.configlets section>ul.configlets li input[type=submit]+input[type=submit],.input-group-append section>ol.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-append section>ol.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-append section>ul.configlets li .btn+input[type=submit],.input-group-append section>ul.configlets li .input-group-text+input[type=submit],.input-group-append section>ul.configlets li a#setup-link+input[type=submit],.input-group-append section>ul.configlets li input[type=submit]+.btn,.input-group-append section>ul.configlets li input[type=submit]+.input-group-text,.input-group-append section>ul.configlets li input[type=submit]+a#setup-link,.input-group-append section>ul.configlets li input[type=submit]+input[type=submit],.input-group-append section>ul.configlets section>ol.configlets li input[type=submit]+input[type=submit],.input-group-append section>ul.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-append section>ul.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-append ul.configlets>li>form .btn+input[type=button],.input-group-append ul.configlets>li>form .input-group-text+input[type=button],.input-group-append ul.configlets>li>form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append ul.configlets>li>form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append ul.configlets>li>form a#setup-link+input[type=button],.input-group-append ul.configlets>li>form form.loginform input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form.rowlike input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form.senaite-form input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=edit_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form input[type=button]+.btn,.input-group-append ul.configlets>li>form input[type=button]+.input-group-text,.input-group-append ul.configlets>li>form input[type=button]+a#setup-link,.input-group-append ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .btn+a#setup-link,.input-group-prepend .formControls .btn+input[name*="form.button"],.input-group-prepend .formControls .input-group-text+input[name*="form.button"],.input-group-prepend .formControls .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.input-group-prepend .formControls .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.input-group-prepend .formControls a#setup-link+input[name*="form.button"],.input-group-prepend .formControls form.loginform input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.loginform input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form.rowlike input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.rowlike input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form.senaite-form input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.senaite-form input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=edit_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=edit_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls input[name*="form.button"]+.btn,.input-group-prepend .formControls input[name*="form.button"]+.input-group-text,.input-group-prepend .formControls input[name*="form.button"]+a#setup-link,.input-group-prepend .formControls input[name*="form.button"]+input[name*="form.button"],.input-group-prepend .formControls section>ol.configlets li input[name*="form.button"]+input[type=submit],.input-group-prepend .formControls section>ol.configlets li input[type=submit]+input[name*="form.button"],.input-group-prepend .formControls section>ul.configlets li input[name*="form.button"]+input[type=submit],.input-group-prepend .formControls section>ul.configlets li input[type=submit]+input[name*="form.button"],.input-group-prepend .formControls ul.configlets>li>form input[name*="form.button"]+input[type=button],.input-group-prepend .formControls ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+a#setup-link,.input-group-prepend .portlet:not(.portletNavigationTree) .btn+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) .input-group-text+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) a#setup-link+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+.btn,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+.input-group-text,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+a#setup-link,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ol.configlets li input[name=submit]+input[type=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ol.configlets li input[type=submit]+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ul.configlets li input[name=submit]+input[type=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ul.configlets li input[type=submit]+input[name=submit],.input-group-prepend a#setup-link+.btn,.input-group-prepend a#setup-link+.input-group-text,.input-group-prepend a#setup-link+a#setup-link,.input-group-prepend form.loginform .btn+input[type=button],.input-group-prepend form.loginform .input-group-text+input[type=button],.input-group-prepend form.loginform .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.loginform .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.loginform a#setup-link+input[type=button],.input-group-prepend form.loginform form.rowlike input[type=button]+input[type=button],.input-group-prepend form.loginform form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.loginform form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.loginform input[type=button]+.btn,.input-group-prepend form.loginform input[type=button]+.input-group-text,.input-group-prepend form.loginform input[type=button]+a#setup-link,.input-group-prepend form.loginform input[type=button]+input[type=button],.input-group-prepend form.loginform section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.loginform section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.loginform section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.loginform section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.loginform ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form.rowlike .btn+input[type=button],.input-group-prepend form.rowlike .input-group-text+input[type=button],.input-group-prepend form.rowlike .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.rowlike .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.rowlike a#setup-link+input[type=button],.input-group-prepend form.rowlike form.loginform input[type=button]+input[type=button],.input-group-prepend form.rowlike form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.rowlike form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike input[type=button]+.btn,.input-group-prepend form.rowlike input[type=button]+.input-group-text,.input-group-prepend form.rowlike input[type=button]+a#setup-link,.input-group-prepend form.rowlike input[type=button]+input[type=button],.input-group-prepend form.rowlike section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.rowlike section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.rowlike section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.rowlike section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.rowlike ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form.senaite-form .btn+input[type=button],.input-group-prepend form.senaite-form .input-group-text+input[type=button],.input-group-prepend form.senaite-form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.senaite-form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.senaite-form a#setup-link+input[type=button],.input-group-prepend form.senaite-form form.loginform input[type=button]+input[type=button],.input-group-prepend form.senaite-form form.rowlike input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form input[type=button]+.btn,.input-group-prepend form.senaite-form input[type=button]+.input-group-text,.input-group-prepend form.senaite-form input[type=button]+a#setup-link,.input-group-prepend form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.senaite-form section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.senaite-form section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.senaite-form section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.senaite-form section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.senaite-form ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] .btn+input[type=button],.input-group-prepend form[action*=-controlpanel] .input-group-text+input[type=button],.input-group-prepend form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[action*=-controlpanel] a#setup-link+input[type=button],.input-group-prepend form[action*=-controlpanel] form.loginform input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] input[type=button]+.btn,.input-group-prepend form[action*=-controlpanel] input[type=button]+.input-group-text,.input-group-prepend form[action*=-controlpanel] input[type=button]+a#setup-link,.input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[action*=-controlpanel] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[action*=-controlpanel] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .btn+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .input-group-text+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=analysisrequest_add_form] a#setup-link+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+.btn,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+.input-group-text,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+a#setup-link,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=analysisrequest_add_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=analysisrequest_add_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] .btn+input[type=button],.input-group-prepend form[name=edit_form] .input-group-text+input[type=button],.input-group-prepend form[name=edit_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=edit_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=edit_form] a#setup-link+input[type=button],.input-group-prepend form[name=edit_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] input[type=button]+.btn,.input-group-prepend form[name=edit_form] input[type=button]+.input-group-text,.input-group-prepend form[name=edit_form] input[type=button]+a#setup-link,.input-group-prepend form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=edit_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=edit_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=edit_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=edit_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] .btn+input[type=button],.input-group-prepend form[name=sampleheader_form] .input-group-text+input[type=button],.input-group-prepend form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=sampleheader_form] a#setup-link+input[type=button],.input-group-prepend form[name=sampleheader_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] input[type=button]+.btn,.input-group-prepend form[name=sampleheader_form] input[type=button]+.input-group-text,.input-group-prepend form[name=sampleheader_form] input[type=button]+a#setup-link,.input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=sampleheader_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=sampleheader_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend section>ol.configlets li .btn+input[type=submit],.input-group-prepend section>ol.configlets li .input-group-text+input[type=submit],.input-group-prepend section>ol.configlets li a#setup-link+input[type=submit],.input-group-prepend section>ol.configlets li input[type=submit]+.btn,.input-group-prepend section>ol.configlets li input[type=submit]+.input-group-text,.input-group-prepend section>ol.configlets li input[type=submit]+a#setup-link,.input-group-prepend section>ol.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ol.configlets section>ul.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ol.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-prepend section>ol.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-prepend section>ul.configlets li .btn+input[type=submit],.input-group-prepend section>ul.configlets li .input-group-text+input[type=submit],.input-group-prepend section>ul.configlets li a#setup-link+input[type=submit],.input-group-prepend section>ul.configlets li input[type=submit]+.btn,.input-group-prepend section>ul.configlets li input[type=submit]+.input-group-text,.input-group-prepend section>ul.configlets li input[type=submit]+a#setup-link,.input-group-prepend section>ul.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ul.configlets section>ol.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ul.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-prepend section>ul.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-prepend ul.configlets>li>form .btn+input[type=button],.input-group-prepend ul.configlets>li>form .input-group-text+input[type=button],.input-group-prepend ul.configlets>li>form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend ul.configlets>li>form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend ul.configlets>li>form a#setup-link+input[type=button],.input-group-prepend ul.configlets>li>form form.loginform input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form.rowlike input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form.senaite-form input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form input[type=button]+.btn,.input-group-prepend ul.configlets>li>form input[type=button]+.input-group-text,.input-group-prepend ul.configlets>li>form input[type=button]+a#setup-link,.input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],.portlet:not(.portletNavigationTree) .formControls .input-group-append input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .formControls .input-group-append input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .formControls .input-group-prepend input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .formControls .input-group-prepend input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-append .btn+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append .formControls input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append .formControls input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-append .input-group-text+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append a#setup-link+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.loginform input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.loginform input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.rowlike input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.rowlike input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.senaite-form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.senaite-form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[action*=-controlpanel] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[action*=-controlpanel] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=analysisrequest_add_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=edit_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=edit_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=sampleheader_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=sampleheader_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+.btn,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+.input-group-text,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+a#setup-link,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ol.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ol.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ul.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ul.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append ul.configlets>li>form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append ul.configlets>li>form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .btn+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .formControls input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .formControls input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-prepend .input-group-text+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend a#setup-link+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.loginform input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.loginform input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.rowlike input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.rowlike input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.senaite-form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.senaite-form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[action*=-controlpanel] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[action*=-controlpanel] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=analysisrequest_add_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=edit_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=edit_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=sampleheader_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=sampleheader_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+.btn,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+.input-group-text,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+a#setup-link,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ol.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ol.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ul.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ul.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend ul.configlets>li>form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend ul.configlets>li>form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.loginform .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.loginform .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.loginform .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.loginform .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.rowlike .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.rowlike .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.rowlike .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.rowlike .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-prepend input[type=button]+input[name=submit],form.loginform .formControls .input-group-append input[name*="form.button"]+input[type=button],form.loginform .formControls .input-group-append input[type=button]+input[name*="form.button"],form.loginform .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.loginform .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.loginform .input-group-append .btn+input[type=button],form.loginform .input-group-append .formControls input[name*="form.button"]+input[type=button],form.loginform .input-group-append .formControls input[type=button]+input[name*="form.button"],form.loginform .input-group-append .input-group-text+input[type=button],form.loginform .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.loginform .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.loginform .input-group-append a#setup-link+input[type=button],form.loginform .input-group-append form.rowlike input[type=button]+input[type=button],form.loginform .input-group-append form.senaite-form input[type=button]+input[type=button],form.loginform .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.loginform .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.loginform .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.loginform .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.loginform .input-group-append input[type=button]+.btn,form.loginform .input-group-append input[type=button]+.input-group-text,form.loginform .input-group-append input[type=button]+a#setup-link,form.loginform .input-group-append input[type=button]+input[type=button],form.loginform .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.loginform .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.loginform .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.loginform .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.loginform .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.loginform .input-group-prepend .btn+input[type=button],form.loginform .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.loginform .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.loginform .input-group-prepend .input-group-text+input[type=button],form.loginform .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.loginform .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.loginform .input-group-prepend a#setup-link+input[type=button],form.loginform .input-group-prepend form.rowlike input[type=button]+input[type=button],form.loginform .input-group-prepend form.senaite-form input[type=button]+input[type=button],form.loginform .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.loginform .input-group-prepend input[type=button]+.btn,form.loginform .input-group-prepend input[type=button]+.input-group-text,form.loginform .input-group-prepend input[type=button]+a#setup-link,form.loginform .input-group-prepend input[type=button]+input[type=button],form.loginform .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.loginform .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.loginform .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.loginform .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.loginform .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.loginform form.rowlike .input-group-append input[type=button]+input[type=button],form.loginform form.rowlike .input-group-prepend input[type=button]+input[type=button],form.loginform form.senaite-form .input-group-append input[type=button]+input[type=button],form.loginform form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.loginform form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.loginform form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.loginform ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.loginform ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form.rowlike .formControls .input-group-append input[name*="form.button"]+input[type=button],form.rowlike .formControls .input-group-append input[type=button]+input[name*="form.button"],form.rowlike .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.rowlike .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.rowlike .input-group-append .btn+input[type=button],form.rowlike .input-group-append .formControls input[name*="form.button"]+input[type=button],form.rowlike .input-group-append .formControls input[type=button]+input[name*="form.button"],form.rowlike .input-group-append .input-group-text+input[type=button],form.rowlike .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.rowlike .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.rowlike .input-group-append a#setup-link+input[type=button],form.rowlike .input-group-append form.loginform input[type=button]+input[type=button],form.rowlike .input-group-append form.senaite-form input[type=button]+input[type=button],form.rowlike .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.rowlike .input-group-append input[type=button]+.btn,form.rowlike .input-group-append input[type=button]+.input-group-text,form.rowlike .input-group-append input[type=button]+a#setup-link,form.rowlike .input-group-append input[type=button]+input[type=button],form.rowlike .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.rowlike .input-group-prepend .btn+input[type=button],form.rowlike .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.rowlike .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.rowlike .input-group-prepend .input-group-text+input[type=button],form.rowlike .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.rowlike .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.rowlike .input-group-prepend a#setup-link+input[type=button],form.rowlike .input-group-prepend form.loginform input[type=button]+input[type=button],form.rowlike .input-group-prepend form.senaite-form input[type=button]+input[type=button],form.rowlike .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend input[type=button]+.btn,form.rowlike .input-group-prepend input[type=button]+.input-group-text,form.rowlike .input-group-prepend input[type=button]+a#setup-link,form.rowlike .input-group-prepend input[type=button]+input[type=button],form.rowlike .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.rowlike form.loginform .input-group-append input[type=button]+input[type=button],form.rowlike form.loginform .input-group-prepend input[type=button]+input[type=button],form.rowlike form.senaite-form .input-group-append input[type=button]+input[type=button],form.rowlike form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.rowlike form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.rowlike form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.rowlike ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form.senaite-form .formControls .input-group-append input[name*="form.button"]+input[type=button],form.senaite-form .formControls .input-group-append input[type=button]+input[name*="form.button"],form.senaite-form .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.senaite-form .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.senaite-form .input-group-append .btn+input[type=button],form.senaite-form .input-group-append .formControls input[name*="form.button"]+input[type=button],form.senaite-form .input-group-append .formControls input[type=button]+input[name*="form.button"],form.senaite-form .input-group-append .input-group-text+input[type=button],form.senaite-form .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.senaite-form .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.senaite-form .input-group-append a#setup-link+input[type=button],form.senaite-form .input-group-append form.loginform input[type=button]+input[type=button],form.senaite-form .input-group-append form.rowlike input[type=button]+input[type=button],form.senaite-form .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.senaite-form .input-group-append input[type=button]+.btn,form.senaite-form .input-group-append input[type=button]+.input-group-text,form.senaite-form .input-group-append input[type=button]+a#setup-link,form.senaite-form .input-group-append input[type=button]+input[type=button],form.senaite-form .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.senaite-form .input-group-prepend .btn+input[type=button],form.senaite-form .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.senaite-form .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.senaite-form .input-group-prepend .input-group-text+input[type=button],form.senaite-form .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.senaite-form .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.senaite-form .input-group-prepend a#setup-link+input[type=button],form.senaite-form .input-group-prepend form.loginform input[type=button]+input[type=button],form.senaite-form .input-group-prepend form.rowlike input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend input[type=button]+.btn,form.senaite-form .input-group-prepend input[type=button]+.input-group-text,form.senaite-form .input-group-prepend input[type=button]+a#setup-link,form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.senaite-form .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.senaite-form form.loginform .input-group-append input[type=button]+input[type=button],form.senaite-form form.loginform .input-group-prepend input[type=button]+input[type=button],form.senaite-form form.rowlike .input-group-append input[type=button]+input[type=button],form.senaite-form form.rowlike .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.senaite-form form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.senaite-form ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-append .btn+input[type=button],form[action*=-controlpanel] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-append .input-group-text+input[type=button],form[action*=-controlpanel] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[action*=-controlpanel] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[action*=-controlpanel] .input-group-append a#setup-link+input[type=button],form[action*=-controlpanel] .input-group-append form.loginform input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form.rowlike input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form.senaite-form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append input[type=button]+.btn,form[action*=-controlpanel] .input-group-append input[type=button]+.input-group-text,form[action*=-controlpanel] .input-group-append input[type=button]+a#setup-link,form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend .btn+input[type=button],form[action*=-controlpanel] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-prepend .input-group-text+input[type=button],form[action*=-controlpanel] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[action*=-controlpanel] .input-group-prepend a#setup-link+input[type=button],form[action*=-controlpanel] .input-group-prepend form.loginform input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend input[type=button]+.btn,form[action*=-controlpanel] .input-group-prepend input[type=button]+.input-group-text,form[action*=-controlpanel] .input-group-prepend input[type=button]+a#setup-link,form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[action*=-controlpanel] form.loginform .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.loginform .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form.rowlike .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form.senaite-form .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-append .btn+input[type=button],form[name=analysisrequest_add_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-append .input-group-text+input[type=button],form[name=analysisrequest_add_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=analysisrequest_add_form] .input-group-append a#setup-link+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append input[type=button]+.btn,form[name=analysisrequest_add_form] .input-group-append input[type=button]+.input-group-text,form[name=analysisrequest_add_form] .input-group-append input[type=button]+a#setup-link,form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .btn+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-prepend .input-group-text+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=analysisrequest_add_form] .input-group-prepend a#setup-link+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+.btn,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+.input-group-text,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+a#setup-link,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=edit_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=edit_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=edit_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-append .btn+input[type=button],form[name=edit_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=edit_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-append .input-group-text+input[type=button],form[name=edit_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=edit_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=edit_form] .input-group-append a#setup-link+input[type=button],form[name=edit_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=edit_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=edit_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-append input[type=button]+.btn,form[name=edit_form] .input-group-append input[type=button]+.input-group-text,form[name=edit_form] .input-group-append input[type=button]+a#setup-link,form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend .btn+input[type=button],form[name=edit_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=edit_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-prepend .input-group-text+input[type=button],form[name=edit_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=edit_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=edit_form] .input-group-prepend a#setup-link+input[type=button],form[name=edit_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend input[type=button]+.btn,form[name=edit_form] .input-group-prepend input[type=button]+.input-group-text,form[name=edit_form] .input-group-prepend input[type=button]+a#setup-link,form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=edit_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=edit_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-append .btn+input[type=button],form[name=sampleheader_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-append .input-group-text+input[type=button],form[name=sampleheader_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=sampleheader_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=sampleheader_form] .input-group-append a#setup-link+input[type=button],form[name=sampleheader_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append input[type=button]+.btn,form[name=sampleheader_form] .input-group-append input[type=button]+.input-group-text,form[name=sampleheader_form] .input-group-append input[type=button]+a#setup-link,form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend .btn+input[type=button],form[name=sampleheader_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-prepend .input-group-text+input[type=button],form[name=sampleheader_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=sampleheader_form] .input-group-prepend a#setup-link+input[type=button],form[name=sampleheader_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend input[type=button]+.btn,form[name=sampleheader_form] .input-group-prepend input[type=button]+.input-group-text,form[name=sampleheader_form] .input-group-prepend input[type=button]+a#setup-link,form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=sampleheader_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],section>ol.configlets .input-group-append section>ul.configlets li input[type=submit]+input[type=submit],section>ol.configlets .input-group-append ul.configlets>li>form input[type=button]+input[type=submit],section>ol.configlets .input-group-append ul.configlets>li>form input[type=submit]+input[type=button],section>ol.configlets .input-group-prepend section>ul.configlets li input[type=submit]+input[type=submit],section>ol.configlets .input-group-prepend ul.configlets>li>form input[type=button]+input[type=submit],section>ol.configlets .input-group-prepend ul.configlets>li>form input[type=submit]+input[type=button],section>ol.configlets li .formControls .input-group-append input[name*="form.button"]+input[type=submit],section>ol.configlets li .formControls .input-group-append input[type=submit]+input[name*="form.button"],section>ol.configlets li .formControls .input-group-prepend input[name*="form.button"]+input[type=submit],section>ol.configlets li .formControls .input-group-prepend input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-append .btn+input[type=submit],section>ol.configlets li .input-group-append .formControls input[name*="form.button"]+input[type=submit],section>ol.configlets li .input-group-append .formControls input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-append .input-group-text+input[type=submit],section>ol.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ol.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ol.configlets li .input-group-append a#setup-link+input[type=submit],section>ol.configlets li .input-group-append form.loginform input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.loginform input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form.rowlike input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.rowlike input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form.senaite-form input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.senaite-form input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[action*=-controlpanel] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[action*=-controlpanel] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=edit_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=edit_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=sampleheader_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=sampleheader_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append input[type=submit]+.btn,section>ol.configlets li .input-group-append input[type=submit]+.input-group-text,section>ol.configlets li .input-group-append input[type=submit]+a#setup-link,section>ol.configlets li .input-group-append input[type=submit]+input[type=submit],section>ol.configlets li .input-group-prepend .btn+input[type=submit],section>ol.configlets li .input-group-prepend .formControls input[name*="form.button"]+input[type=submit],section>ol.configlets li .input-group-prepend .formControls input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-prepend .input-group-text+input[type=submit],section>ol.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ol.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ol.configlets li .input-group-prepend a#setup-link+input[type=submit],section>ol.configlets li .input-group-prepend form.loginform input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.loginform input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form.rowlike input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.rowlike input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form.senaite-form input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.senaite-form input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[action*=-controlpanel] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=edit_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=edit_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=sampleheader_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend input[type=submit]+.btn,section>ol.configlets li .input-group-prepend input[type=submit]+.input-group-text,section>ol.configlets li .input-group-prepend input[type=submit]+a#setup-link,section>ol.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[type=submit]+input[name=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[type=submit]+input[name=submit],section>ol.configlets li form.loginform .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.loginform .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.loginform .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.loginform .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form.rowlike .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.rowlike .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.rowlike .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.rowlike .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form.senaite-form .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.senaite-form .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.senaite-form .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.senaite-form .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[action*=-controlpanel] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[action*=-controlpanel] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[action*=-controlpanel] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=edit_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=edit_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=edit_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=edit_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=sampleheader_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=sampleheader_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=sampleheader_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets section>ul.configlets li .input-group-append input[type=submit]+input[type=submit],section>ol.configlets section>ul.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-append input[type=button]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-append input[type=submit]+input[type=button],section>ol.configlets ul.configlets>li>form .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets .input-group-append section>ol.configlets li input[type=submit]+input[type=submit],section>ul.configlets .input-group-append ul.configlets>li>form input[type=button]+input[type=submit],section>ul.configlets .input-group-append ul.configlets>li>form input[type=submit]+input[type=button],section>ul.configlets .input-group-prepend section>ol.configlets li input[type=submit]+input[type=submit],section>ul.configlets .input-group-prepend ul.configlets>li>form input[type=button]+input[type=submit],section>ul.configlets .input-group-prepend ul.configlets>li>form input[type=submit]+input[type=button],section>ul.configlets li .formControls .input-group-append input[name*="form.button"]+input[type=submit],section>ul.configlets li .formControls .input-group-append input[type=submit]+input[name*="form.button"],section>ul.configlets li .formControls .input-group-prepend input[name*="form.button"]+input[type=submit],section>ul.configlets li .formControls .input-group-prepend input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-append .btn+input[type=submit],section>ul.configlets li .input-group-append .formControls input[name*="form.button"]+input[type=submit],section>ul.configlets li .input-group-append .formControls input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-append .input-group-text+input[type=submit],section>ul.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ul.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ul.configlets li .input-group-append a#setup-link+input[type=submit],section>ul.configlets li .input-group-append form.loginform input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.loginform input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form.rowlike input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.rowlike input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form.senaite-form input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.senaite-form input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[action*=-controlpanel] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[action*=-controlpanel] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=edit_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=edit_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=sampleheader_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=sampleheader_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append input[type=submit]+.btn,section>ul.configlets li .input-group-append input[type=submit]+.input-group-text,section>ul.configlets li .input-group-append input[type=submit]+a#setup-link,section>ul.configlets li .input-group-append input[type=submit]+input[type=submit],section>ul.configlets li .input-group-prepend .btn+input[type=submit],section>ul.configlets li .input-group-prepend .formControls input[name*="form.button"]+input[type=submit],section>ul.configlets li .input-group-prepend .formControls input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-prepend .input-group-text+input[type=submit],section>ul.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ul.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ul.configlets li .input-group-prepend a#setup-link+input[type=submit],section>ul.configlets li .input-group-prepend form.loginform input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.loginform input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form.rowlike input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.rowlike input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form.senaite-form input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.senaite-form input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[action*=-controlpanel] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=edit_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=edit_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=sampleheader_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend input[type=submit]+.btn,section>ul.configlets li .input-group-prepend input[type=submit]+.input-group-text,section>ul.configlets li .input-group-prepend input[type=submit]+a#setup-link,section>ul.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[type=submit]+input[name=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[type=submit]+input[name=submit],section>ul.configlets li form.loginform .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.loginform .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.loginform .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.loginform .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form.rowlike .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.rowlike .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.rowlike .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.rowlike .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form.senaite-form .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.senaite-form .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.senaite-form .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.senaite-form .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[action*=-controlpanel] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[action*=-controlpanel] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[action*=-controlpanel] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=edit_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=edit_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=edit_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=edit_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=sampleheader_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=sampleheader_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=sampleheader_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets section>ol.configlets li .input-group-append input[type=submit]+input[type=submit],section>ul.configlets section>ol.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-append input[type=button]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-append input[type=submit]+input[type=button],section>ul.configlets ul.configlets>li>form .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-prepend input[type=submit]+input[type=button],ul.configlets>li>form .formControls .input-group-append input[name*="form.button"]+input[type=button],ul.configlets>li>form .formControls .input-group-append input[type=button]+input[name*="form.button"],ul.configlets>li>form .formControls .input-group-prepend input[name*="form.button"]+input[type=button],ul.configlets>li>form .formControls .input-group-prepend input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-append .btn+input[type=button],ul.configlets>li>form .input-group-append .formControls input[name*="form.button"]+input[type=button],ul.configlets>li>form .input-group-append .formControls input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-append .input-group-text+input[type=button],ul.configlets>li>form .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],ul.configlets>li>form .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],ul.configlets>li>form .input-group-append a#setup-link+input[type=button],ul.configlets>li>form .input-group-append form.loginform input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form.rowlike input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form.senaite-form input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=edit_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append input[type=button]+.btn,ul.configlets>li>form .input-group-append input[type=button]+.input-group-text,ul.configlets>li>form .input-group-append input[type=button]+a#setup-link,ul.configlets>li>form .input-group-append input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend .btn+input[type=button],ul.configlets>li>form .input-group-prepend .formControls input[name*="form.button"]+input[type=button],ul.configlets>li>form .input-group-prepend .formControls input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-prepend .input-group-text+input[type=button],ul.configlets>li>form .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],ul.configlets>li>form .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],ul.configlets>li>form .input-group-prepend a#setup-link+input[type=button],ul.configlets>li>form .input-group-prepend form.loginform input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form.rowlike input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form.senaite-form input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend input[type=button]+.btn,ul.configlets>li>form .input-group-prepend input[type=button]+.input-group-text,ul.configlets>li>form .input-group-prepend input[type=button]+a#setup-link,ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.loginform .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.loginform .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.rowlike .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.rowlike .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.senaite-form .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.senaite-form .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=edit_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button]{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea),.portlet:not(.portletNavigationTree) .input-group-lg>input:not(textarea):not([name=submit]),form.loginform .input-group-lg>input[type=text]:not(textarea),form.loginform .input-group-lg>select:not(textarea),form.loginform .input-group-lg>textarea:not(textarea),form.rowlike .input-group-lg>input[type=text]:not(textarea),form.rowlike .input-group-lg>select:not(textarea),form.rowlike .input-group-lg>textarea:not(textarea),form.senaite-form .input-group-lg>input[type=text]:not(textarea),form.senaite-form .input-group-lg>select:not(textarea),form.senaite-form .input-group-lg>textarea:not(textarea),form[action*=-controlpanel] .input-group-lg>input[type=text]:not(textarea),form[action*=-controlpanel] .input-group-lg>select:not(textarea),form[action*=-controlpanel] .input-group-lg>textarea:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>input[type=text]:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>select:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>textarea:not(textarea),form[name=edit_form] .input-group-lg>input[type=text]:not(textarea),form[name=edit_form] .input-group-lg>select:not(textarea),form[name=edit_form] .input-group-lg>textarea:not(textarea),form[name=edit_form] div.listing-container .input-group-lg>input:not(textarea),form[name=sampleheader_form] .input-group-lg>input[type=text]:not(textarea),form[name=sampleheader_form] .input-group-lg>select:not(textarea),form[name=sampleheader_form] .input-group-lg>textarea:not(textarea),ul.configlets>li>form .input-group-lg>input[type=text]:not(textarea),ul.configlets>li>form .input-group-lg>select:not(textarea),ul.configlets>li>form .input-group-lg>textarea:not(textarea){height:calc(1.5em + 1rem + 2px)}.formControls .input-group-lg>.input-group-append>input[name*="form.button"],.formControls .input-group-lg>.input-group-prepend>input[name*="form.button"],.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-append>a#setup-link,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group-lg>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-lg>.input-group-prepend>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-lg>input:not([name=submit]),form.loginform .input-group-lg>.input-group-append>input[type=button],form.loginform .input-group-lg>.input-group-prepend>input[type=button],form.loginform .input-group-lg>input[type=text],form.loginform .input-group-lg>select,form.loginform .input-group-lg>textarea,form.rowlike .input-group-lg>.input-group-append>input[type=button],form.rowlike .input-group-lg>.input-group-prepend>input[type=button],form.rowlike .input-group-lg>input[type=text],form.rowlike .input-group-lg>select,form.rowlike .input-group-lg>textarea,form.senaite-form .input-group-lg>.input-group-append>input[type=button],form.senaite-form .input-group-lg>.input-group-prepend>input[type=button],form.senaite-form .input-group-lg>input[type=text],form.senaite-form .input-group-lg>select,form.senaite-form .input-group-lg>textarea,form[action*=-controlpanel] .input-group-lg>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group-lg>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group-lg>input[type=text],form[action*=-controlpanel] .input-group-lg>select,form[action*=-controlpanel] .input-group-lg>textarea,form[name=analysisrequest_add_form] .input-group-lg>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group-lg>input[type=text],form[name=analysisrequest_add_form] .input-group-lg>select,form[name=analysisrequest_add_form] .input-group-lg>textarea,form[name=edit_form] .input-group-lg>.input-group-append>input[type=button],form[name=edit_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=edit_form] .input-group-lg>input[type=text],form[name=edit_form] .input-group-lg>select,form[name=edit_form] .input-group-lg>textarea,form[name=edit_form] div.listing-container .input-group-lg>input,form[name=edit_form] div.listing-container .input-group-lg>select,form[name=sampleheader_form] .input-group-lg>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group-lg>input[type=text],form[name=sampleheader_form] .input-group-lg>select,form[name=sampleheader_form] .input-group-lg>textarea,section>ol.configlets li .input-group-lg>.input-group-append>input[type=submit],section>ol.configlets li .input-group-lg>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group-lg>.input-group-append>input[type=submit],section>ul.configlets li .input-group-lg>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group-lg>.input-group-append>input[type=button],ul.configlets>li>form .input-group-lg>.input-group-prepend>input[type=button],ul.configlets>li>form .input-group-lg>input[type=text],ul.configlets>li>form .input-group-lg>select,ul.configlets>li>form .input-group-lg>textarea{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea),.portlet:not(.portletNavigationTree) .input-group-sm>input:not(textarea):not([name=submit]),form.loginform .input-group-sm>input[type=text]:not(textarea),form.loginform .input-group-sm>select:not(textarea),form.loginform .input-group-sm>textarea:not(textarea),form.rowlike .input-group-sm>input[type=text]:not(textarea),form.rowlike .input-group-sm>select:not(textarea),form.rowlike .input-group-sm>textarea:not(textarea),form.senaite-form .input-group-sm>input[type=text]:not(textarea),form.senaite-form .input-group-sm>select:not(textarea),form.senaite-form .input-group-sm>textarea:not(textarea),form[action*=-controlpanel] .input-group-sm>input[type=text]:not(textarea),form[action*=-controlpanel] .input-group-sm>select:not(textarea),form[action*=-controlpanel] .input-group-sm>textarea:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>input[type=text]:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>select:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>textarea:not(textarea),form[name=edit_form] .input-group-sm>input[type=text]:not(textarea),form[name=edit_form] .input-group-sm>select:not(textarea),form[name=edit_form] .input-group-sm>textarea:not(textarea),form[name=edit_form] div.listing-container .input-group-sm>input:not(textarea),form[name=sampleheader_form] .input-group-sm>input[type=text]:not(textarea),form[name=sampleheader_form] .input-group-sm>select:not(textarea),form[name=sampleheader_form] .input-group-sm>textarea:not(textarea),ul.configlets>li>form .input-group-sm>input[type=text]:not(textarea),ul.configlets>li>form .input-group-sm>select:not(textarea),ul.configlets>li>form .input-group-sm>textarea:not(textarea){height:calc(1.5em + .5rem + 2px)}.formControls .input-group-sm>.input-group-append>input[name*="form.button"],.formControls .input-group-sm>.input-group-prepend>input[name*="form.button"],.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-append>a#setup-link,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group-sm>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-sm>.input-group-prepend>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-sm>input:not([name=submit]),form.loginform .input-group-sm>.input-group-append>input[type=button],form.loginform .input-group-sm>.input-group-prepend>input[type=button],form.loginform .input-group-sm>input[type=text],form.loginform .input-group-sm>select,form.loginform .input-group-sm>textarea,form.rowlike .input-group-sm>.input-group-append>input[type=button],form.rowlike .input-group-sm>.input-group-prepend>input[type=button],form.rowlike .input-group-sm>input[type=text],form.rowlike .input-group-sm>select,form.rowlike .input-group-sm>textarea,form.senaite-form .input-group-sm>.input-group-append>input[type=button],form.senaite-form .input-group-sm>.input-group-prepend>input[type=button],form.senaite-form .input-group-sm>input[type=text],form.senaite-form .input-group-sm>select,form.senaite-form .input-group-sm>textarea,form[action*=-controlpanel] .input-group-sm>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group-sm>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group-sm>input[type=text],form[action*=-controlpanel] .input-group-sm>select,form[action*=-controlpanel] .input-group-sm>textarea,form[name=analysisrequest_add_form] .input-group-sm>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group-sm>input[type=text],form[name=analysisrequest_add_form] .input-group-sm>select,form[name=analysisrequest_add_form] .input-group-sm>textarea,form[name=edit_form] .input-group-sm>.input-group-append>input[type=button],form[name=edit_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=edit_form] .input-group-sm>input[type=text],form[name=edit_form] .input-group-sm>select,form[name=edit_form] .input-group-sm>textarea,form[name=edit_form] div.listing-container .input-group-sm>input,form[name=edit_form] div.listing-container .input-group-sm>select,form[name=sampleheader_form] .input-group-sm>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group-sm>input[type=text],form[name=sampleheader_form] .input-group-sm>select,form[name=sampleheader_form] .input-group-sm>textarea,section>ol.configlets li .input-group-sm>.input-group-append>input[type=submit],section>ol.configlets li .input-group-sm>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group-sm>.input-group-append>input[type=submit],section>ul.configlets li .input-group-sm>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group-sm>.input-group-append>input[type=button],ul.configlets>li>form .input-group-sm>.input-group-prepend>input[type=button],ul.configlets>li>form .input-group-sm>input[type=text],ul.configlets>li>form .input-group-sm>select,ul.configlets>li>form .input-group-sm>textarea{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.formControls .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[name*="form.button"],.formControls .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[name*="form.button"],.formControls .input-group>.input-group-append:last-child>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.formControls .input-group>.input-group-prepend>input[name*="form.button"],.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>a#setup-link,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>a#setup-link,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:last-child>a#setup-link:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[name=submit],.portlet:not(.portletNavigationTree) .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .input-group>.input-group-append:last-child>input[name=submit]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend>input[name=submit],form.loginform .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.loginform .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.loginform .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.loginform .input-group>.input-group-prepend>input[type=button],form.rowlike .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.rowlike .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.rowlike .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .input-group>.input-group-prepend>input[type=button],form.senaite-form .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.senaite-form .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.senaite-form .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .input-group>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[action*=-controlpanel] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[action*=-controlpanel] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .input-group>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=analysisrequest_add_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .input-group>.input-group-prepend>input[type=button],form[name=edit_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=edit_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=edit_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .input-group>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=sampleheader_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=sampleheader_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .input-group>.input-group-prepend>input[type=button],section>ol.configlets li .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=submit],section>ol.configlets li .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=submit],section>ol.configlets li .input-group>.input-group-append:last-child>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .input-group>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=submit],section>ul.configlets li .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=submit],section>ul.configlets li .input-group>.input-group-append:last-child>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .input-group>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],ul.configlets>li>form .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],ul.configlets>li>form .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .input-group>.input-group-prepend>input[type=button]{border-top-right-radius:0;border-bottom-right-radius:0}.formControls .input-group>.input-group-append>input[name*="form.button"],.formControls .input-group>.input-group-prepend:first-child>input[name*="form.button"]:not(:first-child),.formControls .input-group>.input-group-prepend:not(:first-child)>input[name*="form.button"],.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-append>a#setup-link,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:first-child>a#setup-link:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>a#setup-link,.portlet:not(.portletNavigationTree) .input-group>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend:first-child>input[name=submit]:not(:first-child),.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend:not(:first-child)>input[name=submit],form.loginform .input-group>.input-group-append>input[type=button],form.loginform .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.loginform .input-group>.input-group-prepend:not(:first-child)>input[type=button],form.rowlike .input-group>.input-group-append>input[type=button],form.rowlike .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.rowlike .input-group>.input-group-prepend:not(:first-child)>input[type=button],form.senaite-form .input-group>.input-group-append>input[type=button],form.senaite-form .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.senaite-form .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[action*=-controlpanel] .input-group>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[action*=-controlpanel] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=edit_form] .input-group>.input-group-append>input[type=button],form[name=edit_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=edit_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=sampleheader_form] .input-group>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=sampleheader_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],section>ol.configlets li .input-group>.input-group-append>input[type=submit],section>ol.configlets li .input-group>.input-group-prepend:first-child>input[type=submit]:not(:first-child),section>ol.configlets li .input-group>.input-group-prepend:not(:first-child)>input[type=submit],section>ul.configlets li .input-group>.input-group-append>input[type=submit],section>ul.configlets li .input-group>.input-group-prepend:first-child>input[type=submit]:not(:first-child),section>ul.configlets li .input-group>.input-group-prepend:not(:first-child)>input[type=submit],ul.configlets>li>form .input-group>.input-group-append>input[type=button],ul.configlets>li>form .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),ul.configlets>li>form .input-group>.input-group-prepend:not(:first-child)>input[type=button]{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;print-color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#428aaf;background-color:#428aaf}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#98c3d8}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#bdd8e6;border-color:#bdd8e6}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#428aaf;background-color:#428aaf}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#98c3d8;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#98c3d8;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;height:calc(1.5em + .75rem + 2px);overflow:hidden;font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#bdd8e6}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#bdd8e6}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#bdd8e6}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav,aside section nav.portletContent ul,div.autotoc-nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link,aside section nav.portletContent ul li a,div.autotoc-nav a{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover,aside section nav.portletContent ul li a:focus,aside section nav.portletContent ul li a:hover,div.autotoc-nav a:focus,div.autotoc-nav a:hover{text-decoration:none}.nav-link.disabled,aside section nav.portletContent ul li a.disabled,div.autotoc-nav a.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs,div.autotoc-nav{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link,.nav-tabs aside section nav.portletContent ul li a,aside section nav.portletContent ul li .nav-tabs a,aside section nav.portletContent ul li div.autotoc-nav a,div.autotoc-nav .nav-link,div.autotoc-nav a,div.autotoc-nav aside section nav.portletContent ul li a{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover,.nav-tabs aside section nav.portletContent ul li a:focus,.nav-tabs aside section nav.portletContent ul li a:hover,aside section nav.portletContent ul li .nav-tabs a:focus,aside section nav.portletContent ul li .nav-tabs a:hover,div.autotoc-nav .nav-link:focus,div.autotoc-nav .nav-link:hover,div.autotoc-nav a:focus,div.autotoc-nav a:hover{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled,.nav-tabs aside section nav.portletContent ul li a.disabled,aside section nav.portletContent ul li .nav-tabs a.disabled,div.autotoc-nav .nav-link.disabled,div.autotoc-nav a.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-item.show aside section nav.portletContent ul li a,.nav-tabs .nav-item.show div.autotoc-nav a,.nav-tabs .nav-link.active,.nav-tabs aside section nav.portletContent ul li.show .nav-link,.nav-tabs aside section nav.portletContent ul li.show a,.nav-tabs aside section nav.portletContent ul li a.active,aside section nav.portletContent ul .nav-tabs li.show .nav-link,aside section nav.portletContent ul .nav-tabs li.show a,aside section nav.portletContent ul div.autotoc-nav li.show .nav-link,aside section nav.portletContent ul div.autotoc-nav li.show a,aside section nav.portletContent ul li .nav-tabs .nav-item.show a,aside section nav.portletContent ul li .nav-tabs a.active,div.autotoc-nav .nav-item.show .nav-link,div.autotoc-nav .nav-item.show a,div.autotoc-nav .nav-link.active,div.autotoc-nav a.active,div.autotoc-nav aside section nav.portletContent ul li.show .nav-link,div.autotoc-nav aside section nav.portletContent ul li.show a{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu,div.autotoc-nav .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link,.nav-pills aside section nav.portletContent ul li a,.nav-pills div.autotoc-nav a,aside section nav.portletContent ul li .nav-pills a,div.autotoc-nav .nav-pills a{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link,.nav-pills aside section nav.portletContent ul li .show>a,.nav-pills aside section nav.portletContent ul li a.active,.nav-pills div.autotoc-nav .show>a,.nav-pills div.autotoc-nav a.active,aside section nav.portletContent ul li .nav-pills .show>a,aside section nav.portletContent ul li .nav-pills a.active,div.autotoc-nav .nav-pills .show>a,div.autotoc-nav .nav-pills a.active{color:#fff;background-color:#428aaf}.nav-fill .nav-item,.nav-fill>.nav-link,.nav-fill aside section nav.portletContent ul li,aside section nav.portletContent ul .nav-fill li,aside section nav.portletContent ul li .nav-fill>a,div.autotoc-nav .nav-fill>a{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link,.nav-justified aside section nav.portletContent ul li,aside section nav.portletContent ul .nav-justified li,aside section nav.portletContent ul li .nav-justified>a,div.autotoc-nav .nav-justified>a{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl,.navbar .pb-ajax>div{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link,.navbar-nav aside section nav.portletContent ul li a,.navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-nav a,div.autotoc-nav .navbar-nav a{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media(max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl,.pb-ajax.navbar-expand-sm>div{padding-right:0;padding-left:0}}@media(min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link,.navbar-expand-sm .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-sm .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-sm .navbar-nav a,div.autotoc-nav .navbar-expand-sm .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl,.pb-ajax.navbar-expand-sm>div{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl,.pb-ajax.navbar-expand-md>div{padding-right:0;padding-left:0}}@media(min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link,.navbar-expand-md .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-md .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-md .navbar-nav a,div.autotoc-nav .navbar-expand-md .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl,.pb-ajax.navbar-expand-md>div{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl,.pb-ajax.navbar-expand-lg>div{padding-right:0;padding-left:0}}@media(min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link,.navbar-expand-lg .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-lg .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-lg .navbar-nav a,div.autotoc-nav .navbar-expand-lg .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl,.pb-ajax.navbar-expand-lg>div{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl,.pb-ajax.navbar-expand-xl>div{padding-right:0;padding-left:0}}@media(min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link,.navbar-expand-xl .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-xl .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-xl .navbar-nav a,div.autotoc-nav .navbar-expand-xl .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl,.pb-ajax.navbar-expand-xl>div{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl,.pb-ajax.navbar-expand>div{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link,.navbar-expand .navbar-nav aside section nav.portletContent ul li a,.navbar-expand .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand .navbar-nav a,div.autotoc-nav .navbar-expand .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl,.pb-ajax.navbar-expand>div{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link,.navbar-light .navbar-nav aside section nav.portletContent ul li a,.navbar-light .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-light .navbar-nav a,div.autotoc-nav .navbar-light .navbar-nav a{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav aside section nav.portletContent ul li a:focus,.navbar-light .navbar-nav aside section nav.portletContent ul li a:hover,.navbar-light .navbar-nav div.autotoc-nav a:focus,.navbar-light .navbar-nav div.autotoc-nav a:hover,aside section nav.portletContent ul li .navbar-light .navbar-nav a:focus,aside section nav.portletContent ul li .navbar-light .navbar-nav a:hover,div.autotoc-nav .navbar-light .navbar-nav a:focus,div.autotoc-nav .navbar-light .navbar-nav a:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled,.navbar-light .navbar-nav aside section nav.portletContent ul li a.disabled,.navbar-light .navbar-nav div.autotoc-nav a.disabled,aside section nav.portletContent ul li .navbar-light .navbar-nav a.disabled,div.autotoc-nav .navbar-light .navbar-nav a.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav aside section nav.portletContent ul li .active>a,.navbar-light .navbar-nav aside section nav.portletContent ul li .show>a,.navbar-light .navbar-nav aside section nav.portletContent ul li a.active,.navbar-light .navbar-nav aside section nav.portletContent ul li a.show,.navbar-light .navbar-nav div.autotoc-nav .active>a,.navbar-light .navbar-nav div.autotoc-nav .show>a,.navbar-light .navbar-nav div.autotoc-nav a.active,.navbar-light .navbar-nav div.autotoc-nav a.show,aside section nav.portletContent ul li .navbar-light .navbar-nav .active>a,aside section nav.portletContent ul li .navbar-light .navbar-nav .show>a,aside section nav.portletContent ul li .navbar-light .navbar-nav a.active,aside section nav.portletContent ul li .navbar-light .navbar-nav a.show,div.autotoc-nav .navbar-light .navbar-nav .active>a,div.autotoc-nav .navbar-light .navbar-nav .show>a,div.autotoc-nav .navbar-light .navbar-nav a.active,div.autotoc-nav .navbar-light .navbar-nav a.show{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link,.navbar-dark .navbar-nav aside section nav.portletContent ul li a,.navbar-dark .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-dark .navbar-nav a,div.autotoc-nav .navbar-dark .navbar-nav a{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav aside section nav.portletContent ul li a:focus,.navbar-dark .navbar-nav aside section nav.portletContent ul li a:hover,.navbar-dark .navbar-nav div.autotoc-nav a:focus,.navbar-dark .navbar-nav div.autotoc-nav a:hover,aside section nav.portletContent ul li .navbar-dark .navbar-nav a:focus,aside section nav.portletContent ul li .navbar-dark .navbar-nav a:hover,div.autotoc-nav .navbar-dark .navbar-nav a:focus,div.autotoc-nav .navbar-dark .navbar-nav a:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.disabled,.navbar-dark .navbar-nav div.autotoc-nav a.disabled,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.disabled,div.autotoc-nav .navbar-dark .navbar-nav a.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav aside section nav.portletContent ul li .active>a,.navbar-dark .navbar-nav aside section nav.portletContent ul li .show>a,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.active,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.show,.navbar-dark .navbar-nav div.autotoc-nav .active>a,.navbar-dark .navbar-nav div.autotoc-nav .show>a,.navbar-dark .navbar-nav div.autotoc-nav a.active,.navbar-dark .navbar-nav div.autotoc-nav a.show,aside section nav.portletContent ul li .navbar-dark .navbar-nav .active>a,aside section nav.portletContent ul li .navbar-dark .navbar-nav .show>a,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.active,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.show,div.autotoc-nav .navbar-dark .navbar-nav .active>a,div.autotoc-nav .navbar-dark .navbar-nav .show>a,div.autotoc-nav .navbar-dark .navbar-nav a.active,div.autotoc-nav .navbar-dark .navbar-nav a.show{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.card,.portlet:not(.portletNavigationTree){position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}#panel-notification .error-notification-item>hr,#panel-notification .succeed-notification-item>hr,.card>hr,.portlet:not(.portletNavigationTree)>hr{margin-right:0;margin-left:0}#panel-notification .error-notification-item>.list-group,#panel-notification .succeed-notification-item>.list-group,#panel-notification section.error-notification-item>ol.configlets,#panel-notification section.error-notification-item>ul.configlets,#panel-notification section.succeed-notification-item>ol.configlets,#panel-notification section.succeed-notification-item>ul.configlets,.card>.list-group,.portlet:not(.portletNavigationTree)>.list-group,section.card>ol.configlets,section.card>ul.configlets,section.portlet:not(.portletNavigationTree)>ol.configlets,section.portlet:not(.portletNavigationTree)>ul.configlets{border-top:inherit;border-bottom:inherit}#panel-notification .error-notification-item>.list-group:first-child,#panel-notification .succeed-notification-item>.list-group:first-child,#panel-notification section.error-notification-item>ol.configlets:first-child,#panel-notification section.error-notification-item>ul.configlets:first-child,#panel-notification section.succeed-notification-item>ol.configlets:first-child,#panel-notification section.succeed-notification-item>ul.configlets:first-child,.card>.list-group:first-child,.portlet:not(.portletNavigationTree)>.list-group:first-child,section.card>ol.configlets:first-child,section.card>ul.configlets:first-child,section.portlet:not(.portletNavigationTree)>ol.configlets:first-child,section.portlet:not(.portletNavigationTree)>ul.configlets:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}#panel-notification .error-notification-item>.list-group:last-child,#panel-notification .succeed-notification-item>.list-group:last-child,#panel-notification section.error-notification-item>ol.configlets:last-child,#panel-notification section.error-notification-item>ul.configlets:last-child,#panel-notification section.succeed-notification-item>ol.configlets:last-child,#panel-notification section.succeed-notification-item>ul.configlets:last-child,.card>.list-group:last-child,.portlet:not(.portletNavigationTree)>.list-group:last-child,section.card>ol.configlets:last-child,section.card>ul.configlets:last-child,section.portlet:not(.portletNavigationTree)>ol.configlets:last-child,section.portlet:not(.portletNavigationTree)>ul.configlets:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}#panel-notification .error-notification-item>.card-header+.list-group,#panel-notification .error-notification-item>.list-group+.card-footer,#panel-notification .portlet:not(.portletNavigationTree) .error-notification-item>.list-group+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .error-notification-item>.portletHeader+.list-group,#panel-notification .portlet:not(.portletNavigationTree) .succeed-notification-item>.list-group+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .succeed-notification-item>.portletHeader+.list-group,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>.portletHeader+ol.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>.portletHeader+ul.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>ol.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>ul.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>.portletHeader+ol.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>.portletHeader+ul.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>ol.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>ul.configlets+.portletFooter,#panel-notification .succeed-notification-item>.card-header+.list-group,#panel-notification .succeed-notification-item>.list-group+.card-footer,#panel-notification section.error-notification-item>.card-header+ol.configlets,#panel-notification section.error-notification-item>.card-header+ul.configlets,#panel-notification section.error-notification-item>ol.configlets+.card-footer,#panel-notification section.error-notification-item>ul.configlets+.card-footer,#panel-notification section.succeed-notification-item>.card-header+ol.configlets,#panel-notification section.succeed-notification-item>.card-header+ul.configlets,#panel-notification section.succeed-notification-item>ol.configlets+.card-footer,#panel-notification section.succeed-notification-item>ul.configlets+.card-footer,.card>.card-header+.list-group,.card>.list-group+.card-footer,.portlet:not(.portletNavigationTree) #panel-notification .error-notification-item>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .error-notification-item>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) #panel-notification .succeed-notification-item>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .succeed-notification-item>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>ul.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>ul.configlets+.portletFooter,.portlet:not(.portletNavigationTree) .card>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) .card>.portletHeader+.list-group,.portlet:not(.portletNavigationTree)>.card-header+.list-group,.portlet:not(.portletNavigationTree)>.list-group+.card-footer,.portlet:not(.portletNavigationTree)>.list-group+.portletFooter,.portlet:not(.portletNavigationTree)>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) section.card>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) section.card>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) section.card>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) section.card>ul.configlets+.portletFooter,section.card>.card-header+ol.configlets,section.card>.card-header+ul.configlets,section.card>ol.configlets+.card-footer,section.card>ul.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>.card-header+ol.configlets,section.portlet:not(.portletNavigationTree)>.card-header+ul.configlets,section.portlet:not(.portletNavigationTree)>.portletHeader+ol.configlets,section.portlet:not(.portletNavigationTree)>.portletHeader+ul.configlets,section.portlet:not(.portletNavigationTree)>ol.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>ol.configlets+.portletFooter,section.portlet:not(.portletNavigationTree)>ul.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>ul.configlets+.portletFooter{border-top:0}.card-body,.portlet:not(.portletNavigationTree) .portletContent{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header,.portlet:not(.portletNavigationTree) .portletHeader{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child,.portlet:not(.portletNavigationTree) .portletHeader:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer,.portlet:not(.portletNavigationTree) .portletFooter{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child,.portlet:not(.portletNavigationTree) .portletFooter:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}#panel-notification .card-deck .error-notification-item,#panel-notification .card-deck .succeed-notification-item,.card-deck #panel-notification .error-notification-item,.card-deck #panel-notification .succeed-notification-item,.card-deck .card,.card-deck .portlet:not(.portletNavigationTree){margin-bottom:15px}@media(min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}#panel-notification .card-deck .error-notification-item,#panel-notification .card-deck .succeed-notification-item,.card-deck #panel-notification .error-notification-item,.card-deck #panel-notification .succeed-notification-item,.card-deck .card,.card-deck .portlet:not(.portletNavigationTree){flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}#panel-notification .card-group>.error-notification-item,#panel-notification .card-group>.succeed-notification-item,.card-group>.card,.card-group>.portlet:not(.portletNavigationTree){margin-bottom:15px}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}#panel-notification .card-group>.error-notification-item,#panel-notification .card-group>.succeed-notification-item,.card-group>.card,.card-group>.portlet:not(.portletNavigationTree){flex:1 0 0%;margin-bottom:0}#panel-notification .card-group>.card+.error-notification-item,#panel-notification .card-group>.card+.succeed-notification-item,#panel-notification .card-group>.error-notification-item+.card,#panel-notification .card-group>.error-notification-item+.error-notification-item,#panel-notification .card-group>.error-notification-item+.portlet:not(.portletNavigationTree),#panel-notification .card-group>.error-notification-item+.succeed-notification-item,#panel-notification .card-group>.portlet:not(.portletNavigationTree)+.error-notification-item,#panel-notification .card-group>.portlet:not(.portletNavigationTree)+.succeed-notification-item,#panel-notification .card-group>.succeed-notification-item+.card,#panel-notification .card-group>.succeed-notification-item+.error-notification-item,#panel-notification .card-group>.succeed-notification-item+.portlet:not(.portletNavigationTree),#panel-notification .card-group>.succeed-notification-item+.succeed-notification-item,.card-group>.card+.card,.card-group>.card+.portlet:not(.portletNavigationTree),.card-group>.portlet:not(.portletNavigationTree)+.card,.card-group>.portlet:not(.portletNavigationTree)+.portlet:not(.portletNavigationTree){margin-left:0;border-left:0}#panel-notification .card-group>.error-notification-item:not(:last-child),#panel-notification .card-group>.succeed-notification-item:not(:last-child),.card-group>.card:not(:last-child),.card-group>.portlet:not(:last-child):not(.portletNavigationTree){border-top-right-radius:0;border-bottom-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:last-child) .card-header,#panel-notification .card-group>.error-notification-item:not(:last-child) .card-img-top,#panel-notification .card-group>.error-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-header,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-img-top,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:last-child) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:last-child) .portletHeader,.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-header,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-img-top,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:last-child) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:last-child) .portletHeader,.portlet:not(.portletNavigationTree) .card-group>.card:not(:last-child) .portletHeader{border-top-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:last-child) .card-footer,#panel-notification .card-group>.error-notification-item:not(:last-child) .card-img-bottom,#panel-notification .card-group>.error-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-footer,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-img-bottom,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:last-child) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:last-child) .portletFooter,.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-footer,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-img-bottom,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:last-child) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:last-child) .portletFooter,.portlet:not(.portletNavigationTree) .card-group>.card:not(:last-child) .portletFooter{border-bottom-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child),#panel-notification .card-group>.succeed-notification-item:not(:first-child),.card-group>.card:not(:first-child),.card-group>.portlet:not(:first-child):not(.portletNavigationTree){border-top-left-radius:0;border-bottom-left-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child) .card-header,#panel-notification .card-group>.error-notification-item:not(:first-child) .card-img-top,#panel-notification .card-group>.error-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-header,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-img-top,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:first-child) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:first-child) .portletHeader,.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-header,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-img-top,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:first-child) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:first-child) .portletHeader,.portlet:not(.portletNavigationTree) .card-group>.card:not(:first-child) .portletHeader{border-top-left-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child) .card-footer,#panel-notification .card-group>.error-notification-item:not(:first-child) .card-img-bottom,#panel-notification .card-group>.error-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-footer,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-img-bottom,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:first-child) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:first-child) .portletFooter,.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-footer,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-img-bottom,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:first-child) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:first-child) .portletFooter,.portlet:not(.portletNavigationTree) .card-group>.card:not(:first-child) .portletFooter{border-bottom-left-radius:0}}#panel-notification .card-columns .error-notification-item,#panel-notification .card-columns .succeed-notification-item,.card-columns #panel-notification .error-notification-item,.card-columns #panel-notification .succeed-notification-item,.card-columns .card,.card-columns .portlet:not(.portletNavigationTree){margin-bottom:.75rem}@media(min-width:576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}#panel-notification .card-columns .error-notification-item,#panel-notification .card-columns .succeed-notification-item,.card-columns #panel-notification .error-notification-item,.card-columns #panel-notification .succeed-notification-item,.card-columns .card,.card-columns .portlet:not(.portletNavigationTree){display:inline-block;width:100%}}.accordion{overflow-anchor:none}#panel-notification .accordion>.error-notification-item,#panel-notification .accordion>.succeed-notification-item,.accordion>.card,.accordion>.portlet:not(.portletNavigationTree){overflow:hidden}#panel-notification .accordion>.error-notification-item:not(:last-of-type),#panel-notification .accordion>.succeed-notification-item:not(:last-of-type),.accordion>.card:not(:last-of-type),.accordion>.portlet:not(:last-of-type):not(.portletNavigationTree){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}#panel-notification .accordion>.error-notification-item:not(:first-of-type),#panel-notification .accordion>.succeed-notification-item:not(:first-of-type),.accordion>.card:not(:first-of-type),.accordion>.portlet:not(:first-of-type):not(.portletNavigationTree){border-top-left-radius:0;border-top-right-radius:0}#panel-notification .accordion>.error-notification-item>.card-header,#panel-notification .accordion>.succeed-notification-item>.card-header,#panel-notification .portlet:not(.portletNavigationTree) .accordion>.error-notification-item>.portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .accordion>.succeed-notification-item>.portletHeader,.accordion>.card>.card-header,.accordion>.portlet:not(.portletNavigationTree)>.card-header,.accordion>.portlet:not(.portletNavigationTree)>.portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .accordion>.error-notification-item>.portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .accordion>.succeed-notification-item>.portletHeader,.portlet:not(.portletNavigationTree) .accordion>.card>.portletHeader{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination,nav.pagination ul{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link,nav.pagination ul li a{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#428aaf;background-color:#fff;border:1px solid #dee2e6}.page-link:hover,nav.pagination ul li a:hover{z-index:2;color:#2d5e77;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus,nav.pagination ul li a:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.page-item:first-child .page-link,.page-item:first-child nav.pagination ul li a,nav.pagination ul li .page-item:first-child a,nav.pagination ul li:first-child .page-link,nav.pagination ul li:first-child a{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link,.page-item:last-child nav.pagination ul li a,nav.pagination ul li .page-item:last-child a,nav.pagination ul li:last-child .page-link,nav.pagination ul li:last-child a{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link,.page-item.active nav.pagination ul li a,nav.pagination ul li.active .page-link,nav.pagination ul li.active a,nav.pagination ul li .page-item.active a{z-index:3;color:#fff;background-color:#428aaf;border-color:#428aaf}.page-item.disabled .page-link,.page-item.disabled nav.pagination ul li a,nav.pagination ul li.disabled .page-link,nav.pagination ul li.disabled a,nav.pagination ul li .page-item.disabled a{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link,.pagination-lg nav.pagination ul li a,nav.pagination ul li .pagination-lg a{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link,.pagination-lg .page-item:first-child nav.pagination ul li a,.pagination-lg nav.pagination ul li:first-child .page-link,.pagination-lg nav.pagination ul li:first-child a,nav.pagination ul .pagination-lg li:first-child .page-link,nav.pagination ul .pagination-lg li:first-child a,nav.pagination ul li .pagination-lg .page-item:first-child a{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link,.pagination-lg .page-item:last-child nav.pagination ul li a,.pagination-lg nav.pagination ul li:last-child .page-link,.pagination-lg nav.pagination ul li:last-child a,nav.pagination ul .pagination-lg li:last-child .page-link,nav.pagination ul .pagination-lg li:last-child a,nav.pagination ul li .pagination-lg .page-item:last-child a{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link,.pagination-sm nav.pagination ul li a,nav.pagination ul li .pagination-sm a{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link,.pagination-sm .page-item:first-child nav.pagination ul li a,.pagination-sm nav.pagination ul li:first-child .page-link,.pagination-sm nav.pagination ul li:first-child a,nav.pagination ul .pagination-sm li:first-child .page-link,nav.pagination ul .pagination-sm li:first-child a,nav.pagination ul li .pagination-sm .page-item:first-child a{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link,.pagination-sm .page-item:last-child nav.pagination ul li a,.pagination-sm nav.pagination ul li:last-child .page-link,.pagination-sm nav.pagination ul li:last-child a,nav.pagination ul .pagination-sm li:last-child .page-link,nav.pagination ul .pagination-sm li:last-child a,nav.pagination ul li .pagination-sm .page-item:last-child a{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge,.formControls input[name*="form.button"] .badge,.portlet:not(.portletNavigationTree) input[name=submit] .badge,a#setup-link .badge,form.loginform input[type=button] .badge,form.rowlike input[type=button] .badge,form.senaite-form input[type=button] .badge,form[action*=-controlpanel] input[type=button] .badge,form[name=analysisrequest_add_form] input[type=button] .badge,form[name=edit_form] input[type=button] .badge,form[name=sampleheader_form] input[type=button] .badge,section>ol.configlets li input[type=submit] .badge,section>ul.configlets li input[type=submit] .badge,ul.configlets>li>form input[type=button] .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#428aaf}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#346d8a}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert,.portalMessage{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#22485b;background-color:#d9e8ef;border-color:#cadee9}.alert-primary hr{border-top-color:#b8d3e2}.alert-primary .alert-link{color:#142b36}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info,.portalMessage.info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr,.portalMessage.info hr{border-top-color:#abdde5}.alert-info .alert-link,.portalMessage.info .alert-link{color:#062c33}.alert-warning,.portalMessage.warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr,.portalMessage.warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link,.portalMessage.warning .alert-link{color:#533f03}.alert-danger,.portalMessage.error{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr,.portalMessage.error hr{border-top-color:#f1b0b7}.alert-danger .alert-link,.portalMessage.error .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{height:1rem;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#428aaf;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group,section>ol.configlets,section>ul.configlets{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#293333;background-color:#e9ecef}.list-group-item,section>ol.configlets li,section>ul.configlets li{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child,section>ol.configlets li:first-child,section>ul.configlets li:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child,section>ol.configlets li:last-child,section>ul.configlets li:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled,section>ol.configlets li.disabled,section>ol.configlets li:disabled,section>ul.configlets li.disabled,section>ul.configlets li:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active,section>ol.configlets li.active,section>ul.configlets li.active{z-index:2;color:#fff;background-color:#428aaf;border-color:#428aaf}.list-group-item+.list-group-item,section>ol.configlets .list-group-item+li,section>ol.configlets li+.list-group-item,section>ol.configlets li+li,section>ul.configlets .list-group-item+li,section>ul.configlets li+.list-group-item,section>ul.configlets li+li{border-top-width:0}.list-group-item+.list-group-item.active,section>ol.configlets .list-group-item+li.active,section>ol.configlets li+.list-group-item.active,section>ol.configlets li+li.active,section>ul.configlets .list-group-item+li.active,section>ul.configlets li+.list-group-item.active,section>ul.configlets li+li.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child,section>ol.configlets .list-group-horizontal>li:first-child,section>ul.configlets .list-group-horizontal>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child,section>ol.configlets .list-group-horizontal>li:last-child,section>ul.configlets .list-group-horizontal>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active,section>ol.configlets .list-group-horizontal>li.active,section>ul.configlets .list-group-horizontal>li.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal>.list-group-item+li,section>ol.configlets .list-group-horizontal>li+.list-group-item,section>ol.configlets .list-group-horizontal>li+li,section>ul.configlets .list-group-horizontal>.list-group-item+li,section>ul.configlets .list-group-horizontal>li+.list-group-item,section>ul.configlets .list-group-horizontal>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal>.list-group-item+li.active,section>ol.configlets .list-group-horizontal>li+.list-group-item.active,section>ol.configlets .list-group-horizontal>li+li.active,section>ul.configlets .list-group-horizontal>.list-group-item+li.active,section>ul.configlets .list-group-horizontal>li+.list-group-item.active,section>ul.configlets .list-group-horizontal>li+li.active{margin-left:-1px;border-left-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-sm>li:first-child,section>ul.configlets .list-group-horizontal-sm>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-sm>li:last-child,section>ul.configlets .list-group-horizontal-sm>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>li.active,section>ul.configlets .list-group-horizontal-sm>li.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-sm>.list-group-item+li,section>ol.configlets .list-group-horizontal-sm>li+.list-group-item,section>ol.configlets .list-group-horizontal-sm>li+li,section>ul.configlets .list-group-horizontal-sm>.list-group-item+li,section>ul.configlets .list-group-horizontal-sm>li+.list-group-item,section>ul.configlets .list-group-horizontal-sm>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-sm>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>li+li.active,section>ul.configlets .list-group-horizontal-sm>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-sm>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-sm>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-md>li:first-child,section>ul.configlets .list-group-horizontal-md>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-md>li:last-child,section>ul.configlets .list-group-horizontal-md>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active,section>ol.configlets .list-group-horizontal-md>li.active,section>ul.configlets .list-group-horizontal-md>li.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-md>.list-group-item+li,section>ol.configlets .list-group-horizontal-md>li+.list-group-item,section>ol.configlets .list-group-horizontal-md>li+li,section>ul.configlets .list-group-horizontal-md>.list-group-item+li,section>ul.configlets .list-group-horizontal-md>li+.list-group-item,section>ul.configlets .list-group-horizontal-md>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-md>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-md>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-md>li+li.active,section>ul.configlets .list-group-horizontal-md>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-md>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-md>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-lg>li:first-child,section>ul.configlets .list-group-horizontal-lg>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-lg>li:last-child,section>ul.configlets .list-group-horizontal-lg>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>li.active,section>ul.configlets .list-group-horizontal-lg>li.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-lg>.list-group-item+li,section>ol.configlets .list-group-horizontal-lg>li+.list-group-item,section>ol.configlets .list-group-horizontal-lg>li+li,section>ul.configlets .list-group-horizontal-lg>.list-group-item+li,section>ul.configlets .list-group-horizontal-lg>li+.list-group-item,section>ul.configlets .list-group-horizontal-lg>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-lg>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>li+li.active,section>ul.configlets .list-group-horizontal-lg>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-lg>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-lg>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-xl>li:first-child,section>ul.configlets .list-group-horizontal-xl>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-xl>li:last-child,section>ul.configlets .list-group-horizontal-xl>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>li.active,section>ul.configlets .list-group-horizontal-xl>li.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-xl>.list-group-item+li,section>ol.configlets .list-group-horizontal-xl>li+.list-group-item,section>ol.configlets .list-group-horizontal-xl>li+li,section>ul.configlets .list-group-horizontal-xl>.list-group-item+li,section>ul.configlets .list-group-horizontal-xl>li+.list-group-item,section>ul.configlets .list-group-horizontal-xl>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-xl>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>li+li.active,section>ul.configlets .list-group-horizontal-xl>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-xl>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-xl>li+li.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item,section>ol.configlets .list-group-flush>li,section>ul.configlets .list-group-flush>li{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child,section>ol.configlets .list-group-flush>li:last-child,section>ul.configlets .list-group-flush>li:last-child{border-bottom-width:0}.list-group-item-primary{color:#22485b;background-color:#cadee9}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#22485b;background-color:#b8d3e2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#22485b;border-color:#22485b}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#293333}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#428aaf!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#346d8a!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light,aside section nav.portletContent{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#428aaf!important}.border-secondary{border-color:#6c757d!important}#panel-notification .succeed-notification-item,.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}#panel-notification .error-notification-item,.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none,.hiddenStructure,.priority-ico span{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block,.formHelp{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex,aside section nav.portletContent ul{display:flex!important}.d-inline-flex{display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column,aside section nav.portletContent ul{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media(min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media(min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden,.portlet:not(.portletNavigationTree){overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{white-space:nowrap}.sr-only-focusable:active,.sr-only-focusable:focus{white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1,a#setup-link:before,div.field.error>div.error:before{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2,.portlet:not(.portletNavigationTree) input[name=submit]{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3,.portlet:not(.portletNavigationTree){margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.portlet:not(.portletNavigationTree) .portletHeader,.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold,.formQuestion{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#428aaf!important}a.text-primary:focus,a.text-primary:hover{color:#2d5e77!important}.discreet,.documentDescription,.formHelp,.priority-ico.priority-3,.text-secondary{color:#6c757d!important}a.discreet:focus,a.discreet:hover,a.documentDescription:focus,a.documentDescription:hover,a.formHelp:focus,a.formHelp:hover,a.priority-ico.priority-3:focus,a.priority-ico.priority-3:hover,a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.priority-ico.priority-5,.text-success{color:#28a745!important}a.priority-ico.priority-5:focus,a.priority-ico.priority-5:hover,a.text-success:focus,a.text-success:hover{color:#19692c!important}.priority-ico.priority-4,.text-info{color:#17a2b8!important}a.priority-ico.priority-4:focus,a.priority-ico.priority-4:hover,a.text-info:focus,a.text-info:hover{color:#0f6674!important}.priority-ico.priority-2,.text-warning{color:#ffc107!important}a.priority-ico.priority-2:focus,a.priority-ico.priority-2:hover,a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.priority-ico.priority-1,.text-danger,div.field.error>div.error,form.loginform .fieldErrorBox,form.rowlike .fieldErrorBox,form.senaite-form .fieldErrorBox,form[action*=-controlpanel] .fieldErrorBox,form[name=analysisrequest_add_form] .fieldErrorBox,form[name=edit_form] .fieldErrorBox,form[name=sampleheader_form] .fieldErrorBox,ul.configlets>li>form .fieldErrorBox{color:#dc3545!important}a.priority-ico.priority-1:focus,a.priority-ico.priority-1:hover,a.text-danger:focus,a.text-danger:hover,form.loginform a.fieldErrorBox:focus,form.loginform a.fieldErrorBox:hover,form.rowlike a.fieldErrorBox:focus,form.rowlike a.fieldErrorBox:hover,form.senaite-form a.fieldErrorBox:focus,form.senaite-form a.fieldErrorBox:hover,form[action*=-controlpanel] a.fieldErrorBox:focus,form[action*=-controlpanel] a.fieldErrorBox:hover,form[name=analysisrequest_add_form] a.fieldErrorBox:focus,form[name=analysisrequest_add_form] a.fieldErrorBox:hover,form[name=edit_form] a.fieldErrorBox:focus,form[name=edit_form] a.fieldErrorBox:hover,form[name=sampleheader_form] a.fieldErrorBox:focus,form[name=sampleheader_form] a.fieldErrorBox:hover,ul.configlets>li>form a.fieldErrorBox:focus,ul.configlets>li>form a.fieldErrorBox:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#293333!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;box-shadow:none!important}a:not(.btn):not(a#setup-link){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table,table.listing{border-collapse:collapse!important}.table td,.table th,table.listing td,table.listing th{background-color:#fff!important}.table-bordered td,.table-bordered th,table.listing td,table.listing th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th,table.listing .thead-dark th{color:inherit;border-color:#dee2e6}}#senaite-toolbar .tb-state:before,#sidebar.minimized .sidebar-toggle-icon,#sidebar .sidebar-toggle-icon,#sidebar.toggled .sidebar-toggle-icon,.fa,.fab,.fad,.fal,.far,.fas,.priority-ico,a#setup-link:before,div.field.error>div.error:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}#senaite-toolbar .fa-pull-left.tb-state:before,#sidebar .fa-pull-left.sidebar-toggle-icon,.fa-pull-left.priority-ico,.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left,a.fa-pull-left#setup-link:before,div.field.error>div.fa-pull-left.error:before{margin-right:.3em}#senaite-toolbar .fa-pull-right.tb-state:before,#sidebar .fa-pull-right.sidebar-toggle-icon,.fa-pull-right.priority-ico,.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right,a.fa-pull-right#setup-link:before,div.field.error>div.fa-pull-right.error:before{margin-left:.3em}.fa-spin{animation:fa-spin 2s linear infinite}.fa-pulse{animation:fa-spin 1s steps(8) infinite}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-acquisitions-incorporated:before{content:""}.fa-ad:before{content:""}.fa-address-book:before{content:""}.fa-address-card:before{content:""}.fa-adjust:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-air-freshener:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-align-center:before{content:""}.fa-align-justify:before{content:""}.fa-align-left:before{content:""}.fa-align-right:before{content:""}.fa-alipay:before{content:""}.fa-allergies:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-ambulance:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-amilia:before{content:""}.fa-anchor:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angry:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-ankh:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-alt:before{content:""}.fa-apple-pay:before{content:""}.fa-archive:before{content:""}.fa-archway:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-arrow-circle-left:before,a#setup-link:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-down:before,.priority-ico.priority-4:before,.priority-ico.priority-5:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before,.priority-ico.priority-1:before,.priority-ico.priority-2:before,.priority-ico.priority-3:before{content:""}.fa-arrows-alt:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-artstation:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asterisk:before{content:""}.fa-asymmetrik:before{content:""}.fa-at:before{content:""}.fa-atlas:before{content:""}.fa-atlassian:before{content:""}.fa-atom:before{content:""}.fa-audible:before{content:""}.fa-audio-description:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-award:before{content:""}.fa-aws:before{content:""}.fa-baby:before{content:""}.fa-baby-carriage:before{content:""}.fa-backspace:before{content:""}.fa-backward:before{content:""}.fa-bacon:before{content:""}.fa-bacteria:before{content:""}.fa-bacterium:before{content:""}.fa-bahai:before{content:""}.fa-balance-scale:before{content:""}.fa-balance-scale-left:before{content:""}.fa-balance-scale-right:before{content:""}.fa-ban:before{content:""}.fa-band-aid:before{content:""}.fa-bandcamp:before{content:""}.fa-barcode:before{content:""}.fa-bars:before{content:""}.fa-baseball-ball:before{content:""}.fa-basketball-ball:before{content:""}.fa-bath:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-full:before{content:""}.fa-battery-half:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battle-net:before{content:""}.fa-bed:before{content:""}.fa-beer:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bell:before{content:""}.fa-bell-slash:before{content:""}.fa-bezier-curve:before{content:""}.fa-bible:before{content:""}.fa-bicycle:before{content:""}.fa-biking:before{content:""}.fa-bimobject:before{content:""}.fa-binoculars:before{content:""}.fa-biohazard:before{content:""}.fa-birthday-cake:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blender:before{content:""}.fa-blender-phone:before{content:""}.fa-blind:before{content:""}.fa-blog:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bold:before{content:""}#senaite-toolbar .tb-state:before,.fa-bolt:before{content:""}.fa-bomb:before{content:""}.fa-bone:before{content:""}.fa-bong:before{content:""}.fa-book:before{content:""}.fa-book-dead:before{content:""}.fa-book-medical:before{content:""}.fa-book-open:before{content:""}.fa-book-reader:before{content:""}.fa-bookmark:before{content:""}.fa-bootstrap:before{content:""}.fa-border-all:before{content:""}.fa-border-none:before{content:""}.fa-border-style:before{content:""}.fa-bowling-ball:before{content:""}.fa-box:before{content:""}.fa-box-open:before{content:""}.fa-box-tissue:before{content:""}.fa-boxes:before{content:""}.fa-braille:before{content:""}.fa-brain:before{content:""}.fa-bread-slice:before{content:""}.fa-briefcase:before{content:""}.fa-briefcase-medical:before{content:""}.fa-broadcast-tower:before{content:""}.fa-broom:before{content:""}.fa-brush:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-bug:before{content:""}.fa-building:before{content:""}.fa-bullhorn:before{content:""}.fa-bullseye:before{content:""}.fa-burn:before{content:""}.fa-buromobelexperte:before{content:""}.fa-bus:before{content:""}.fa-bus-alt:before{content:""}.fa-business-time:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-calculator:before{content:""}.fa-calendar:before{content:""}.fa-calendar-alt:before{content:""}.fa-calendar-check:before{content:""}.fa-calendar-day:before{content:""}.fa-calendar-minus:before{content:""}.fa-calendar-plus:before{content:""}.fa-calendar-times:before{content:""}.fa-calendar-week:before{content:""}.fa-camera:before{content:""}.fa-camera-retro:before{content:""}.fa-campground:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-candy-cane:before{content:""}.fa-cannabis:before{content:""}.fa-capsules:before{content:""}.fa-car:before{content:""}.fa-car-alt:before{content:""}.fa-car-battery:before{content:""}.fa-car-crash:before{content:""}.fa-car-side:before{content:""}.fa-caravan:before{content:""}.fa-caret-down:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-caret-square-down:before{content:""}.fa-caret-square-left:before{content:""}.fa-caret-square-right:before{content:""}.fa-caret-square-up:before{content:""}.fa-caret-up:before{content:""}.fa-carrot:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-cart-plus:before{content:""}.fa-cash-register:before{content:""}.fa-cat:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-certificate:before{content:""}.fa-chair:before{content:""}.fa-chalkboard:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-charging-station:before{content:""}.fa-chart-area:before{content:""}.fa-chart-bar:before{content:""}.fa-chart-line:before{content:""}.fa-chart-pie:before{content:""}.fa-check:before{content:""}.fa-check-circle:before{content:""}.fa-check-double:before{content:""}.fa-check-square:before{content:""}.fa-cheese:before{content:""}.fa-chess:before{content:""}.fa-chess-bishop:before{content:""}.fa-chess-board:before{content:""}.fa-chess-king:before{content:""}.fa-chess-knight:before{content:""}.fa-chess-pawn:before{content:""}.fa-chess-queen:before{content:""}.fa-chess-rook:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-down:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-chevron-up:before{content:""}.fa-child:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-church:before{content:""}.fa-circle:before{content:""}.fa-circle-notch:before{content:""}.fa-city:before{content:""}.fa-clinic-medical:before{content:""}.fa-clipboard:before{content:""}.fa-clipboard-check:before{content:""}.fa-clipboard-list:before{content:""}.fa-clock:before{content:""}.fa-clone:before{content:""}.fa-closed-captioning:before{content:""}.fa-cloud:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-cloud-meatball:before{content:""}.fa-cloud-moon:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-cloud-rain:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-cloud-sun:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cocktail:before{content:""}.fa-code:before{content:""}.fa-code-branch:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-coffee:before{content:""}.fa-cog:before{content:""}.fa-cogs:before{content:""}.fa-coins:before{content:""}.fa-columns:before{content:""}.fa-comment:before{content:""}.fa-comment-alt:before{content:""}.fa-comment-dollar:before{content:""}.fa-comment-dots:before{content:""}.fa-comment-medical:before{content:""}.fa-comment-slash:before{content:""}.fa-comments:before{content:""}.fa-comments-dollar:before{content:""}.fa-compact-disc:before{content:""}.fa-compass:before{content:""}.fa-compress:before{content:""}.fa-compress-alt:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-concierge-bell:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cookie:before{content:""}.fa-cookie-bite:before{content:""}.fa-copy:before{content:""}.fa-copyright:before{content:""}.fa-cotton-bureau:before{content:""}.fa-couch:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-credit-card:before{content:""}.fa-critical-role:before{content:""}.fa-crop:before{content:""}.fa-crop-alt:before{content:""}.fa-cross:before{content:""}.fa-crosshairs:before{content:""}.fa-crow:before{content:""}.fa-crown:before{content:""}.fa-crutch:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-cut:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-database:before{content:""}.fa-deaf:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-democrat:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-desktop:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dharmachakra:before{content:""}.fa-dhl:before{content:""}.fa-diagnoses:before{content:""}.fa-diaspora:before{content:""}.fa-dice:before{content:""}.fa-dice-d20:before{content:""}.fa-dice-d6:before{content:""}.fa-dice-five:before{content:""}.fa-dice-four:before{content:""}.fa-dice-one:before{content:""}.fa-dice-six:before{content:""}.fa-dice-three:before{content:""}.fa-dice-two:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-digital-tachograph:before{content:""}.fa-directions:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-disease:before{content:""}.fa-divide:before{content:""}.fa-dizzy:before{content:""}.fa-dna:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-dog:before{content:""}.fa-dollar-sign:before{content:""}.fa-dolly:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-donate:before{content:""}.fa-door-closed:before{content:""}.fa-door-open:before{content:""}.fa-dot-circle:before{content:""}.fa-dove:before{content:""}.fa-download:before{content:""}.fa-draft2digital:before{content:""}.fa-drafting-compass:before{content:""}.fa-dragon:before{content:""}.fa-draw-polygon:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drum:before{content:""}.fa-drum-steelpan:before{content:""}.fa-drumstick-bite:before{content:""}.fa-drupal:before{content:""}.fa-dumbbell:before{content:""}.fa-dumpster:before{content:""}.fa-dumpster-fire:before{content:""}.fa-dungeon:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-edit:before{content:""}.fa-egg:before{content:""}.fa-eject:before{content:""}.fa-elementor:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envelope:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-text:before{content:""}.fa-envelope-square:before{content:""}.fa-envira:before{content:""}.fa-equals:before{content:""}.fa-eraser:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-ethernet:before{content:""}.fa-etsy:before{content:""}.fa-euro-sign:before{content:""}.fa-evernote:before{content:""}.fa-exchange-alt:before{content:""}.fa-exclamation:before{content:""}.fa-exclamation-circle:before,div.field.error>div.error:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-expand:before{content:""}.fa-expand-alt:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-expeditedssl:before{content:""}.fa-external-link-alt:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-eye:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-slash:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fan:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fast-backward:before{content:""}.fa-fast-forward:before{content:""}.fa-faucet:before{content:""}.fa-fax:before{content:""}.fa-feather:before{content:""}.fa-feather-alt:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-female:before{content:""}.fa-fighter-jet:before{content:""}.fa-figma:before{content:""}.fa-file:before{content:""}.fa-file-alt:before{content:""}.fa-file-archive:before{content:""}.fa-file-audio:before{content:""}.fa-file-code:before{content:""}.fa-file-contract:before{content:""}.fa-file-csv:before{content:""}.fa-file-download:before{content:""}.fa-file-excel:before{content:""}.fa-file-export:before{content:""}.fa-file-image:before{content:""}.fa-file-import:before{content:""}.fa-file-invoice:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-file-medical:before{content:""}.fa-file-medical-alt:before{content:""}.fa-file-pdf:before{content:""}.fa-file-powerpoint:before{content:""}.fa-file-prescription:before{content:""}.fa-file-signature:before{content:""}.fa-file-upload:before{content:""}.fa-file-video:before{content:""}.fa-file-word:before{content:""}.fa-fill:before{content:""}.fa-fill-drip:before{content:""}.fa-film:before{content:""}.fa-filter:before{content:""}.fa-fingerprint:before{content:""}.fa-fire:before{content:""}.fa-fire-alt:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-aid:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-fish:before{content:""}.fa-fist-raised:before{content:""}.fa-flag:before{content:""}.fa-flag-checkered:before{content:""}.fa-flag-usa:before{content:""}.fa-flask:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-flushed:before{content:""}.fa-fly:before{content:""}.fa-folder:before{content:""}.fa-folder-minus:before{content:""}.fa-folder-open:before{content:""}.fa-folder-plus:before{content:""}.fa-font:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-football-ball:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-forward:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-frog:before{content:""}.fa-frown:before{content:""}.fa-frown-open:before{content:""}.fa-fulcrum:before{content:""}.fa-funnel-dollar:before{content:""}.fa-futbol:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-gamepad:before{content:""}.fa-gas-pump:before{content:""}.fa-gavel:before{content:""}.fa-gem:before{content:""}.fa-genderless:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-ghost:before{content:""}.fa-gift:before{content:""}.fa-gifts:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glass-cheers:before{content:""}.fa-glass-martini:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-glass-whiskey:before{content:""}.fa-glasses:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-globe:before{content:""}.fa-globe-africa:before{content:""}.fa-globe-americas:before{content:""}.fa-globe-asia:before{content:""}.fa-globe-europe:before{content:""}.fa-gofore:before{content:""}.fa-golf-ball:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gopuram:before{content:""}.fa-graduation-cap:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-greater-than:before{content:""}.fa-greater-than-equal:before{content:""}.fa-grimace:before{content:""}.fa-grin:before{content:""}.fa-grin-alt:before{content:""}.fa-grin-beam:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-grin-hearts:before{content:""}.fa-grin-squint:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-grin-stars:before{content:""}.fa-grin-tears:before{content:""}.fa-grin-tongue:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-grip-horizontal:before{content:""}.fa-grip-lines:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-grip-vertical:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-guitar:before{content:""}.fa-gulp:before{content:""}.fa-h-square:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hamburger:before{content:""}.fa-hammer:before{content:""}.fa-hamsa:before{content:""}.fa-hand-holding:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-hand-holding-water:before{content:""}.fa-hand-lizard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-hand-paper:before{content:""}.fa-hand-peace:before{content:""}.fa-hand-point-down:before{content:""}.fa-hand-point-left:before{content:""}.fa-hand-point-right:before{content:""}.fa-hand-point-up:before{content:""}.fa-hand-pointer:before{content:""}.fa-hand-rock:before{content:""}.fa-hand-scissors:before{content:""}.fa-hand-sparkles:before{content:""}.fa-hand-spock:before{content:""}.fa-hands:before{content:""}.fa-hands-helping:before{content:""}.fa-hands-wash:before{content:""}.fa-handshake:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-handshake-slash:before{content:""}.fa-hanukiah:before{content:""}.fa-hard-hat:before{content:""}.fa-hashtag:before{content:""}.fa-hat-cowboy:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-hat-wizard:before{content:""}.fa-hdd:before{content:""}.fa-head-side-cough:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-head-side-mask:before{content:""}.fa-head-side-virus:before{content:""}.fa-heading:before{content:""}.fa-headphones:before{content:""}.fa-headphones-alt:before{content:""}.fa-headset:before{content:""}.fa-heart:before{content:""}.fa-heart-broken:before{content:""}.fa-heartbeat:before{content:""}.fa-helicopter:before{content:""}.fa-highlighter:before{content:""}.fa-hiking:before{content:""}.fa-hippo:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-history:before{content:""}.fa-hive:before{content:""}.fa-hockey-puck:before{content:""}.fa-holly-berry:before{content:""}.fa-home:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-horse:before{content:""}.fa-horse-head:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-symbol:before{content:""}.fa-hospital-user:before{content:""}.fa-hot-tub:before{content:""}.fa-hotdog:before{content:""}.fa-hotel:before{content:""}.fa-hotjar:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-start:before{content:""}.fa-house-damage:before{content:""}.fa-house-user:before{content:""}.fa-houzz:before{content:""}.fa-hryvnia:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-i-cursor:before{content:""}.fa-ice-cream:before{content:""}.fa-icicles:before{content:""}.fa-icons:before{content:""}.fa-id-badge:before{content:""}.fa-id-card:before{content:""}.fa-id-card-alt:before{content:""}.fa-ideal:before{content:""}.fa-igloo:before{content:""}.fa-image:before{content:""}.fa-images:before{content:""}.fa-imdb:before{content:""}.fa-inbox:before{content:""}.fa-indent:before{content:""}.fa-industry:before{content:""}.fa-infinity:before{content:""}.fa-info:before{content:""}.fa-info-circle:before{content:""}.fa-innosoft:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-italic:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joint:before{content:""}.fa-joomla:before{content:""}.fa-journal-whills:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaaba:before{content:""}.fa-kaggle:before{content:""}.fa-key:before{content:""}.fa-keybase:before{content:""}.fa-keyboard:before{content:""}.fa-keycdn:before{content:""}.fa-khanda:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-kiss:before{content:""}.fa-kiss-beam:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-kiwi-bird:before{content:""}.fa-korvue:before{content:""}.fa-landmark:before{content:""}.fa-language:before{content:""}.fa-laptop:before{content:""}.fa-laptop-code:before{content:""}.fa-laptop-house:before{content:""}.fa-laptop-medical:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-laugh:before{content:""}.fa-laugh-beam:before{content:""}.fa-laugh-squint:before{content:""}.fa-laugh-wink:before{content:""}.fa-layer-group:before{content:""}.fa-leaf:before{content:""}.fa-leanpub:before{content:""}.fa-lemon:before{content:""}.fa-less:before{content:""}.fa-less-than:before{content:""}.fa-less-than-equal:before{content:""}.fa-level-down-alt:before{content:""}.fa-level-up-alt:before{content:""}.fa-life-ring:before{content:""}.fa-lightbulb:before{content:""}.fa-line:before{content:""}.fa-link:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lira-sign:before{content:""}.fa-list:before{content:""}.fa-list-alt:before{content:""}.fa-list-ol:before{content:""}.fa-list-ul:before{content:""}.fa-location-arrow:before{content:""}.fa-lock:before{content:""}.fa-lock-open:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-low-vision:before{content:""}.fa-luggage-cart:before{content:""}.fa-lungs:before{content:""}.fa-lungs-virus:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-magic:before{content:""}.fa-magnet:before{content:""}.fa-mail-bulk:before{content:""}.fa-mailchimp:before{content:""}.fa-male:before{content:""}.fa-mandalorian:before{content:""}.fa-map:before{content:""}.fa-map-marked:before{content:""}.fa-map-marked-alt:before{content:""}.fa-map-marker:before{content:""}.fa-map-marker-alt:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-markdown:before{content:""}.fa-marker:before{content:""}.fa-mars:before{content:""}.fa-mars-double:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mask:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medal:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medkit:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-meh:before{content:""}.fa-meh-blank:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-memory:before{content:""}.fa-mendeley:before{content:""}.fa-menorah:before{content:""}.fa-mercury:before{content:""}.fa-meteor:before{content:""}.fa-microblog:before{content:""}.fa-microchip:before{content:""}.fa-microphone:before{content:""}.fa-microphone-alt:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-microphone-slash:before{content:""}.fa-microscope:before{content:""}.fa-microsoft:before{content:""}.fa-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-minus-square:before{content:""}.fa-mitten:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-mobile:before{content:""}.fa-mobile-alt:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-money-bill:before{content:""}.fa-money-bill-alt:before{content:""}.fa-money-bill-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-money-check:before{content:""}.fa-money-check-alt:before{content:""}.fa-monument:before{content:""}.fa-moon:before{content:""}.fa-mortar-pestle:before{content:""}.fa-mosque:before{content:""}.fa-motorcycle:before{content:""}.fa-mountain:before{content:""}.fa-mouse:before{content:""}.fa-mouse-pointer:before{content:""}.fa-mug-hot:before{content:""}.fa-music:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-network-wired:before{content:""}.fa-neuter:before{content:""}.fa-newspaper:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-not-equal:before{content:""}.fa-notes-medical:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-oil-can:before{content:""}.fa-old-republic:before{content:""}.fa-om:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-otter:before{content:""}.fa-outdent:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-pager:before{content:""}.fa-paint-brush:before{content:""}.fa-paint-roller:before{content:""}.fa-palette:before{content:""}.fa-palfed:before{content:""}.fa-pallet:before{content:""}.fa-paper-plane:before{content:""}.fa-paperclip:before{content:""}.fa-parachute-box:before{content:""}.fa-paragraph:before{content:""}.fa-parking:before{content:""}.fa-passport:before{content:""}.fa-pastafarianism:before{content:""}.fa-paste:before{content:""}.fa-patreon:before{content:""}.fa-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-paw:before{content:""}.fa-paypal:before{content:""}.fa-peace:before{content:""}.fa-pen:before{content:""}.fa-pen-alt:before{content:""}.fa-pen-fancy:before{content:""}.fa-pen-nib:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-alt:before{content:""}.fa-pencil-ruler:before{content:""}.fa-penny-arcade:before{content:""}.fa-people-arrows:before{content:""}.fa-people-carry:before{content:""}.fa-pepper-hot:before{content:""}.fa-perbyte:before{content:""}.fa-percent:before{content:""}.fa-percentage:before{content:""}.fa-periscope:before{content:""}.fa-person-booth:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-phone:before{content:""}.fa-phone-alt:before{content:""}.fa-phone-slash:before{content:""}.fa-phone-square:before{content:""}.fa-phone-square-alt:before{content:""}.fa-phone-volume:before{content:""}.fa-photo-video:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-piggy-bank:before{content:""}.fa-pills:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pizza-slice:before{content:""}.fa-place-of-worship:before{content:""}.fa-plane:before{content:""}.fa-plane-arrival:before{content:""}.fa-plane-departure:before{content:""}.fa-plane-slash:before{content:""}.fa-play:before{content:""}.fa-play-circle:before{content:""}.fa-playstation:before{content:""}.fa-plug:before{content:""}.fa-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-plus-square:before{content:""}.fa-podcast:before{content:""}.fa-poll:before{content:""}.fa-poll-h:before{content:""}.fa-poo:before{content:""}.fa-poo-storm:before{content:""}.fa-poop:before{content:""}.fa-portrait:before{content:""}.fa-pound-sign:before{content:""}.fa-power-off:before{content:""}.fa-pray:before{content:""}.fa-praying-hands:before{content:""}.fa-prescription:before{content:""}.fa-prescription-bottle:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-print:before{content:""}.fa-procedures:before{content:""}.fa-product-hunt:before{content:""}.fa-project-diagram:before{content:""}.fa-pump-medical:before{content:""}.fa-pump-soap:before{content:""}.fa-pushed:before{content:""}.fa-puzzle-piece:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-qrcode:before{content:""}.fa-question:before{content:""}.fa-question-circle:before{content:""}.fa-quidditch:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-quran:before{content:""}.fa-r-project:before{content:""}.fa-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-rainbow:before{content:""}.fa-random:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-receipt:before{content:""}.fa-record-vinyl:before{content:""}.fa-recycle:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-redo:before{content:""}.fa-redo-alt:before{content:""}.fa-registered:before{content:""}.fa-remove-format:before{content:""}.fa-renren:before{content:""}.fa-reply:before{content:""}.fa-reply-all:before{content:""}.fa-replyd:before{content:""}.fa-republican:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-restroom:before{content:""}.fa-retweet:before{content:""}.fa-rev:before{content:""}.fa-ribbon:before{content:""}.fa-ring:before{content:""}.fa-road:before{content:""}.fa-robot:before{content:""}.fa-rocket:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-route:before{content:""}.fa-rss:before{content:""}.fa-rss-square:before{content:""}.fa-ruble-sign:before{content:""}.fa-ruler:before{content:""}.fa-ruler-combined:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-ruler-vertical:before{content:""}.fa-running:before{content:""}.fa-rupee-sign:before{content:""}.fa-rust:before{content:""}.fa-sad-cry:before{content:""}.fa-sad-tear:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-satellite:before{content:""}.fa-satellite-dish:before{content:""}.fa-save:before{content:""}.fa-schlix:before{content:""}.fa-school:before{content:""}.fa-screwdriver:before{content:""}.fa-scribd:before{content:""}.fa-scroll:before{content:""}.fa-sd-card:before{content:""}.fa-search:before{content:""}.fa-search-dollar:before{content:""}.fa-search-location:before{content:""}.fa-search-minus:before{content:""}.fa-search-plus:before{content:""}.fa-searchengin:before{content:""}.fa-seedling:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-server:before{content:""}.fa-servicestack:before{content:""}.fa-shapes:before{content:""}.fa-share:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-share-square:before{content:""}.fa-shekel-sign:before{content:""}.fa-shield-alt:before{content:""}.fa-shield-virus:before{content:""}.fa-ship:before{content:""}.fa-shipping-fast:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shoe-prints:before{content:""}.fa-shopify:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-shopping-cart:before{content:""}.fa-shopware:before{content:""}.fa-shower:before{content:""}.fa-shuttle-van:before{content:""}.fa-sign:before{content:""}.fa-sign-in-alt:before{content:""}.fa-sign-language:before{content:""}.fa-sign-out-alt:before{content:""}.fa-signal:before{content:""}.fa-signature:before{content:""}.fa-sim-card:before{content:""}.fa-simplybuilt:before{content:""}.fa-sink:before{content:""}.fa-sistrix:before{content:""}.fa-sitemap:before{content:""}.fa-sith:before{content:""}.fa-skating:before{content:""}.fa-sketch:before{content:""}.fa-skiing:before{content:""}.fa-skiing-nordic:before{content:""}.fa-skull:before{content:""}.fa-skull-crossbones:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-slash:before{content:""}.fa-sleigh:before{content:""}.fa-sliders-h:before{content:""}.fa-slideshare:before{content:""}.fa-smile:before{content:""}.fa-smile-beam:before{content:""}.fa-smile-wink:before{content:""}.fa-smog:before{content:""}.fa-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-sms:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-snowboarding:before{content:""}.fa-snowflake:before{content:""}.fa-snowman:before{content:""}.fa-snowplow:before{content:""}.fa-soap:before{content:""}.fa-socks:before{content:""}.fa-solar-panel:before{content:""}.fa-sort:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-sort-amount-down:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-sort-amount-up:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-sort-down:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-sort-up:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-spa:before{content:""}.fa-space-shuttle:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spell-check:before{content:""}.fa-spider:before{content:""}.fa-spinner:before{content:""}.fa-splotch:before{content:""}.fa-spotify:before{content:""}.fa-spray-can:before{content:""}.fa-square:before{content:""}.fa-square-full:before{content:""}.fa-square-root-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-stamp:before{content:""}.fa-star:before{content:""}.fa-star-and-crescent:before{content:""}.fa-star-half:before{content:""}.fa-star-half-alt:before{content:""}.fa-star-of-david:before{content:""}.fa-star-of-life:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-step-backward:before{content:""}.fa-step-forward:before{content:""}.fa-stethoscope:before{content:""}.fa-sticker-mule:before{content:""}.fa-sticky-note:before{content:""}.fa-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-stopwatch:before{content:""}.fa-stopwatch-20:before{content:""}.fa-store:before{content:""}.fa-store-alt:before{content:""}.fa-store-alt-slash:before{content:""}.fa-store-slash:before{content:""}.fa-strava:before{content:""}.fa-stream:before{content:""}.fa-street-view:before{content:""}.fa-strikethrough:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-stroopwafel:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-subscript:before{content:""}.fa-subway:before{content:""}.fa-suitcase:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-sun:before{content:""}.fa-superpowers:before{content:""}.fa-superscript:before{content:""}.fa-supple:before{content:""}.fa-surprise:before{content:""}.fa-suse:before{content:""}.fa-swatchbook:before{content:""}.fa-swift:before{content:""}.fa-swimmer:before{content:""}.fa-swimming-pool:before{content:""}.fa-symfony:before{content:""}.fa-synagogue:before{content:""}.fa-sync:before{content:""}.fa-sync-alt:before{content:""}.fa-syringe:before{content:""}.fa-table:before{content:""}.fa-table-tennis:before{content:""}.fa-tablet:before{content:""}.fa-tablet-alt:before{content:""}.fa-tablets:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-tape:before{content:""}.fa-tasks:before{content:""}.fa-taxi:before{content:""}.fa-teamspeak:before{content:""}.fa-teeth:before{content:""}.fa-teeth-open:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-temperature-high:before{content:""}.fa-temperature-low:before{content:""}.fa-tencent-weibo:before{content:""}.fa-tenge:before{content:""}.fa-terminal:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-th:before{content:""}.fa-th-large:before{content:""}.fa-th-list:before{content:""}.fa-the-red-yeti:before{content:""}.fa-theater-masks:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-thermometer:before{content:""}.fa-thermometer-empty:before{content:""}.fa-thermometer-full:before{content:""}.fa-thermometer-half:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-think-peaks:before{content:""}.fa-thumbs-down:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbtack:before{content:""}.fa-ticket-alt:before{content:""}.fa-tiktok:before{content:""}.fa-times:before{content:""}.fa-times-circle:before{content:""}.fa-tint:before{content:""}.fa-tint-slash:before{content:""}.fa-tired:before{content:""}#sidebar.minimized .sidebar-toggle-icon:before,#sidebar .sidebar-toggle-icon:before,.fa-toggle-off:before{content:""}#sidebar.toggled .sidebar-toggle-icon:before,.fa-toggle-on:before{content:""}.fa-toilet:before{content:""}.fa-toilet-paper:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-toolbox:before{content:""}.fa-tools:before{content:""}.fa-tooth:before{content:""}.fa-torah:before{content:""}.fa-torii-gate:before{content:""}.fa-tractor:before{content:""}.fa-trade-federation:before{content:""}.fa-trademark:before{content:""}.fa-traffic-light:before{content:""}.fa-trailer:before{content:""}.fa-train:before{content:""}.fa-tram:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-trash:before{content:""}.fa-trash-alt:before{content:""}.fa-trash-restore:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-tree:before{content:""}.fa-trello:before{content:""}.fa-trophy:before{content:""}.fa-truck:before{content:""}.fa-truck-loading:before{content:""}.fa-truck-monster:before{content:""}.fa-truck-moving:before{content:""}.fa-truck-pickup:before{content:""}.fa-tshirt:before{content:""}.fa-tty:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-tv:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-umbrella:before{content:""}.fa-umbrella-beach:before{content:""}.fa-uncharted:before{content:""}.fa-underline:before{content:""}.fa-undo:before{content:""}.fa-undo-alt:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-universal-access:before{content:""}.fa-university:before{content:""}.fa-unlink:before{content:""}.fa-unlock:before{content:""}.fa-unlock-alt:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-upload:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-user:before{content:""}.fa-user-alt:before{content:""}.fa-user-alt-slash:before{content:""}.fa-user-astronaut:before{content:""}.fa-user-check:before{content:""}.fa-user-circle:before{content:""}.fa-user-clock:before{content:""}.fa-user-cog:before{content:""}.fa-user-edit:before{content:""}.fa-user-friends:before{content:""}.fa-user-graduate:before{content:""}.fa-user-injured:before{content:""}.fa-user-lock:before{content:""}.fa-user-md:before{content:""}.fa-user-minus:before{content:""}.fa-user-ninja:before{content:""}.fa-user-nurse:before{content:""}.fa-user-plus:before{content:""}.fa-user-secret:before{content:""}.fa-user-shield:before{content:""}.fa-user-slash:before{content:""}.fa-user-tag:before{content:""}.fa-user-tie:before{content:""}.fa-user-times:before{content:""}.fa-users:before{content:""}.fa-users-cog:before{content:""}.fa-users-slash:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-utensil-spoon:before{content:""}.fa-utensils:before{content:""}.fa-vaadin:before{content:""}.fa-vector-square:before{content:""}.fa-venus:before{content:""}.fa-venus-double:before{content:""}.fa-venus-mars:before{content:""}.fa-vest:before{content:""}.fa-vest-patches:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-vial:before{content:""}.fa-vials:before{content:""}.fa-viber:before{content:""}.fa-video:before{content:""}.fa-video-slash:before{content:""}.fa-vihara:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-virus:before{content:""}.fa-virus-slash:before{content:""}.fa-viruses:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-voicemail:before{content:""}.fa-volleyball-ball:before{content:""}.fa-volume-down:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-off:before{content:""}.fa-volume-up:before{content:""}.fa-vote-yea:before{content:""}.fa-vr-cardboard:before{content:""}.fa-vuejs:before{content:""}.fa-walking:before{content:""}.fa-wallet:before{content:""}.fa-warehouse:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-water:before{content:""}.fa-wave-square:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weight:before{content:""}.fa-weight-hanging:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-wheelchair:before{content:""}.fa-whmcs:before{content:""}.fa-wifi:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wind:before{content:""}.fa-window-close:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-windows:before{content:""}.fa-wine-bottle:before{content:""}.fa-wine-glass:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-won-sign:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-wrench:before{content:""}.fa-x-ray:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yen-sign:before{content:""}.fa-yin-yang:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;font-display:block;src:url(/++plone++senaite.core.static/fonts/fa-solid-900.eot);src:url(/++plone++senaite.core.static/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/++plone++senaite.core.static/fonts/fa-solid-900.woff2) format("woff2"),url(/++plone++senaite.core.static/fonts/fa-solid-900.woff) format("woff"),url(/++plone++senaite.core.static/fonts/fa-solid-900.ttf) format("truetype"),url(/++plone++senaite.core.static/fonts/fa-solid-900.svg#fontawesome) format("svg")}#senaite-toolbar .tb-state:before,#sidebar.minimized .sidebar-toggle-icon,#sidebar .sidebar-toggle-icon,#sidebar.toggled .sidebar-toggle-icon,.fa,.fas,.priority-ico,a#setup-link:before,div.field.error>div.error:before{font-family:Font Awesome\ 5 Free;font-weight:900}.wrapper{display:flex;min-height:calc(100% - 64px)}.wrapper .pb-ajax>div,.wrapper div.container-fluid,.wrapper div.container-lg,.wrapper div.container-md,.wrapper div.container-sm,.wrapper div.container-xl{width:calc(100% - 50px)}#sidebar{min-width:200px;max-width:200px;transition:all .3s;overflow:hidden;white-space:nowrap;background-color:#f8f9fa!important}#sidebar #sidebar-header{text-align:right}#sidebar #sidebar-header button:focus{box-shadow:none}#sidebar:not(.minimized) ul li:hover{color:#000;transition:all .1s;opacity:1}#sidebar.minimized{min-width:50px;max-width:50px}#sidebar.minimized ul li a{padding:15px 0;text-align:center}#sidebar.minimized ul ul a{padding:15px 17px!important}#sidebar.minimized ul li a i{margin-right:0;margin-bottom:5px}#sidebar.minimized ul li a span.child-title,#sidebar.minimized ul li a span.node-title{display:none}#sidebar ul li.active>a{color:rgba(0,0,0,.9)}#sidebar ul li.active,#sidebar ul li.expanded{background:rgba(66,138,175,.25)}#sidebar.minimized #sidebar-header{text-align:center}#sidebar a{color:#293333}#sidebar a:hover{color:rgba(0,0,0,.7)}#sidebar ul li a{padding:15px 17px;display:block}#sidebar.minimized li a.senaite-state-inactive,#sidebar li a.senaite-state-inactive{display:none}#sidebar ul.submenu{max-width:200px}#sidebar ul.submenu li{width:200px}#sidebar.minimized ul.submenu li{padding:0;width:50px}#sidebar.minimized ul.nav-level-1 li.active,#sidebar.minimized ul.nav-level-1 li.expanded,#sidebar ul.nav-level-1 li.active,#sidebar ul.nav-level-1 li.expanded{background-:rgba(66,138,175,.4)}#sidebar.minimized ul.nav-level-1 li.active:hover,#sidebar.minimized ul.nav-level-1 li.expanded:hover,#sidebar ul.nav-level-1 li.active:hover,#sidebar ul.nav-level-1 li.expanded:hover{background:rgba(66,138,175,.4)}#sidebar.minimized ul.nav-level-2 li.active,#sidebar.minimized ul.nav-level-2 li.active:hover,#sidebar ul.nav-level-2 li.active,#sidebar ul.nav-level-2 li.active:hover{background:rgba(66,138,175,.55)}#setupview .vcenter{display:inline-block;vertical-align:middle;float:none}#setupview .tile{width:100%;height:6em;box-sizing:border-box;display:inline-block;padding:2em;margin:auto auto 1em;overflow:hidden;border:1px solid #dee2e6}#setupview .tile .title{text-transform:uppercase;font-weight:400;text-overflow:ellipsis;overflow:hidden;padding-left:15px}#setupview .tile:focus,#setupview .tile:hover{background-color:#e9ecef}#setupview .tile:focus{color:#2d5e77}#senaite-toolbar{background-color:#293333}#senaite-toolbar .content-views li a{padding-left:1rem;padding-right:1rem}#senaite-toolbar #plone-contentmenu-workflow{margin-left:1em}#senaite-toolbar a.active,#senaite-toolbar li.active a{color:#f2f2f2;background-color:#606969;border-radius:.2rem}#senaite-toolbar .dropdown-menu a,#senaite-toolbar .dropdown-menu a.active{color:#293333;background-color:transparent}#senaite-toolbar .dropdown-menu a.active:hover,#senaite-toolbar .dropdown-menu a:hover{color:#428aaf}#senaite-toolbar a{color:#d7dbdc}#senaite-toolbar a:hover{color:#f2f2f2}#senaite-toolbar .tb-state:before{padding-right:.4rem}#senaite-toolbar .tb-state.state-active,#senaite-toolbar .tb-state.state-open{color:#007bff}#senaite-toolbar .tb-state.state-cancelled,#senaite-toolbar .tb-state.state-closed,#senaite-toolbar .tb-state.state-inactive,#senaite-toolbar .tb-state.state-invalid{color:#dc3545}#senaite-toolbar .tb-state.state-sample_due{color:#ffff8d}#senaite-toolbar .tb-state.state-sample_received{color:#a1887f}#senaite-toolbar .tb-state.state-to_be_verified{color:#18ffff}#senaite-toolbar .tb-state.state-verified{color:#0091ea}#senaite-toolbar .tb-state.state-published{color:#00c853}.formQuestion{margin-bottom:0}form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select{width:100%!important}form.loginform input,form.loginform select,form.rowlike input,form.rowlike select,form.senaite-form input,form.senaite-form select,form[action*=-controlpanel] input,form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input,form[name=analysisrequest_add_form] select,form[name=edit_form] input,form[name=edit_form] select,form[name=sampleheader_form] input,form[name=sampleheader_form] select,ul.configlets>li>form input,ul.configlets>li>form select{width:auto}form.loginform input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.loginform select,form.rowlike input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.rowlike select,form.senaite-form input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.senaite-form select,form[action*=-controlpanel] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=analysisrequest_add_form] select,form[name=edit_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=edit_form] select,form[name=sampleheader_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=sampleheader_form] select,ul.configlets>li>form input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),ul.configlets>li>form select{width:250px!important;max-width:250px}form.loginform input[type=date],form.rowlike input[type=date],form.senaite-form input[type=date],form[action*=-controlpanel] input[type=date],form[name=analysisrequest_add_form] input[type=date],form[name=edit_form] input[type=date],form[name=sampleheader_form] input[type=date],ul.configlets>li>form input[type=date]{width:160px!important;max-width:160px}form.loginform input[type=time],form.rowlike input[type=time],form.senaite-form input[type=time],form[action*=-controlpanel] input[type=time],form[name=analysisrequest_add_form] input[type=time],form[name=edit_form] input[type=time],form[name=sampleheader_form] input[type=time],ul.configlets>li>form input[type=time]{width:90px!important;max-width:90px}form.loginform .fieldRequired:after,form.rowlike .fieldRequired:after,form.senaite-form .fieldRequired:after,form[action*=-controlpanel] .fieldRequired:after,form[name=analysisrequest_add_form] .fieldRequired:after,form[name=edit_form] .fieldRequired:after,form[name=sampleheader_form] .fieldRequired:after,ul.configlets>li>form .fieldRequired:after{color:#dc3545;content:"·"}form.loginform span.required:before,form.rowlike span.required:before,form.senaite-form span.required:before,form[action*=-controlpanel] span.required:before,form[name=analysisrequest_add_form] span.required:before,form[name=edit_form] span.required:before,form[name=sampleheader_form] span.required:before,ul.configlets>li>form span.required:before{color:#dc3545;content:"·";padding-right:.25em}.portaltype-analysisrequest form[name=header_form] td.label{background-color:#f8f9fa}.portaltype-analysisrequest form[name=header_form] .field,form[name=analysisrequest_add_form] .field{margin-bottom:0}.breadcrumb{border-radius:0;background-color:#f8f9fa;padding:.5rem 1rem}div.autotoc-nav a.active{margin-bottom:-1px}.pb-ajax{border-radius:3px}.pb-ajax>div{width:100%!important}div.overlaybg div.close,div.overlay div.close{opacity:1}.portlet.portletNavigationTree.portletSiteSetup{margin:1.5rem 0}.portlet.portletNavigationTree.portletSiteSetup aside section nav.portletContent ul.nav-pills li,.portlet.portletNavigationTree.portletSiteSetup ul.nav-pills li.nav-item,aside section nav.portletContent .portlet.portletNavigationTree.portletSiteSetup ul.nav-pills li{padding-left:0}article#content header{margin-bottom:15px}.documentDescription{font-size:95%}body #loader{display:none}body.loading #loader{position:fixed;display:block;top:0;left:49%;width:7em;height:2em;z-index:1000;font-size:1em;color:#383d41;background-color:#e2e3e5;border-color:#d6d8db;border-style:none;text-align:center;border-bottom-left-radius:10px;border-bottom-right-radius:10px;opacity:.8}div.listing-container input[type=date]{min-width:125px}div.listing-container input[type=time]{min-width:75px}body,html{height:100%}.h1,.h2,.h3,h1,h2,h3{font-weight:300}.h1,h1{font-size:2rem}.h2,h2{font-size:1.85rem}.text-state-active{color:#007bff}.text-state-inactive{color:#dc3545}.text-state-sample_due{color:#ffff8d}.text-state-sample_received{color:#a1887f}.text-state-to_be_verified{color:#18ffff}.text-state-verified{color:#0091ea}.text-state-published{color:#00c853}.text-state-invalid{color:#e65100}.text-state-rejected{color:#6c757d}.text-state-unassigned{color:#f8f9fa}.text-state-retracted{color:#ff6f00}.text-state-cancelled{color:#000}.bg-state-active{background-color:#007bff!important}.bg-state-inactive{background-color:#dc3545!important}.bg-state-sample_due{background-color:#ffff8d!important}.bg-state-sample_received{background-color:#a1887f!important}.bg-state-to_be_verified{background-color:#18ffff!important}.bg-state-verified{background-color:#0091ea!important}.bg-state-published{background-color:#00c853!important}.bg-state-invalid{background-color:#e65100!important}.bg-state-rejected{background-color:#6c757d!important}.bg-state-unassigned{background-color:#f8f9fa!important}.bg-state-retracted{background-color:#ff6f00!important}.bg-state-cancelled{background-color:#000!important}.cursor-pointer{cursor:pointer}.cursor-crosshair{cursor:crosshair}.cursor-help{cursor:help}.cursor-progress{cursor:progress}.cursor-text{cursor:text}a{outline:0}i.hazardous-icon svg{fill:#dc3545}img.deleteAttachmentButton{cursor:pointer;width:16px}.pb-ajax>div,div.container-fluid,div.container-lg,div.container-md,div.container-sm,div.container-xl{padding-left:30px}#viewlet-listing-table-title{margin-bottom:10px}#viewlet-listing-table-title h1{margin:0 10px}#panel-notification{top:50%;left:50%;position:fixed;z-index:1000}#senaite-footer .nav-pills aside section nav.portletContent ul li a,#senaite-footer .nav-pills li a.nav-link,#senaite-footer .nav-pills li div.autotoc-nav a,aside section nav.portletContent ul #senaite-footer .nav-pills li a,div.autotoc-nav #senaite-footer .nav-pills li a{padding-top:0;padding-bottom:0}#senaite-colophon{font-size:.9rem} +:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#428aaf;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-size:1rem;font-weight:400;line-height:1.5;color:#293333;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}address,dl,ol,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#428aaf;text-decoration:none;background-color:transparent}a:hover{color:#2d5e77;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{border-style:none}img,svg{vertical-align:middle}svg{overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem}.display-1,.display-2{font-weight:300;line-height:1.2}.display-2{font-size:5.5rem}.display-3{font-size:4.5rem}.display-3,.display-4{font-weight:300;line-height:1.2}.display-4{font-size:3.5rem}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.discreet,.documentDescription,.formHelp,.small,form.loginform .fieldErrorBox,form.rowlike .fieldErrorBox,form.senaite-form .fieldErrorBox,form[action*=-controlpanel] .fieldErrorBox,form[name=analysisrequest_add_form] .fieldErrorBox,form[name=edit_form] .fieldErrorBox,form[name=sampleheader_form] .fieldErrorBox,small,ul.configlets>li>form .fieldErrorBox{font-size:.875em;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:.875em;color:#6c757d}.blockquote-footer:before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.pb-ajax>div{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container,.container-sm{max-width:540px}}@media(min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media(min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media(min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table,table.listing{width:100%;margin-bottom:1rem;color:#293333}.table td,.table th,table.listing td,table.listing th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th,table.listing thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody,table.listing tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th,table.listing td,table.listing th{padding:.3rem}.table-bordered,.table-bordered td,.table-bordered th,table.listing,table.listing td,table.listing th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th,table.listing thead td,table.listing thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover,table.listing tbody tr:hover{color:#293333;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#cadee9}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#9dc2d5}.table-hover .table-primary:hover,.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th,table.listing .table-primary:hover,table.listing .table-primary:hover>td,table.listing .table-primary:hover>th{background-color:#b8d3e2}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th,table.listing .table-secondary:hover,table.listing .table-secondary:hover>td,table.listing .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover,.table-hover .table-success:hover>td,.table-hover .table-success:hover>th,table.listing .table-success:hover,table.listing .table-success:hover>td,table.listing .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover,.table-hover .table-info:hover>td,.table-hover .table-info:hover>th,table.listing .table-info:hover,table.listing .table-info:hover>td,table.listing .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover,.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th,table.listing .table-warning:hover,table.listing .table-warning:hover>td,table.listing .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover,.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th,table.listing .table-danger:hover,table.listing .table-danger:hover>td,table.listing .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover,.table-hover .table-light:hover>td,.table-hover .table-light:hover>th,table.listing .table-light:hover,table.listing .table-light:hover>td,table.listing .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover,.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th,table.listing .table-dark:hover,table.listing .table-dark:hover>td,table.listing .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th,.table-hover .table-active:hover,.table-hover .table-active:hover>td,.table-hover .table-active:hover>th,table.listing .table-active:hover,table.listing .table-active:hover>td,table.listing .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th,table.listing .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th,table.listing .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered,table.table-dark.listing{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.table-dark.table-hover tbody tr:hover,table.table-dark.listing tbody tr:hover{color:#fff;background-color:hsla(0,0%,100%,.075)}@media(max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered,.table-responsive-sm>table.listing{border:0}}@media(max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered,.table-responsive-md>table.listing{border:0}}@media(max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered,.table-responsive-lg>table.listing{border:0}}@media(max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered,.table-responsive-xl>table.listing{border:0}}.table-responsive,table.listing{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered,.table-responsive>table.listing,table.listing>.table-bordered,table.listing>table.listing{border:0}.form-control,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.loginform textarea,form.rowlike input[type=text],form.rowlike select,form.rowlike textarea,form.senaite-form input[type=text],form.senaite-form select,form.senaite-form textarea,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=edit_form] textarea,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,form[name=sampleheader_form] textarea,ul.configlets>li>form input[type=text],ul.configlets>li>form select,ul.configlets>li>form textarea{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.loginform textarea,form.rowlike input[type=text],form.rowlike select,form.rowlike textarea,form.senaite-form input[type=text],form.senaite-form select,form.senaite-form textarea,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=edit_form] textarea,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,form[name=sampleheader_form] textarea,ul.configlets>li>form input[type=text],ul.configlets>li>form select,ul.configlets>li>form textarea{transition:none}}.form-control::-ms-expand,.portlet:not(.portletNavigationTree) input:not([name=submit])::-ms-expand,form.loginform input[type=text]::-ms-expand,form.loginform select::-ms-expand,form.loginform textarea::-ms-expand,form.rowlike input[type=text]::-ms-expand,form.rowlike select::-ms-expand,form.rowlike textarea::-ms-expand,form.senaite-form input[type=text]::-ms-expand,form.senaite-form select::-ms-expand,form.senaite-form textarea::-ms-expand,form[action*=-controlpanel] input[type=text]::-ms-expand,form[action*=-controlpanel] select::-ms-expand,form[action*=-controlpanel] textarea::-ms-expand,form[name=analysisrequest_add_form] input[type=text]::-ms-expand,form[name=analysisrequest_add_form] select::-ms-expand,form[name=analysisrequest_add_form] textarea::-ms-expand,form[name=edit_form] div.listing-container input::-ms-expand,form[name=edit_form] div.listing-container select::-ms-expand,form[name=edit_form] input[type=text]::-ms-expand,form[name=edit_form] select::-ms-expand,form[name=edit_form] textarea::-ms-expand,form[name=sampleheader_form] input[type=text]::-ms-expand,form[name=sampleheader_form] select::-ms-expand,form[name=sampleheader_form] textarea::-ms-expand,ul.configlets>li>form input[type=text]::-ms-expand,ul.configlets>li>form select::-ms-expand,ul.configlets>li>form textarea::-ms-expand{background-color:transparent;border:0}.form-control:focus,.portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.loginform input[type=text]:focus,form.loginform select:focus,form.loginform textarea:focus,form.rowlike input[type=text]:focus,form.rowlike select:focus,form.rowlike textarea:focus,form.senaite-form input[type=text]:focus,form.senaite-form select:focus,form.senaite-form textarea:focus,form[action*=-controlpanel] input[type=text]:focus,form[action*=-controlpanel] select:focus,form[action*=-controlpanel] textarea:focus,form[name=analysisrequest_add_form] input[type=text]:focus,form[name=analysisrequest_add_form] select:focus,form[name=analysisrequest_add_form] textarea:focus,form[name=edit_form] div.listing-container input:focus,form[name=edit_form] div.listing-container select:focus,form[name=edit_form] input[type=text]:focus,form[name=edit_form] select:focus,form[name=edit_form] textarea:focus,form[name=sampleheader_form] input[type=text]:focus,form[name=sampleheader_form] select:focus,form[name=sampleheader_form] textarea:focus,ul.configlets>li>form input[type=text]:focus,ul.configlets>li>form select:focus,ul.configlets>li>form textarea:focus{color:#495057;background-color:#fff;border-color:#98c3d8;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.form-control::placeholder,.portlet:not(.portletNavigationTree) input:not([name=submit])::placeholder,form.loginform input[type=text]::placeholder,form.loginform select::placeholder,form.loginform textarea::placeholder,form.rowlike input[type=text]::placeholder,form.rowlike select::placeholder,form.rowlike textarea::placeholder,form.senaite-form input[type=text]::placeholder,form.senaite-form select::placeholder,form.senaite-form textarea::placeholder,form[action*=-controlpanel] input[type=text]::placeholder,form[action*=-controlpanel] select::placeholder,form[action*=-controlpanel] textarea::placeholder,form[name=analysisrequest_add_form] input[type=text]::placeholder,form[name=analysisrequest_add_form] select::placeholder,form[name=analysisrequest_add_form] textarea::placeholder,form[name=edit_form] div.listing-container input::placeholder,form[name=edit_form] div.listing-container select::placeholder,form[name=edit_form] input[type=text]::placeholder,form[name=edit_form] select::placeholder,form[name=edit_form] textarea::placeholder,form[name=sampleheader_form] input[type=text]::placeholder,form[name=sampleheader_form] select::placeholder,form[name=sampleheader_form] textarea::placeholder,ul.configlets>li>form input[type=text]::placeholder,ul.configlets>li>form select::placeholder,ul.configlets>li>form textarea::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly],.portlet:not(.portletNavigationTree) input:disabled:not([name=submit]),.portlet:not(.portletNavigationTree) input[readonly]:not([name=submit]),form.loginform input[readonly][type=text],form.loginform input[type=text]:disabled,form.loginform select:disabled,form.loginform select[readonly],form.loginform textarea:disabled,form.loginform textarea[readonly],form.rowlike input[readonly][type=text],form.rowlike input[type=text]:disabled,form.rowlike select:disabled,form.rowlike select[readonly],form.rowlike textarea:disabled,form.rowlike textarea[readonly],form.senaite-form input[readonly][type=text],form.senaite-form input[type=text]:disabled,form.senaite-form select:disabled,form.senaite-form select[readonly],form.senaite-form textarea:disabled,form.senaite-form textarea[readonly],form[action*=-controlpanel] input[readonly][type=text],form[action*=-controlpanel] input[type=text]:disabled,form[action*=-controlpanel] select:disabled,form[action*=-controlpanel] select[readonly],form[action*=-controlpanel] textarea:disabled,form[action*=-controlpanel] textarea[readonly],form[name=analysisrequest_add_form] input[readonly][type=text],form[name=analysisrequest_add_form] input[type=text]:disabled,form[name=analysisrequest_add_form] select:disabled,form[name=analysisrequest_add_form] select[readonly],form[name=analysisrequest_add_form] textarea:disabled,form[name=analysisrequest_add_form] textarea[readonly],form[name=edit_form] div.listing-container input:disabled,form[name=edit_form] div.listing-container input[readonly],form[name=edit_form] div.listing-container select:disabled,form[name=edit_form] div.listing-container select[readonly],form[name=edit_form] input[readonly][type=text],form[name=edit_form] input[type=text]:disabled,form[name=edit_form] select:disabled,form[name=edit_form] select[readonly],form[name=edit_form] textarea:disabled,form[name=edit_form] textarea[readonly],form[name=sampleheader_form] input[readonly][type=text],form[name=sampleheader_form] input[type=text]:disabled,form[name=sampleheader_form] select:disabled,form[name=sampleheader_form] select[readonly],form[name=sampleheader_form] textarea:disabled,form[name=sampleheader_form] textarea[readonly],ul.configlets>li>form input[readonly][type=text],ul.configlets>li>form input[type=text]:disabled,ul.configlets>li>form select:disabled,ul.configlets>li>form select[readonly],ul.configlets>li>form textarea:disabled,ul.configlets>li>form textarea[readonly]{background-color:#e9ecef;opacity:1}.portlet:not(.portletNavigationTree) input[type=date]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=datetime-local]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=month]:not([name=submit]),.portlet:not(.portletNavigationTree) input[type=time]:not([name=submit]),form.loginform input[type=date][type=text],form.loginform input[type=datetime-local][type=text],form.loginform input[type=month][type=text],form.loginform input[type=time][type=text],form.rowlike input[type=date][type=text],form.rowlike input[type=datetime-local][type=text],form.rowlike input[type=month][type=text],form.rowlike input[type=time][type=text],form.senaite-form input[type=date][type=text],form.senaite-form input[type=datetime-local][type=text],form.senaite-form input[type=month][type=text],form.senaite-form input[type=time][type=text],form[action*=-controlpanel] input[type=date][type=text],form[action*=-controlpanel] input[type=datetime-local][type=text],form[action*=-controlpanel] input[type=month][type=text],form[action*=-controlpanel] input[type=time][type=text],form[name=analysisrequest_add_form] input[type=date][type=text],form[name=analysisrequest_add_form] input[type=datetime-local][type=text],form[name=analysisrequest_add_form] input[type=month][type=text],form[name=analysisrequest_add_form] input[type=time][type=text],form[name=edit_form] div.listing-container input[type=date],form[name=edit_form] div.listing-container input[type=datetime-local],form[name=edit_form] div.listing-container input[type=month],form[name=edit_form] div.listing-container input[type=time],form[name=edit_form] input[type=date][type=text],form[name=edit_form] input[type=datetime-local][type=text],form[name=edit_form] input[type=month][type=text],form[name=edit_form] input[type=time][type=text],form[name=sampleheader_form] input[type=date][type=text],form[name=sampleheader_form] input[type=datetime-local][type=text],form[name=sampleheader_form] input[type=month][type=text],form[name=sampleheader_form] input[type=time][type=text],input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control,ul.configlets>li>form input[type=date][type=text],ul.configlets>li>form input[type=datetime-local][type=text],ul.configlets>li>form input[type=month][type=text],ul.configlets>li>form input[type=time][type=text]{appearance:none}form.loginform select:-moz-focusring,form.rowlike select:-moz-focusring,form.senaite-form select:-moz-focusring,form[action*=-controlpanel] select:-moz-focusring,form[name=analysisrequest_add_form] select:-moz-focusring,form[name=edit_form] div.listing-container select:-moz-focusring,form[name=edit_form] select:-moz-focusring,form[name=sampleheader_form] select:-moz-focusring,select.form-control:-moz-focusring,ul.configlets>li>form select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}form.loginform select:focus::-ms-value,form.rowlike select:focus::-ms-value,form.senaite-form select:focus::-ms-value,form[action*=-controlpanel] select:focus::-ms-value,form[name=analysisrequest_add_form] select:focus::-ms-value,form[name=edit_form] select:focus::-ms-value,form[name=sampleheader_form] select:focus::-ms-value,select.form-control:focus::-ms-value,ul.configlets>li>form select:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#293333;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.portlet:not(.portletNavigationTree) input.form-control-plaintext:not([name=submit]),form.loginform input.form-control-plaintext[type=text],form.loginform select.form-control-plaintext,form.rowlike input.form-control-plaintext[type=text],form.rowlike select.form-control-plaintext,form.senaite-form input.form-control-plaintext[type=text],form.senaite-form select.form-control-plaintext,form[action*=-controlpanel] input.form-control-plaintext[type=text],form[action*=-controlpanel] select.form-control-plaintext,form[name=analysisrequest_add_form] input.form-control-plaintext[type=text],form[name=analysisrequest_add_form] select.form-control-plaintext,form[name=edit_form] input.form-control-plaintext[type=text],form[name=edit_form] select.form-control-plaintext,form[name=sampleheader_form] input.form-control-plaintext[type=text],form[name=sampleheader_form] select.form-control-plaintext,ul.configlets>li>form input.form-control-plaintext[type=text],ul.configlets>li>form select.form-control-plaintext{padding-right:0;padding-left:0}.form-control-sm,.portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform input[type=text],form.loginform select,form.rowlike input[type=text],form.rowlike select,form.senaite-form input[type=text],form.senaite-form select,form[action*=-controlpanel] input[type=text],form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input[type=text],form[name=analysisrequest_add_form] select,form[name=edit_form] input[type=text],form[name=edit_form] select,form[name=sampleheader_form] input[type=text],form[name=sampleheader_form] select,ul.configlets>li>form input[type=text],ul.configlets>li>form select{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}form.loginform select[multiple],form.loginform select[size],form.loginform textarea,form.rowlike select[multiple],form.rowlike select[size],form.rowlike textarea,form.senaite-form select[multiple],form.senaite-form select[size],form.senaite-form textarea,form[action*=-controlpanel] select[multiple],form[action*=-controlpanel] select[size],form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] select[multiple],form[name=analysisrequest_add_form] select[size],form[name=analysisrequest_add_form] textarea,form[name=edit_form] div.listing-container select[multiple],form[name=edit_form] div.listing-container select[size],form[name=edit_form] select[multiple],form[name=edit_form] select[size],form[name=edit_form] textarea,form[name=sampleheader_form] select[multiple],form[name=sampleheader_form] select[size],form[name=sampleheader_form] textarea,select.form-control[multiple],select.form-control[size],textarea.form-control,ul.configlets>li>form select[multiple],ul.configlets>li>form select[size],ul.configlets>li>form textarea{height:auto}.form-group,form.loginform .field,form.rowlike .field,form.senaite-form .field,form[action*=-controlpanel] .field,form[name=analysisrequest_add_form] .field,form[name=edit_form] .field,form[name=sampleheader_form] .field,ul.configlets>li>form .field{margin-bottom:1rem}.form-text,.formHelp{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check,form.loginform .field.ArchetypesBooleanWidget,form.loginform .field.RejectionSetupWidget,form.loginform span.option,form.rowlike .field.ArchetypesBooleanWidget,form.rowlike .field.RejectionSetupWidget,form.rowlike span.option,form.senaite-form .field.ArchetypesBooleanWidget,form.senaite-form .field.RejectionSetupWidget,form.senaite-form span.option,form[action*=-controlpanel] .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .field.RejectionSetupWidget,form[action*=-controlpanel] span.option,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .field.RejectionSetupWidget,form[name=analysisrequest_add_form] span.option,form[name=edit_form] .field.ArchetypesBooleanWidget,form[name=edit_form] .field.RejectionSetupWidget,form[name=edit_form] span.option,form[name=sampleheader_form] .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .field.RejectionSetupWidget,form[name=sampleheader_form] span.option,ul.configlets>li>form .field.ArchetypesBooleanWidget,ul.configlets>li>form .field.RejectionSetupWidget,ul.configlets>li>form span.option{position:relative;display:block;padding-left:1.25rem}.form-check-input,form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],form.loginform .field.RejectionSetupWidget input[type=checkbox],form.loginform span.option input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],form.rowlike .field.RejectionSetupWidget input[type=checkbox],form.rowlike span.option input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],form.senaite-form .field.RejectionSetupWidget input[type=checkbox],form.senaite-form span.option input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],form[action*=-controlpanel] span.option input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],form[name=analysisrequest_add_form] span.option input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],form[name=edit_form] span.option input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],form[name=sampleheader_form] span.option input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],ul.configlets>li>form span.option input[type=checkbox]{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.loginform .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.loginform span.option input[disabled][type=checkbox]~.form-check-label,form.loginform span.option input[type=checkbox]:disabled~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.rowlike .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.rowlike span.option input[disabled][type=checkbox]~.form-check-label,form.rowlike span.option input[type=checkbox]:disabled~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form.senaite-form .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form.senaite-form span.option input[disabled][type=checkbox]~.form-check-label,form.senaite-form span.option input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[action*=-controlpanel] span.option input[disabled][type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=analysisrequest_add_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=edit_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=edit_form] span.option input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,form[name=sampleheader_form] span.option input[disabled][type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:disabled~.form-check-label,ul.configlets>li>form span.option input[disabled][type=checkbox]~.form-check-label,ul.configlets>li>form span.option input[type=checkbox]:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input,.form-check-inline form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.loginform .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.loginform span.option input[type=checkbox],.form-check-inline form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.rowlike .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.rowlike span.option input[type=checkbox],.form-check-inline form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form.senaite-form .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form.senaite-form span.option input[type=checkbox],.form-check-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[action*=-controlpanel] span.option input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=analysisrequest_add_form] span.option input[type=checkbox],.form-check-inline form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=edit_form] span.option input[type=checkbox],.form-check-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],.form-check-inline form[name=sampleheader_form] span.option input[type=checkbox],.form-check-inline ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],.form-check-inline ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],.form-check-inline ul.configlets>li>form span.option input[type=checkbox],form.loginform .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.loginform .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.loginform span.option .form-check-inline input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.rowlike .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.rowlike span.option .form-check-inline input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form.senaite-form .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form.senaite-form span.option .form-check-inline input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[action*=-controlpanel] span.option .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=analysisrequest_add_form] span.option .form-check-inline input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=edit_form] span.option .form-check-inline input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget .form-check-inline input[type=checkbox],form[name=sampleheader_form] span.option .form-check-inline input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget .form-check-inline input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget .form-check-inline input[type=checkbox],ul.configlets>li>form span.option .form-check-inline input[type=checkbox]{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.portlet:not(.portletNavigationTree) .was-validated input:valid:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-valid:not([name=submit]),.was-validated .form-control:valid,.was-validated .portlet:not(.portletNavigationTree) input:valid:not([name=submit]),.was-validated form.loginform input[type=text]:valid,.was-validated form.loginform select:valid,.was-validated form.loginform textarea:valid,.was-validated form.rowlike input[type=text]:valid,.was-validated form.rowlike select:valid,.was-validated form.rowlike textarea:valid,.was-validated form.senaite-form input[type=text]:valid,.was-validated form.senaite-form select:valid,.was-validated form.senaite-form textarea:valid,.was-validated form[action*=-controlpanel] input[type=text]:valid,.was-validated form[action*=-controlpanel] select:valid,.was-validated form[action*=-controlpanel] textarea:valid,.was-validated form[name=analysisrequest_add_form] input[type=text]:valid,.was-validated form[name=analysisrequest_add_form] select:valid,.was-validated form[name=analysisrequest_add_form] textarea:valid,.was-validated form[name=edit_form] div.listing-container input:valid,.was-validated form[name=edit_form] input[type=text]:valid,.was-validated form[name=edit_form] select:valid,.was-validated form[name=edit_form] textarea:valid,.was-validated form[name=sampleheader_form] input[type=text]:valid,.was-validated form[name=sampleheader_form] select:valid,.was-validated form[name=sampleheader_form] textarea:valid,.was-validated ul.configlets>li>form input[type=text]:valid,.was-validated ul.configlets>li>form select:valid,.was-validated ul.configlets>li>form textarea:valid,form.loginform .was-validated input[type=text]:valid,form.loginform .was-validated select:valid,form.loginform .was-validated textarea:valid,form.loginform input.is-valid[type=text],form.loginform select.is-valid,form.loginform textarea.is-valid,form.rowlike .was-validated input[type=text]:valid,form.rowlike .was-validated select:valid,form.rowlike .was-validated textarea:valid,form.rowlike input.is-valid[type=text],form.rowlike select.is-valid,form.rowlike textarea.is-valid,form.senaite-form .was-validated input[type=text]:valid,form.senaite-form .was-validated select:valid,form.senaite-form .was-validated textarea:valid,form.senaite-form input.is-valid[type=text],form.senaite-form select.is-valid,form.senaite-form textarea.is-valid,form[action*=-controlpanel] .was-validated input[type=text]:valid,form[action*=-controlpanel] .was-validated select:valid,form[action*=-controlpanel] .was-validated textarea:valid,form[action*=-controlpanel] input.is-valid[type=text],form[action*=-controlpanel] select.is-valid,form[action*=-controlpanel] textarea.is-valid,form[name=analysisrequest_add_form] .was-validated input[type=text]:valid,form[name=analysisrequest_add_form] .was-validated select:valid,form[name=analysisrequest_add_form] .was-validated textarea:valid,form[name=analysisrequest_add_form] input.is-valid[type=text],form[name=analysisrequest_add_form] select.is-valid,form[name=analysisrequest_add_form] textarea.is-valid,form[name=edit_form] .was-validated input[type=text]:valid,form[name=edit_form] .was-validated select:valid,form[name=edit_form] .was-validated textarea:valid,form[name=edit_form] div.listing-container .was-validated input:valid,form[name=edit_form] div.listing-container input.is-valid,form[name=edit_form] div.listing-container select.is-valid,form[name=edit_form] input.is-valid[type=text],form[name=edit_form] select.is-valid,form[name=edit_form] textarea.is-valid,form[name=sampleheader_form] .was-validated input[type=text]:valid,form[name=sampleheader_form] .was-validated select:valid,form[name=sampleheader_form] .was-validated textarea:valid,form[name=sampleheader_form] input.is-valid[type=text],form[name=sampleheader_form] select.is-valid,form[name=sampleheader_form] textarea.is-valid,ul.configlets>li>form .was-validated input[type=text]:valid,ul.configlets>li>form .was-validated select:valid,ul.configlets>li>form .was-validated textarea:valid,ul.configlets>li>form input.is-valid[type=text],ul.configlets>li>form select.is-valid,ul.configlets>li>form textarea.is-valid{border-color:#28a745;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.portlet:not(.portletNavigationTree) .was-validated input:valid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-valid:focus:not([name=submit]),.was-validated .form-control:valid:focus,.was-validated .portlet:not(.portletNavigationTree) input:valid:focus:not([name=submit]),.was-validated form.loginform input[type=text]:valid:focus,.was-validated form.loginform select:valid:focus,.was-validated form.loginform textarea:valid:focus,.was-validated form.rowlike input[type=text]:valid:focus,.was-validated form.rowlike select:valid:focus,.was-validated form.rowlike textarea:valid:focus,.was-validated form.senaite-form input[type=text]:valid:focus,.was-validated form.senaite-form select:valid:focus,.was-validated form.senaite-form textarea:valid:focus,.was-validated form[action*=-controlpanel] input[type=text]:valid:focus,.was-validated form[action*=-controlpanel] select:valid:focus,.was-validated form[action*=-controlpanel] textarea:valid:focus,.was-validated form[name=analysisrequest_add_form] input[type=text]:valid:focus,.was-validated form[name=analysisrequest_add_form] select:valid:focus,.was-validated form[name=analysisrequest_add_form] textarea:valid:focus,.was-validated form[name=edit_form] div.listing-container input:valid:focus,.was-validated form[name=edit_form] input[type=text]:valid:focus,.was-validated form[name=edit_form] select:valid:focus,.was-validated form[name=edit_form] textarea:valid:focus,.was-validated form[name=sampleheader_form] input[type=text]:valid:focus,.was-validated form[name=sampleheader_form] select:valid:focus,.was-validated form[name=sampleheader_form] textarea:valid:focus,.was-validated ul.configlets>li>form input[type=text]:valid:focus,.was-validated ul.configlets>li>form select:valid:focus,.was-validated ul.configlets>li>form textarea:valid:focus,form.loginform .was-validated input[type=text]:valid:focus,form.loginform .was-validated select:valid:focus,form.loginform .was-validated textarea:valid:focus,form.loginform input.is-valid[type=text]:focus,form.loginform select.is-valid:focus,form.loginform textarea.is-valid:focus,form.rowlike .was-validated input[type=text]:valid:focus,form.rowlike .was-validated select:valid:focus,form.rowlike .was-validated textarea:valid:focus,form.rowlike input.is-valid[type=text]:focus,form.rowlike select.is-valid:focus,form.rowlike textarea.is-valid:focus,form.senaite-form .was-validated input[type=text]:valid:focus,form.senaite-form .was-validated select:valid:focus,form.senaite-form .was-validated textarea:valid:focus,form.senaite-form input.is-valid[type=text]:focus,form.senaite-form select.is-valid:focus,form.senaite-form textarea.is-valid:focus,form[action*=-controlpanel] .was-validated input[type=text]:valid:focus,form[action*=-controlpanel] .was-validated select:valid:focus,form[action*=-controlpanel] .was-validated textarea:valid:focus,form[action*=-controlpanel] input.is-valid[type=text]:focus,form[action*=-controlpanel] select.is-valid:focus,form[action*=-controlpanel] textarea.is-valid:focus,form[name=analysisrequest_add_form] .was-validated input[type=text]:valid:focus,form[name=analysisrequest_add_form] .was-validated select:valid:focus,form[name=analysisrequest_add_form] .was-validated textarea:valid:focus,form[name=analysisrequest_add_form] input.is-valid[type=text]:focus,form[name=analysisrequest_add_form] select.is-valid:focus,form[name=analysisrequest_add_form] textarea.is-valid:focus,form[name=edit_form] .was-validated input[type=text]:valid:focus,form[name=edit_form] .was-validated select:valid:focus,form[name=edit_form] .was-validated textarea:valid:focus,form[name=edit_form] div.listing-container .was-validated input:valid:focus,form[name=edit_form] div.listing-container input.is-valid:focus,form[name=edit_form] input.is-valid[type=text]:focus,form[name=edit_form] select.is-valid:focus,form[name=edit_form] textarea.is-valid:focus,form[name=sampleheader_form] .was-validated input[type=text]:valid:focus,form[name=sampleheader_form] .was-validated select:valid:focus,form[name=sampleheader_form] .was-validated textarea:valid:focus,form[name=sampleheader_form] input.is-valid[type=text]:focus,form[name=sampleheader_form] select.is-valid:focus,form[name=sampleheader_form] textarea.is-valid:focus,ul.configlets>li>form .was-validated input[type=text]:valid:focus,ul.configlets>li>form .was-validated select:valid:focus,ul.configlets>li>form .was-validated textarea:valid:focus,ul.configlets>li>form input.is-valid[type=text]:focus,ul.configlets>li>form select.is-valid:focus,ul.configlets>li>form textarea.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated form.loginform select:valid,.was-validated form.rowlike select:valid,.was-validated form.senaite-form select:valid,.was-validated form[action*=-controlpanel] select:valid,.was-validated form[name=analysisrequest_add_form] select:valid,.was-validated form[name=edit_form] select:valid,.was-validated form[name=sampleheader_form] select:valid,.was-validated select.form-control:valid,.was-validated ul.configlets>li>form select:valid,form.loginform .was-validated select:valid,form.loginform select.is-valid,form.rowlike .was-validated select:valid,form.rowlike select.is-valid,form.senaite-form .was-validated select:valid,form.senaite-form select.is-valid,form[action*=-controlpanel] .was-validated select:valid,form[action*=-controlpanel] select.is-valid,form[name=analysisrequest_add_form] .was-validated select:valid,form[name=analysisrequest_add_form] select.is-valid,form[name=edit_form] .was-validated select:valid,form[name=edit_form] div.listing-container select.is-valid,form[name=edit_form] select.is-valid,form[name=sampleheader_form] .was-validated select:valid,form[name=sampleheader_form] select.is-valid,select.form-control.is-valid,ul.configlets>li>form .was-validated select:valid,ul.configlets>li>form select.is-valid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated form.loginform textarea:valid,.was-validated form.rowlike textarea:valid,.was-validated form.senaite-form textarea:valid,.was-validated form[action*=-controlpanel] textarea:valid,.was-validated form[name=analysisrequest_add_form] textarea:valid,.was-validated form[name=edit_form] textarea:valid,.was-validated form[name=sampleheader_form] textarea:valid,.was-validated textarea.form-control:valid,.was-validated ul.configlets>li>form textarea:valid,form.loginform .was-validated textarea:valid,form.loginform textarea.is-valid,form.rowlike .was-validated textarea:valid,form.rowlike textarea.is-valid,form.senaite-form .was-validated textarea:valid,form.senaite-form textarea.is-valid,form[action*=-controlpanel] .was-validated textarea:valid,form[action*=-controlpanel] textarea.is-valid,form[name=analysisrequest_add_form] .was-validated textarea:valid,form[name=analysisrequest_add_form] textarea.is-valid,form[name=edit_form] .was-validated textarea:valid,form[name=edit_form] textarea.is-valid,form[name=sampleheader_form] .was-validated textarea:valid,form[name=sampleheader_form] textarea.is-valid,textarea.form-control.is-valid,ul.configlets>li>form .was-validated textarea:valid,ul.configlets>li>form textarea.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.loginform span.option input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.rowlike span.option input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.form-check-label,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.loginform span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.loginform span.option input.is-valid[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.rowlike span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.rowlike span.option input.is-valid[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.form-check-label,form.senaite-form span.option input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=edit_form] span.option input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.form-check-label,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.form-check-label,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.loginform span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.loginform span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.rowlike span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.rowlike span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form.senaite-form span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=edit_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.valid-feedback,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:valid~.valid-tooltip,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.valid-feedback,.was-validated ul.configlets>li>form span.option input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.loginform .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.loginform .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.loginform span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.loginform span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.loginform span.option input.is-valid[type=checkbox]~.valid-feedback,form.loginform span.option input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.rowlike .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.rowlike .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.rowlike span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.rowlike span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.rowlike span.option input.is-valid[type=checkbox]~.valid-feedback,form.rowlike span.option input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form.senaite-form span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form.senaite-form span.option input.is-valid[type=checkbox]~.valid-feedback,form.senaite-form span.option input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.valid-feedback,form[action*=-controlpanel] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=analysisrequest_add_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=edit_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=edit_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=edit_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.valid-feedback,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.valid-feedback,form[name=sampleheader_form] span.option input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form .field.RejectionSetupWidget input.is-valid[type=checkbox]~.valid-tooltip,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.valid-feedback,ul.configlets>li>form span.option .was-validated input[type=checkbox]:valid~.valid-tooltip,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.valid-feedback,ul.configlets>li>form span.option input.is-valid[type=checkbox]~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label:before,.was-validated .custom-control-input:valid~.custom-control-label:before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label:before,.was-validated .custom-control-input:valid:checked~.custom-control-label:before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label:before,.was-validated .custom-control-input:valid:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,form.loginform .field.error input~.invalid-feedback,form.loginform .field.error input~.invalid-tooltip,form.loginform .field.error select~.invalid-feedback,form.loginform .field.error select~.invalid-tooltip,form.loginform .field.error textarea~.invalid-feedback,form.loginform .field.error textarea~.invalid-tooltip,form.rowlike .field.error input~.invalid-feedback,form.rowlike .field.error input~.invalid-tooltip,form.rowlike .field.error select~.invalid-feedback,form.rowlike .field.error select~.invalid-tooltip,form.rowlike .field.error textarea~.invalid-feedback,form.rowlike .field.error textarea~.invalid-tooltip,form.senaite-form .field.error input~.invalid-feedback,form.senaite-form .field.error input~.invalid-tooltip,form.senaite-form .field.error select~.invalid-feedback,form.senaite-form .field.error select~.invalid-tooltip,form.senaite-form .field.error textarea~.invalid-feedback,form.senaite-form .field.error textarea~.invalid-tooltip,form[action*=-controlpanel] .field.error input~.invalid-feedback,form[action*=-controlpanel] .field.error input~.invalid-tooltip,form[action*=-controlpanel] .field.error select~.invalid-feedback,form[action*=-controlpanel] .field.error select~.invalid-tooltip,form[action*=-controlpanel] .field.error textarea~.invalid-feedback,form[action*=-controlpanel] .field.error textarea~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error select~.invalid-feedback,form[name=analysisrequest_add_form] .field.error select~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error textarea~.invalid-feedback,form[name=analysisrequest_add_form] .field.error textarea~.invalid-tooltip,form[name=edit_form] .field.error input~.invalid-feedback,form[name=edit_form] .field.error input~.invalid-tooltip,form[name=edit_form] .field.error select~.invalid-feedback,form[name=edit_form] .field.error select~.invalid-tooltip,form[name=edit_form] .field.error textarea~.invalid-feedback,form[name=edit_form] .field.error textarea~.invalid-tooltip,form[name=sampleheader_form] .field.error input~.invalid-feedback,form[name=sampleheader_form] .field.error input~.invalid-tooltip,form[name=sampleheader_form] .field.error select~.invalid-feedback,form[name=sampleheader_form] .field.error select~.invalid-tooltip,form[name=sampleheader_form] .field.error textarea~.invalid-feedback,form[name=sampleheader_form] .field.error textarea~.invalid-tooltip,ul.configlets>li>form .field.error input~.invalid-feedback,ul.configlets>li>form .field.error input~.invalid-tooltip,ul.configlets>li>form .field.error select~.invalid-feedback,ul.configlets>li>form .field.error select~.invalid-tooltip,ul.configlets>li>form .field.error textarea~.invalid-feedback,ul.configlets>li>form .field.error textarea~.invalid-tooltip{display:block}.form-control.is-invalid,.portlet:not(.portletNavigationTree) .was-validated input:invalid:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .field.error input:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-invalid:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .field.error input:not([name=submit]),.was-validated .form-control:invalid,.was-validated .portlet:not(.portletNavigationTree) input:invalid:not([name=submit]),.was-validated form.loginform input[type=text]:invalid,.was-validated form.loginform select:invalid,.was-validated form.loginform textarea:invalid,.was-validated form.rowlike input[type=text]:invalid,.was-validated form.rowlike select:invalid,.was-validated form.rowlike textarea:invalid,.was-validated form.senaite-form input[type=text]:invalid,.was-validated form.senaite-form select:invalid,.was-validated form.senaite-form textarea:invalid,.was-validated form[action*=-controlpanel] input[type=text]:invalid,.was-validated form[action*=-controlpanel] select:invalid,.was-validated form[action*=-controlpanel] textarea:invalid,.was-validated form[name=analysisrequest_add_form] input[type=text]:invalid,.was-validated form[name=analysisrequest_add_form] select:invalid,.was-validated form[name=analysisrequest_add_form] textarea:invalid,.was-validated form[name=edit_form] div.listing-container input:invalid,.was-validated form[name=edit_form] input[type=text]:invalid,.was-validated form[name=edit_form] select:invalid,.was-validated form[name=edit_form] textarea:invalid,.was-validated form[name=sampleheader_form] input[type=text]:invalid,.was-validated form[name=sampleheader_form] select:invalid,.was-validated form[name=sampleheader_form] textarea:invalid,.was-validated ul.configlets>li>form input[type=text]:invalid,.was-validated ul.configlets>li>form select:invalid,.was-validated ul.configlets>li>form textarea:invalid,form.loginform .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.loginform .field.error form.rowlike input[type=text],form.loginform .field.error form.rowlike select,form.loginform .field.error form.rowlike textarea,form.loginform .field.error form.senaite-form input[type=text],form.loginform .field.error form.senaite-form select,form.loginform .field.error form.senaite-form textarea,form.loginform .field.error form[action*=-controlpanel] input[type=text],form.loginform .field.error form[action*=-controlpanel] select,form.loginform .field.error form[action*=-controlpanel] textarea,form.loginform .field.error form[name=analysisrequest_add_form] input[type=text],form.loginform .field.error form[name=analysisrequest_add_form] select,form.loginform .field.error form[name=analysisrequest_add_form] textarea,form.loginform .field.error form[name=edit_form] div.listing-container input,form.loginform .field.error form[name=edit_form] div.listing-container select,form.loginform .field.error form[name=edit_form] input[type=text],form.loginform .field.error form[name=edit_form] select,form.loginform .field.error form[name=edit_form] textarea,form.loginform .field.error form[name=sampleheader_form] input[type=text],form.loginform .field.error form[name=sampleheader_form] select,form.loginform .field.error form[name=sampleheader_form] textarea,form.loginform .field.error input.form-control,form.loginform .field.error input[type=text],form.loginform .field.error select,form.loginform .field.error select.form-control,form.loginform .field.error textarea,form.loginform .field.error textarea.form-control,form.loginform .field.error ul.configlets>li>form input[type=text],form.loginform .field.error ul.configlets>li>form select,form.loginform .field.error ul.configlets>li>form textarea,form.loginform .was-validated input[type=text]:invalid,form.loginform .was-validated select:invalid,form.loginform .was-validated textarea:invalid,form.loginform form.rowlike .field.error input[type=text],form.loginform form.rowlike .field.error select,form.loginform form.rowlike .field.error textarea,form.loginform form.senaite-form .field.error input[type=text],form.loginform form.senaite-form .field.error select,form.loginform form.senaite-form .field.error textarea,form.loginform form[action*=-controlpanel] .field.error input[type=text],form.loginform form[action*=-controlpanel] .field.error select,form.loginform form[action*=-controlpanel] .field.error textarea,form.loginform form[name=analysisrequest_add_form] .field.error input[type=text],form.loginform form[name=analysisrequest_add_form] .field.error select,form.loginform form[name=analysisrequest_add_form] .field.error textarea,form.loginform form[name=edit_form] .field.error input[type=text],form.loginform form[name=edit_form] .field.error select,form.loginform form[name=edit_form] .field.error textarea,form.loginform form[name=sampleheader_form] .field.error input[type=text],form.loginform form[name=sampleheader_form] .field.error select,form.loginform form[name=sampleheader_form] .field.error textarea,form.loginform input.is-invalid[type=text],form.loginform select.is-invalid,form.loginform textarea.is-invalid,form.loginform ul.configlets>li>form .field.error input[type=text],form.loginform ul.configlets>li>form .field.error select,form.loginform ul.configlets>li>form .field.error textarea,form.rowlike .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.rowlike .field.error form.loginform input[type=text],form.rowlike .field.error form.loginform select,form.rowlike .field.error form.loginform textarea,form.rowlike .field.error form.senaite-form input[type=text],form.rowlike .field.error form.senaite-form select,form.rowlike .field.error form.senaite-form textarea,form.rowlike .field.error form[action*=-controlpanel] input[type=text],form.rowlike .field.error form[action*=-controlpanel] select,form.rowlike .field.error form[action*=-controlpanel] textarea,form.rowlike .field.error form[name=analysisrequest_add_form] input[type=text],form.rowlike .field.error form[name=analysisrequest_add_form] select,form.rowlike .field.error form[name=analysisrequest_add_form] textarea,form.rowlike .field.error form[name=edit_form] div.listing-container input,form.rowlike .field.error form[name=edit_form] div.listing-container select,form.rowlike .field.error form[name=edit_form] input[type=text],form.rowlike .field.error form[name=edit_form] select,form.rowlike .field.error form[name=edit_form] textarea,form.rowlike .field.error form[name=sampleheader_form] input[type=text],form.rowlike .field.error form[name=sampleheader_form] select,form.rowlike .field.error form[name=sampleheader_form] textarea,form.rowlike .field.error input.form-control,form.rowlike .field.error input[type=text],form.rowlike .field.error select,form.rowlike .field.error select.form-control,form.rowlike .field.error textarea,form.rowlike .field.error textarea.form-control,form.rowlike .field.error ul.configlets>li>form input[type=text],form.rowlike .field.error ul.configlets>li>form select,form.rowlike .field.error ul.configlets>li>form textarea,form.rowlike .was-validated input[type=text]:invalid,form.rowlike .was-validated select:invalid,form.rowlike .was-validated textarea:invalid,form.rowlike form.loginform .field.error input[type=text],form.rowlike form.loginform .field.error select,form.rowlike form.loginform .field.error textarea,form.rowlike form.senaite-form .field.error input[type=text],form.rowlike form.senaite-form .field.error select,form.rowlike form.senaite-form .field.error textarea,form.rowlike form[action*=-controlpanel] .field.error input[type=text],form.rowlike form[action*=-controlpanel] .field.error select,form.rowlike form[action*=-controlpanel] .field.error textarea,form.rowlike form[name=analysisrequest_add_form] .field.error input[type=text],form.rowlike form[name=analysisrequest_add_form] .field.error select,form.rowlike form[name=analysisrequest_add_form] .field.error textarea,form.rowlike form[name=edit_form] .field.error input[type=text],form.rowlike form[name=edit_form] .field.error select,form.rowlike form[name=edit_form] .field.error textarea,form.rowlike form[name=sampleheader_form] .field.error input[type=text],form.rowlike form[name=sampleheader_form] .field.error select,form.rowlike form[name=sampleheader_form] .field.error textarea,form.rowlike input.is-invalid[type=text],form.rowlike select.is-invalid,form.rowlike textarea.is-invalid,form.rowlike ul.configlets>li>form .field.error input[type=text],form.rowlike ul.configlets>li>form .field.error select,form.rowlike ul.configlets>li>form .field.error textarea,form.senaite-form .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form.senaite-form .field.error form.loginform input[type=text],form.senaite-form .field.error form.loginform select,form.senaite-form .field.error form.loginform textarea,form.senaite-form .field.error form.rowlike input[type=text],form.senaite-form .field.error form.rowlike select,form.senaite-form .field.error form.rowlike textarea,form.senaite-form .field.error form[action*=-controlpanel] input[type=text],form.senaite-form .field.error form[action*=-controlpanel] select,form.senaite-form .field.error form[action*=-controlpanel] textarea,form.senaite-form .field.error form[name=analysisrequest_add_form] input[type=text],form.senaite-form .field.error form[name=analysisrequest_add_form] select,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea,form.senaite-form .field.error form[name=edit_form] div.listing-container input,form.senaite-form .field.error form[name=edit_form] div.listing-container select,form.senaite-form .field.error form[name=edit_form] input[type=text],form.senaite-form .field.error form[name=edit_form] select,form.senaite-form .field.error form[name=edit_form] textarea,form.senaite-form .field.error form[name=sampleheader_form] input[type=text],form.senaite-form .field.error form[name=sampleheader_form] select,form.senaite-form .field.error form[name=sampleheader_form] textarea,form.senaite-form .field.error input.form-control,form.senaite-form .field.error input[type=text],form.senaite-form .field.error select,form.senaite-form .field.error select.form-control,form.senaite-form .field.error textarea,form.senaite-form .field.error textarea.form-control,form.senaite-form .field.error ul.configlets>li>form input[type=text],form.senaite-form .field.error ul.configlets>li>form select,form.senaite-form .field.error ul.configlets>li>form textarea,form.senaite-form .was-validated input[type=text]:invalid,form.senaite-form .was-validated select:invalid,form.senaite-form .was-validated textarea:invalid,form.senaite-form form.loginform .field.error input[type=text],form.senaite-form form.loginform .field.error select,form.senaite-form form.loginform .field.error textarea,form.senaite-form form.rowlike .field.error input[type=text],form.senaite-form form.rowlike .field.error select,form.senaite-form form.rowlike .field.error textarea,form.senaite-form form[action*=-controlpanel] .field.error input[type=text],form.senaite-form form[action*=-controlpanel] .field.error select,form.senaite-form form[action*=-controlpanel] .field.error textarea,form.senaite-form form[name=analysisrequest_add_form] .field.error input[type=text],form.senaite-form form[name=analysisrequest_add_form] .field.error select,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea,form.senaite-form form[name=edit_form] .field.error input[type=text],form.senaite-form form[name=edit_form] .field.error select,form.senaite-form form[name=edit_form] .field.error textarea,form.senaite-form form[name=sampleheader_form] .field.error input[type=text],form.senaite-form form[name=sampleheader_form] .field.error select,form.senaite-form form[name=sampleheader_form] .field.error textarea,form.senaite-form input.is-invalid[type=text],form.senaite-form select.is-invalid,form.senaite-form textarea.is-invalid,form.senaite-form ul.configlets>li>form .field.error input[type=text],form.senaite-form ul.configlets>li>form .field.error select,form.senaite-form ul.configlets>li>form .field.error textarea,form[action*=-controlpanel] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[action*=-controlpanel] .field.error form.loginform input[type=text],form[action*=-controlpanel] .field.error form.loginform select,form[action*=-controlpanel] .field.error form.loginform textarea,form[action*=-controlpanel] .field.error form.rowlike input[type=text],form[action*=-controlpanel] .field.error form.rowlike select,form[action*=-controlpanel] .field.error form.rowlike textarea,form[action*=-controlpanel] .field.error form.senaite-form input[type=text],form[action*=-controlpanel] .field.error form.senaite-form select,form[action*=-controlpanel] .field.error form.senaite-form textarea,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] input[type=text],form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container input,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container select,form[action*=-controlpanel] .field.error form[name=edit_form] input[type=text],form[action*=-controlpanel] .field.error form[name=edit_form] select,form[action*=-controlpanel] .field.error form[name=edit_form] textarea,form[action*=-controlpanel] .field.error form[name=sampleheader_form] input[type=text],form[action*=-controlpanel] .field.error form[name=sampleheader_form] select,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea,form[action*=-controlpanel] .field.error input.form-control,form[action*=-controlpanel] .field.error input[type=text],form[action*=-controlpanel] .field.error select,form[action*=-controlpanel] .field.error select.form-control,form[action*=-controlpanel] .field.error textarea,form[action*=-controlpanel] .field.error textarea.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form input[type=text],form[action*=-controlpanel] .field.error ul.configlets>li>form select,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea,form[action*=-controlpanel] .was-validated input[type=text]:invalid,form[action*=-controlpanel] .was-validated select:invalid,form[action*=-controlpanel] .was-validated textarea:invalid,form[action*=-controlpanel] form.loginform .field.error input[type=text],form[action*=-controlpanel] form.loginform .field.error select,form[action*=-controlpanel] form.loginform .field.error textarea,form[action*=-controlpanel] form.rowlike .field.error input[type=text],form[action*=-controlpanel] form.rowlike .field.error select,form[action*=-controlpanel] form.rowlike .field.error textarea,form[action*=-controlpanel] form.senaite-form .field.error input[type=text],form[action*=-controlpanel] form.senaite-form .field.error select,form[action*=-controlpanel] form.senaite-form .field.error textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea,form[action*=-controlpanel] form[name=edit_form] .field.error input[type=text],form[action*=-controlpanel] form[name=edit_form] .field.error select,form[action*=-controlpanel] form[name=edit_form] .field.error textarea,form[action*=-controlpanel] form[name=sampleheader_form] .field.error input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .field.error select,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea,form[action*=-controlpanel] input.is-invalid[type=text],form[action*=-controlpanel] select.is-invalid,form[action*=-controlpanel] textarea.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error input[type=text],form[action*=-controlpanel] ul.configlets>li>form .field.error select,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea,form[name=analysisrequest_add_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=analysisrequest_add_form] .field.error form.loginform input[type=text],form[name=analysisrequest_add_form] .field.error form.loginform select,form[name=analysisrequest_add_form] .field.error form.loginform textarea,form[name=analysisrequest_add_form] .field.error form.rowlike input[type=text],form[name=analysisrequest_add_form] .field.error form.rowlike select,form[name=analysisrequest_add_form] .field.error form.rowlike textarea,form[name=analysisrequest_add_form] .field.error form.senaite-form input[type=text],form[name=analysisrequest_add_form] .field.error form.senaite-form select,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] input[type=text],form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container input,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] input[type=text],form[name=analysisrequest_add_form] .field.error form[name=edit_form] select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] input[type=text],form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea,form[name=analysisrequest_add_form] .field.error input.form-control,form[name=analysisrequest_add_form] .field.error input[type=text],form[name=analysisrequest_add_form] .field.error select,form[name=analysisrequest_add_form] .field.error select.form-control,form[name=analysisrequest_add_form] .field.error textarea,form[name=analysisrequest_add_form] .field.error textarea.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form input[type=text],form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea,form[name=analysisrequest_add_form] .was-validated input[type=text]:invalid,form[name=analysisrequest_add_form] .was-validated select:invalid,form[name=analysisrequest_add_form] .was-validated textarea:invalid,form[name=analysisrequest_add_form] form.loginform .field.error input[type=text],form[name=analysisrequest_add_form] form.loginform .field.error select,form[name=analysisrequest_add_form] form.loginform .field.error textarea,form[name=analysisrequest_add_form] form.rowlike .field.error input[type=text],form[name=analysisrequest_add_form] form.rowlike .field.error select,form[name=analysisrequest_add_form] form.rowlike .field.error textarea,form[name=analysisrequest_add_form] form.senaite-form .field.error input[type=text],form[name=analysisrequest_add_form] form.senaite-form .field.error select,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea,form[name=analysisrequest_add_form] form[name=edit_form] .field.error input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .field.error select,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea,form[name=analysisrequest_add_form] input.is-invalid[type=text],form[name=analysisrequest_add_form] select.is-invalid,form[name=analysisrequest_add_form] textarea.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea,form[name=edit_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=edit_form] .field.error div.listing-container input,form[name=edit_form] .field.error div.listing-container select,form[name=edit_form] .field.error form.loginform input[type=text],form[name=edit_form] .field.error form.loginform select,form[name=edit_form] .field.error form.loginform textarea,form[name=edit_form] .field.error form.rowlike input[type=text],form[name=edit_form] .field.error form.rowlike select,form[name=edit_form] .field.error form.rowlike textarea,form[name=edit_form] .field.error form.senaite-form input[type=text],form[name=edit_form] .field.error form.senaite-form select,form[name=edit_form] .field.error form.senaite-form textarea,form[name=edit_form] .field.error form[action*=-controlpanel] input[type=text],form[name=edit_form] .field.error form[action*=-controlpanel] select,form[name=edit_form] .field.error form[action*=-controlpanel] textarea,form[name=edit_form] .field.error form[name=analysisrequest_add_form] input[type=text],form[name=edit_form] .field.error form[name=analysisrequest_add_form] select,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=edit_form] .field.error form[name=sampleheader_form] input[type=text],form[name=edit_form] .field.error form[name=sampleheader_form] select,form[name=edit_form] .field.error form[name=sampleheader_form] textarea,form[name=edit_form] .field.error input.form-control,form[name=edit_form] .field.error input[type=text],form[name=edit_form] .field.error select,form[name=edit_form] .field.error select.form-control,form[name=edit_form] .field.error textarea,form[name=edit_form] .field.error textarea.form-control,form[name=edit_form] .field.error ul.configlets>li>form input[type=text],form[name=edit_form] .field.error ul.configlets>li>form select,form[name=edit_form] .field.error ul.configlets>li>form textarea,form[name=edit_form] .was-validated input[type=text]:invalid,form[name=edit_form] .was-validated select:invalid,form[name=edit_form] .was-validated textarea:invalid,form[name=edit_form] div.listing-container .field.error input,form[name=edit_form] div.listing-container .field.error select,form[name=edit_form] div.listing-container .was-validated input:invalid,form[name=edit_form] div.listing-container form.loginform .field.error input,form[name=edit_form] div.listing-container form.loginform .field.error select,form[name=edit_form] div.listing-container form.rowlike .field.error input,form[name=edit_form] div.listing-container form.rowlike .field.error select,form[name=edit_form] div.listing-container form.senaite-form .field.error input,form[name=edit_form] div.listing-container form.senaite-form .field.error select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error select,form[name=edit_form] div.listing-container input.is-invalid,form[name=edit_form] div.listing-container select.is-invalid,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error input,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error select,form[name=edit_form] form.loginform .field.error input[type=text],form[name=edit_form] form.loginform .field.error select,form[name=edit_form] form.loginform .field.error textarea,form[name=edit_form] form.rowlike .field.error input[type=text],form[name=edit_form] form.rowlike .field.error select,form[name=edit_form] form.rowlike .field.error textarea,form[name=edit_form] form.senaite-form .field.error input[type=text],form[name=edit_form] form.senaite-form .field.error select,form[name=edit_form] form.senaite-form .field.error textarea,form[name=edit_form] form[action*=-controlpanel] .field.error input[type=text],form[name=edit_form] form[action*=-controlpanel] .field.error select,form[name=edit_form] form[action*=-controlpanel] .field.error textarea,form[name=edit_form] form[name=analysisrequest_add_form] .field.error input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=edit_form] form[name=sampleheader_form] .field.error input[type=text],form[name=edit_form] form[name=sampleheader_form] .field.error select,form[name=edit_form] form[name=sampleheader_form] .field.error textarea,form[name=edit_form] input.is-invalid[type=text],form[name=edit_form] select.is-invalid,form[name=edit_form] textarea.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error input[type=text],form[name=edit_form] ul.configlets>li>form .field.error select,form[name=edit_form] ul.configlets>li>form .field.error textarea,form[name=sampleheader_form] .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),form[name=sampleheader_form] .field.error form.loginform input[type=text],form[name=sampleheader_form] .field.error form.loginform select,form[name=sampleheader_form] .field.error form.loginform textarea,form[name=sampleheader_form] .field.error form.rowlike input[type=text],form[name=sampleheader_form] .field.error form.rowlike select,form[name=sampleheader_form] .field.error form.rowlike textarea,form[name=sampleheader_form] .field.error form.senaite-form input[type=text],form[name=sampleheader_form] .field.error form.senaite-form select,form[name=sampleheader_form] .field.error form.senaite-form textarea,form[name=sampleheader_form] .field.error form[action*=-controlpanel] input[type=text],form[name=sampleheader_form] .field.error form[action*=-controlpanel] select,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] input[type=text],form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container input,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container select,form[name=sampleheader_form] .field.error form[name=edit_form] input[type=text],form[name=sampleheader_form] .field.error form[name=edit_form] select,form[name=sampleheader_form] .field.error form[name=edit_form] textarea,form[name=sampleheader_form] .field.error input.form-control,form[name=sampleheader_form] .field.error input[type=text],form[name=sampleheader_form] .field.error select,form[name=sampleheader_form] .field.error select.form-control,form[name=sampleheader_form] .field.error textarea,form[name=sampleheader_form] .field.error textarea.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form input[type=text],form[name=sampleheader_form] .field.error ul.configlets>li>form select,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea,form[name=sampleheader_form] .was-validated input[type=text]:invalid,form[name=sampleheader_form] .was-validated select:invalid,form[name=sampleheader_form] .was-validated textarea:invalid,form[name=sampleheader_form] form.loginform .field.error input[type=text],form[name=sampleheader_form] form.loginform .field.error select,form[name=sampleheader_form] form.loginform .field.error textarea,form[name=sampleheader_form] form.rowlike .field.error input[type=text],form[name=sampleheader_form] form.rowlike .field.error select,form[name=sampleheader_form] form.rowlike .field.error textarea,form[name=sampleheader_form] form.senaite-form .field.error input[type=text],form[name=sampleheader_form] form.senaite-form .field.error select,form[name=sampleheader_form] form.senaite-form .field.error textarea,form[name=sampleheader_form] form[action*=-controlpanel] .field.error input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .field.error select,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=sampleheader_form] form[name=edit_form] .field.error input[type=text],form[name=sampleheader_form] form[name=edit_form] .field.error select,form[name=sampleheader_form] form[name=edit_form] .field.error textarea,form[name=sampleheader_form] input.is-invalid[type=text],form[name=sampleheader_form] select.is-invalid,form[name=sampleheader_form] textarea.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error input[type=text],form[name=sampleheader_form] ul.configlets>li>form .field.error select,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error .portlet:not(.portletNavigationTree) input:not([name=submit]),ul.configlets>li>form .field.error form.loginform input[type=text],ul.configlets>li>form .field.error form.loginform select,ul.configlets>li>form .field.error form.loginform textarea,ul.configlets>li>form .field.error form.rowlike input[type=text],ul.configlets>li>form .field.error form.rowlike select,ul.configlets>li>form .field.error form.rowlike textarea,ul.configlets>li>form .field.error form.senaite-form input[type=text],ul.configlets>li>form .field.error form.senaite-form select,ul.configlets>li>form .field.error form.senaite-form textarea,ul.configlets>li>form .field.error form[action*=-controlpanel] input[type=text],ul.configlets>li>form .field.error form[action*=-controlpanel] select,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] input[type=text],ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container input,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container select,ul.configlets>li>form .field.error form[name=edit_form] input[type=text],ul.configlets>li>form .field.error form[name=edit_form] select,ul.configlets>li>form .field.error form[name=edit_form] textarea,ul.configlets>li>form .field.error form[name=sampleheader_form] input[type=text],ul.configlets>li>form .field.error form[name=sampleheader_form] select,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea,ul.configlets>li>form .field.error input.form-control,ul.configlets>li>form .field.error input[type=text],ul.configlets>li>form .field.error select,ul.configlets>li>form .field.error select.form-control,ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error textarea.form-control,ul.configlets>li>form .was-validated input[type=text]:invalid,ul.configlets>li>form .was-validated select:invalid,ul.configlets>li>form .was-validated textarea:invalid,ul.configlets>li>form form.loginform .field.error input[type=text],ul.configlets>li>form form.loginform .field.error select,ul.configlets>li>form form.loginform .field.error textarea,ul.configlets>li>form form.rowlike .field.error input[type=text],ul.configlets>li>form form.rowlike .field.error select,ul.configlets>li>form form.rowlike .field.error textarea,ul.configlets>li>form form.senaite-form .field.error input[type=text],ul.configlets>li>form form.senaite-form .field.error select,ul.configlets>li>form form.senaite-form .field.error textarea,ul.configlets>li>form form[action*=-controlpanel] .field.error input[type=text],ul.configlets>li>form form[action*=-controlpanel] .field.error select,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea,ul.configlets>li>form form[name=edit_form] .field.error input[type=text],ul.configlets>li>form form[name=edit_form] .field.error select,ul.configlets>li>form form[name=edit_form] .field.error textarea,ul.configlets>li>form form[name=sampleheader_form] .field.error input[type=text],ul.configlets>li>form form[name=sampleheader_form] .field.error select,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea,ul.configlets>li>form input.is-invalid[type=text],ul.configlets>li>form select.is-invalid,ul.configlets>li>form textarea.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem)!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.portlet:not(.portletNavigationTree) .was-validated input:invalid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .field.error input:focus:not([name=submit]),.portlet:not(.portletNavigationTree) input.is-invalid:focus:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .field.error input:focus:not([name=submit]),.was-validated .form-control:invalid:focus,.was-validated .portlet:not(.portletNavigationTree) input:invalid:focus:not([name=submit]),.was-validated form.loginform input[type=text]:invalid:focus,.was-validated form.loginform select:invalid:focus,.was-validated form.loginform textarea:invalid:focus,.was-validated form.rowlike input[type=text]:invalid:focus,.was-validated form.rowlike select:invalid:focus,.was-validated form.rowlike textarea:invalid:focus,.was-validated form.senaite-form input[type=text]:invalid:focus,.was-validated form.senaite-form select:invalid:focus,.was-validated form.senaite-form textarea:invalid:focus,.was-validated form[action*=-controlpanel] input[type=text]:invalid:focus,.was-validated form[action*=-controlpanel] select:invalid:focus,.was-validated form[action*=-controlpanel] textarea:invalid:focus,.was-validated form[name=analysisrequest_add_form] input[type=text]:invalid:focus,.was-validated form[name=analysisrequest_add_form] select:invalid:focus,.was-validated form[name=analysisrequest_add_form] textarea:invalid:focus,.was-validated form[name=edit_form] div.listing-container input:invalid:focus,.was-validated form[name=edit_form] input[type=text]:invalid:focus,.was-validated form[name=edit_form] select:invalid:focus,.was-validated form[name=edit_form] textarea:invalid:focus,.was-validated form[name=sampleheader_form] input[type=text]:invalid:focus,.was-validated form[name=sampleheader_form] select:invalid:focus,.was-validated form[name=sampleheader_form] textarea:invalid:focus,.was-validated ul.configlets>li>form input[type=text]:invalid:focus,.was-validated ul.configlets>li>form select:invalid:focus,.was-validated ul.configlets>li>form textarea:invalid:focus,form.loginform .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.loginform .field.error form.rowlike input[type=text]:focus,form.loginform .field.error form.rowlike select:focus,form.loginform .field.error form.rowlike textarea:focus,form.loginform .field.error form.senaite-form input[type=text]:focus,form.loginform .field.error form.senaite-form select:focus,form.loginform .field.error form.senaite-form textarea:focus,form.loginform .field.error form[action*=-controlpanel] input[type=text]:focus,form.loginform .field.error form[action*=-controlpanel] select:focus,form.loginform .field.error form[action*=-controlpanel] textarea:focus,form.loginform .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.loginform .field.error form[name=analysisrequest_add_form] select:focus,form.loginform .field.error form[name=analysisrequest_add_form] textarea:focus,form.loginform .field.error form[name=edit_form] div.listing-container input:focus,form.loginform .field.error form[name=edit_form] input[type=text]:focus,form.loginform .field.error form[name=edit_form] select:focus,form.loginform .field.error form[name=edit_form] textarea:focus,form.loginform .field.error form[name=sampleheader_form] input[type=text]:focus,form.loginform .field.error form[name=sampleheader_form] select:focus,form.loginform .field.error form[name=sampleheader_form] textarea:focus,form.loginform .field.error input.form-control:focus,form.loginform .field.error input[type=text]:focus,form.loginform .field.error select.form-control:focus,form.loginform .field.error select:focus,form.loginform .field.error textarea.form-control:focus,form.loginform .field.error textarea:focus,form.loginform .field.error ul.configlets>li>form input[type=text]:focus,form.loginform .field.error ul.configlets>li>form select:focus,form.loginform .field.error ul.configlets>li>form textarea:focus,form.loginform .was-validated input[type=text]:invalid:focus,form.loginform .was-validated select:invalid:focus,form.loginform .was-validated textarea:invalid:focus,form.loginform form.rowlike .field.error input[type=text]:focus,form.loginform form.rowlike .field.error select:focus,form.loginform form.rowlike .field.error textarea:focus,form.loginform form.senaite-form .field.error input[type=text]:focus,form.loginform form.senaite-form .field.error select:focus,form.loginform form.senaite-form .field.error textarea:focus,form.loginform form[action*=-controlpanel] .field.error input[type=text]:focus,form.loginform form[action*=-controlpanel] .field.error select:focus,form.loginform form[action*=-controlpanel] .field.error textarea:focus,form.loginform form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.loginform form[name=analysisrequest_add_form] .field.error select:focus,form.loginform form[name=analysisrequest_add_form] .field.error textarea:focus,form.loginform form[name=edit_form] .field.error input[type=text]:focus,form.loginform form[name=edit_form] .field.error select:focus,form.loginform form[name=edit_form] .field.error textarea:focus,form.loginform form[name=sampleheader_form] .field.error input[type=text]:focus,form.loginform form[name=sampleheader_form] .field.error select:focus,form.loginform form[name=sampleheader_form] .field.error textarea:focus,form.loginform input.is-invalid[type=text]:focus,form.loginform select.is-invalid:focus,form.loginform textarea.is-invalid:focus,form.loginform ul.configlets>li>form .field.error input[type=text]:focus,form.loginform ul.configlets>li>form .field.error select:focus,form.loginform ul.configlets>li>form .field.error textarea:focus,form.rowlike .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.rowlike .field.error form.loginform input[type=text]:focus,form.rowlike .field.error form.loginform select:focus,form.rowlike .field.error form.loginform textarea:focus,form.rowlike .field.error form.senaite-form input[type=text]:focus,form.rowlike .field.error form.senaite-form select:focus,form.rowlike .field.error form.senaite-form textarea:focus,form.rowlike .field.error form[action*=-controlpanel] input[type=text]:focus,form.rowlike .field.error form[action*=-controlpanel] select:focus,form.rowlike .field.error form[action*=-controlpanel] textarea:focus,form.rowlike .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.rowlike .field.error form[name=analysisrequest_add_form] select:focus,form.rowlike .field.error form[name=analysisrequest_add_form] textarea:focus,form.rowlike .field.error form[name=edit_form] div.listing-container input:focus,form.rowlike .field.error form[name=edit_form] input[type=text]:focus,form.rowlike .field.error form[name=edit_form] select:focus,form.rowlike .field.error form[name=edit_form] textarea:focus,form.rowlike .field.error form[name=sampleheader_form] input[type=text]:focus,form.rowlike .field.error form[name=sampleheader_form] select:focus,form.rowlike .field.error form[name=sampleheader_form] textarea:focus,form.rowlike .field.error input.form-control:focus,form.rowlike .field.error input[type=text]:focus,form.rowlike .field.error select.form-control:focus,form.rowlike .field.error select:focus,form.rowlike .field.error textarea.form-control:focus,form.rowlike .field.error textarea:focus,form.rowlike .field.error ul.configlets>li>form input[type=text]:focus,form.rowlike .field.error ul.configlets>li>form select:focus,form.rowlike .field.error ul.configlets>li>form textarea:focus,form.rowlike .was-validated input[type=text]:invalid:focus,form.rowlike .was-validated select:invalid:focus,form.rowlike .was-validated textarea:invalid:focus,form.rowlike form.loginform .field.error input[type=text]:focus,form.rowlike form.loginform .field.error select:focus,form.rowlike form.loginform .field.error textarea:focus,form.rowlike form.senaite-form .field.error input[type=text]:focus,form.rowlike form.senaite-form .field.error select:focus,form.rowlike form.senaite-form .field.error textarea:focus,form.rowlike form[action*=-controlpanel] .field.error input[type=text]:focus,form.rowlike form[action*=-controlpanel] .field.error select:focus,form.rowlike form[action*=-controlpanel] .field.error textarea:focus,form.rowlike form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.rowlike form[name=analysisrequest_add_form] .field.error select:focus,form.rowlike form[name=analysisrequest_add_form] .field.error textarea:focus,form.rowlike form[name=edit_form] .field.error input[type=text]:focus,form.rowlike form[name=edit_form] .field.error select:focus,form.rowlike form[name=edit_form] .field.error textarea:focus,form.rowlike form[name=sampleheader_form] .field.error input[type=text]:focus,form.rowlike form[name=sampleheader_form] .field.error select:focus,form.rowlike form[name=sampleheader_form] .field.error textarea:focus,form.rowlike input.is-invalid[type=text]:focus,form.rowlike select.is-invalid:focus,form.rowlike textarea.is-invalid:focus,form.rowlike ul.configlets>li>form .field.error input[type=text]:focus,form.rowlike ul.configlets>li>form .field.error select:focus,form.rowlike ul.configlets>li>form .field.error textarea:focus,form.senaite-form .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form.senaite-form .field.error form.loginform input[type=text]:focus,form.senaite-form .field.error form.loginform select:focus,form.senaite-form .field.error form.loginform textarea:focus,form.senaite-form .field.error form.rowlike input[type=text]:focus,form.senaite-form .field.error form.rowlike select:focus,form.senaite-form .field.error form.rowlike textarea:focus,form.senaite-form .field.error form[action*=-controlpanel] input[type=text]:focus,form.senaite-form .field.error form[action*=-controlpanel] select:focus,form.senaite-form .field.error form[action*=-controlpanel] textarea:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] select:focus,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea:focus,form.senaite-form .field.error form[name=edit_form] div.listing-container input:focus,form.senaite-form .field.error form[name=edit_form] input[type=text]:focus,form.senaite-form .field.error form[name=edit_form] select:focus,form.senaite-form .field.error form[name=edit_form] textarea:focus,form.senaite-form .field.error form[name=sampleheader_form] input[type=text]:focus,form.senaite-form .field.error form[name=sampleheader_form] select:focus,form.senaite-form .field.error form[name=sampleheader_form] textarea:focus,form.senaite-form .field.error input.form-control:focus,form.senaite-form .field.error input[type=text]:focus,form.senaite-form .field.error select.form-control:focus,form.senaite-form .field.error select:focus,form.senaite-form .field.error textarea.form-control:focus,form.senaite-form .field.error textarea:focus,form.senaite-form .field.error ul.configlets>li>form input[type=text]:focus,form.senaite-form .field.error ul.configlets>li>form select:focus,form.senaite-form .field.error ul.configlets>li>form textarea:focus,form.senaite-form .was-validated input[type=text]:invalid:focus,form.senaite-form .was-validated select:invalid:focus,form.senaite-form .was-validated textarea:invalid:focus,form.senaite-form form.loginform .field.error input[type=text]:focus,form.senaite-form form.loginform .field.error select:focus,form.senaite-form form.loginform .field.error textarea:focus,form.senaite-form form.rowlike .field.error input[type=text]:focus,form.senaite-form form.rowlike .field.error select:focus,form.senaite-form form.rowlike .field.error textarea:focus,form.senaite-form form[action*=-controlpanel] .field.error input[type=text]:focus,form.senaite-form form[action*=-controlpanel] .field.error select:focus,form.senaite-form form[action*=-controlpanel] .field.error textarea:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error select:focus,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea:focus,form.senaite-form form[name=edit_form] .field.error input[type=text]:focus,form.senaite-form form[name=edit_form] .field.error select:focus,form.senaite-form form[name=edit_form] .field.error textarea:focus,form.senaite-form form[name=sampleheader_form] .field.error input[type=text]:focus,form.senaite-form form[name=sampleheader_form] .field.error select:focus,form.senaite-form form[name=sampleheader_form] .field.error textarea:focus,form.senaite-form input.is-invalid[type=text]:focus,form.senaite-form select.is-invalid:focus,form.senaite-form textarea.is-invalid:focus,form.senaite-form ul.configlets>li>form .field.error input[type=text]:focus,form.senaite-form ul.configlets>li>form .field.error select:focus,form.senaite-form ul.configlets>li>form .field.error textarea:focus,form[action*=-controlpanel] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[action*=-controlpanel] .field.error form.loginform input[type=text]:focus,form[action*=-controlpanel] .field.error form.loginform select:focus,form[action*=-controlpanel] .field.error form.loginform textarea:focus,form[action*=-controlpanel] .field.error form.rowlike input[type=text]:focus,form[action*=-controlpanel] .field.error form.rowlike select:focus,form[action*=-controlpanel] .field.error form.rowlike textarea:focus,form[action*=-controlpanel] .field.error form.senaite-form input[type=text]:focus,form[action*=-controlpanel] .field.error form.senaite-form select:focus,form[action*=-controlpanel] .field.error form.senaite-form textarea:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select:focus,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea:focus,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container input:focus,form[action*=-controlpanel] .field.error form[name=edit_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=edit_form] select:focus,form[action*=-controlpanel] .field.error form[name=edit_form] textarea:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] input[type=text]:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] select:focus,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea:focus,form[action*=-controlpanel] .field.error input.form-control:focus,form[action*=-controlpanel] .field.error input[type=text]:focus,form[action*=-controlpanel] .field.error select.form-control:focus,form[action*=-controlpanel] .field.error select:focus,form[action*=-controlpanel] .field.error textarea.form-control:focus,form[action*=-controlpanel] .field.error textarea:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form input[type=text]:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form select:focus,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea:focus,form[action*=-controlpanel] .was-validated input[type=text]:invalid:focus,form[action*=-controlpanel] .was-validated select:invalid:focus,form[action*=-controlpanel] .was-validated textarea:invalid:focus,form[action*=-controlpanel] form.loginform .field.error input[type=text]:focus,form[action*=-controlpanel] form.loginform .field.error select:focus,form[action*=-controlpanel] form.loginform .field.error textarea:focus,form[action*=-controlpanel] form.rowlike .field.error input[type=text]:focus,form[action*=-controlpanel] form.rowlike .field.error select:focus,form[action*=-controlpanel] form.rowlike .field.error textarea:focus,form[action*=-controlpanel] form.senaite-form .field.error input[type=text]:focus,form[action*=-controlpanel] form.senaite-form .field.error select:focus,form[action*=-controlpanel] form.senaite-form .field.error textarea:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select:focus,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea:focus,form[action*=-controlpanel] form[name=edit_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=edit_form] .field.error select:focus,form[action*=-controlpanel] form[name=edit_form] .field.error textarea:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error input[type=text]:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error select:focus,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea:focus,form[action*=-controlpanel] input.is-invalid[type=text]:focus,form[action*=-controlpanel] select.is-invalid:focus,form[action*=-controlpanel] textarea.is-invalid:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error input[type=text]:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error select:focus,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea:focus,form[name=analysisrequest_add_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=analysisrequest_add_form] .field.error form.loginform input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.loginform select:focus,form[name=analysisrequest_add_form] .field.error form.loginform textarea:focus,form[name=analysisrequest_add_form] .field.error form.rowlike input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.rowlike select:focus,form[name=analysisrequest_add_form] .field.error form.rowlike textarea:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form select:focus,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select:focus,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container input:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] select:focus,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] input[type=text]:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select:focus,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea:focus,form[name=analysisrequest_add_form] .field.error input.form-control:focus,form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] .field.error select.form-control:focus,form[name=analysisrequest_add_form] .field.error select:focus,form[name=analysisrequest_add_form] .field.error textarea.form-control:focus,form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select:focus,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea:focus,form[name=analysisrequest_add_form] .was-validated input[type=text]:invalid:focus,form[name=analysisrequest_add_form] .was-validated select:invalid:focus,form[name=analysisrequest_add_form] .was-validated textarea:invalid:focus,form[name=analysisrequest_add_form] form.loginform .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.loginform .field.error select:focus,form[name=analysisrequest_add_form] form.loginform .field.error textarea:focus,form[name=analysisrequest_add_form] form.rowlike .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.rowlike .field.error select:focus,form[name=analysisrequest_add_form] form.rowlike .field.error textarea:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error select:focus,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select:focus,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error select:focus,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select:focus,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea:focus,form[name=analysisrequest_add_form] input.is-invalid[type=text]:focus,form[name=analysisrequest_add_form] select.is-invalid:focus,form[name=analysisrequest_add_form] textarea.is-invalid:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select:focus,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea:focus,form[name=edit_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=edit_form] .field.error div.listing-container input:focus,form[name=edit_form] .field.error form.loginform input[type=text]:focus,form[name=edit_form] .field.error form.loginform select:focus,form[name=edit_form] .field.error form.loginform textarea:focus,form[name=edit_form] .field.error form.rowlike input[type=text]:focus,form[name=edit_form] .field.error form.rowlike select:focus,form[name=edit_form] .field.error form.rowlike textarea:focus,form[name=edit_form] .field.error form.senaite-form input[type=text]:focus,form[name=edit_form] .field.error form.senaite-form select:focus,form[name=edit_form] .field.error form.senaite-form textarea:focus,form[name=edit_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=edit_form] .field.error form[action*=-controlpanel] select:focus,form[name=edit_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] select:focus,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea:focus,form[name=edit_form] .field.error form[name=sampleheader_form] input[type=text]:focus,form[name=edit_form] .field.error form[name=sampleheader_form] select:focus,form[name=edit_form] .field.error form[name=sampleheader_form] textarea:focus,form[name=edit_form] .field.error input.form-control:focus,form[name=edit_form] .field.error input[type=text]:focus,form[name=edit_form] .field.error select.form-control:focus,form[name=edit_form] .field.error select:focus,form[name=edit_form] .field.error textarea.form-control:focus,form[name=edit_form] .field.error textarea:focus,form[name=edit_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=edit_form] .field.error ul.configlets>li>form select:focus,form[name=edit_form] .field.error ul.configlets>li>form textarea:focus,form[name=edit_form] .was-validated input[type=text]:invalid:focus,form[name=edit_form] .was-validated select:invalid:focus,form[name=edit_form] .was-validated textarea:invalid:focus,form[name=edit_form] div.listing-container .field.error input:focus,form[name=edit_form] div.listing-container .was-validated input:invalid:focus,form[name=edit_form] div.listing-container form.loginform .field.error input:focus,form[name=edit_form] div.listing-container form.rowlike .field.error input:focus,form[name=edit_form] div.listing-container form.senaite-form .field.error input:focus,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error input:focus,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error input:focus,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error input:focus,form[name=edit_form] div.listing-container input.is-invalid:focus,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error input:focus,form[name=edit_form] form.loginform .field.error input[type=text]:focus,form[name=edit_form] form.loginform .field.error select:focus,form[name=edit_form] form.loginform .field.error textarea:focus,form[name=edit_form] form.rowlike .field.error input[type=text]:focus,form[name=edit_form] form.rowlike .field.error select:focus,form[name=edit_form] form.rowlike .field.error textarea:focus,form[name=edit_form] form.senaite-form .field.error input[type=text]:focus,form[name=edit_form] form.senaite-form .field.error select:focus,form[name=edit_form] form.senaite-form .field.error textarea:focus,form[name=edit_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=edit_form] form[action*=-controlpanel] .field.error select:focus,form[name=edit_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error select:focus,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=edit_form] form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=edit_form] form[name=sampleheader_form] .field.error select:focus,form[name=edit_form] form[name=sampleheader_form] .field.error textarea:focus,form[name=edit_form] input.is-invalid[type=text]:focus,form[name=edit_form] select.is-invalid:focus,form[name=edit_form] textarea.is-invalid:focus,form[name=edit_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=edit_form] ul.configlets>li>form .field.error select:focus,form[name=edit_form] ul.configlets>li>form .field.error textarea:focus,form[name=sampleheader_form] .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),form[name=sampleheader_form] .field.error form.loginform input[type=text]:focus,form[name=sampleheader_form] .field.error form.loginform select:focus,form[name=sampleheader_form] .field.error form.loginform textarea:focus,form[name=sampleheader_form] .field.error form.rowlike input[type=text]:focus,form[name=sampleheader_form] .field.error form.rowlike select:focus,form[name=sampleheader_form] .field.error form.rowlike textarea:focus,form[name=sampleheader_form] .field.error form.senaite-form input[type=text]:focus,form[name=sampleheader_form] .field.error form.senaite-form select:focus,form[name=sampleheader_form] .field.error form.senaite-form textarea:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] input[type=text]:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] select:focus,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] input[type=text]:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select:focus,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea:focus,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container input:focus,form[name=sampleheader_form] .field.error form[name=edit_form] input[type=text]:focus,form[name=sampleheader_form] .field.error form[name=edit_form] select:focus,form[name=sampleheader_form] .field.error form[name=edit_form] textarea:focus,form[name=sampleheader_form] .field.error input.form-control:focus,form[name=sampleheader_form] .field.error input[type=text]:focus,form[name=sampleheader_form] .field.error select.form-control:focus,form[name=sampleheader_form] .field.error select:focus,form[name=sampleheader_form] .field.error textarea.form-control:focus,form[name=sampleheader_form] .field.error textarea:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form input[type=text]:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form select:focus,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea:focus,form[name=sampleheader_form] .was-validated input[type=text]:invalid:focus,form[name=sampleheader_form] .was-validated select:invalid:focus,form[name=sampleheader_form] .was-validated textarea:invalid:focus,form[name=sampleheader_form] form.loginform .field.error input[type=text]:focus,form[name=sampleheader_form] form.loginform .field.error select:focus,form[name=sampleheader_form] form.loginform .field.error textarea:focus,form[name=sampleheader_form] form.rowlike .field.error input[type=text]:focus,form[name=sampleheader_form] form.rowlike .field.error select:focus,form[name=sampleheader_form] form.rowlike .field.error textarea:focus,form[name=sampleheader_form] form.senaite-form .field.error input[type=text]:focus,form[name=sampleheader_form] form.senaite-form .field.error select:focus,form[name=sampleheader_form] form.senaite-form .field.error textarea:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error input[type=text]:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error select:focus,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error input[type=text]:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select:focus,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea:focus,form[name=sampleheader_form] form[name=edit_form] .field.error input[type=text]:focus,form[name=sampleheader_form] form[name=edit_form] .field.error select:focus,form[name=sampleheader_form] form[name=edit_form] .field.error textarea:focus,form[name=sampleheader_form] input.is-invalid[type=text]:focus,form[name=sampleheader_form] select.is-invalid:focus,form[name=sampleheader_form] textarea.is-invalid:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error input[type=text]:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error select:focus,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea:focus,ul.configlets>li>form .field.error .portlet:not(.portletNavigationTree) input:focus:not([name=submit]),ul.configlets>li>form .field.error form.loginform input[type=text]:focus,ul.configlets>li>form .field.error form.loginform select:focus,ul.configlets>li>form .field.error form.loginform textarea:focus,ul.configlets>li>form .field.error form.rowlike input[type=text]:focus,ul.configlets>li>form .field.error form.rowlike select:focus,ul.configlets>li>form .field.error form.rowlike textarea:focus,ul.configlets>li>form .field.error form.senaite-form input[type=text]:focus,ul.configlets>li>form .field.error form.senaite-form select:focus,ul.configlets>li>form .field.error form.senaite-form textarea:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] input[type=text]:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] select:focus,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select:focus,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea:focus,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container input:focus,ul.configlets>li>form .field.error form[name=edit_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=edit_form] select:focus,ul.configlets>li>form .field.error form[name=edit_form] textarea:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] input[type=text]:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] select:focus,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea:focus,ul.configlets>li>form .field.error input.form-control:focus,ul.configlets>li>form .field.error input[type=text]:focus,ul.configlets>li>form .field.error select.form-control:focus,ul.configlets>li>form .field.error select:focus,ul.configlets>li>form .field.error textarea.form-control:focus,ul.configlets>li>form .field.error textarea:focus,ul.configlets>li>form .was-validated input[type=text]:invalid:focus,ul.configlets>li>form .was-validated select:invalid:focus,ul.configlets>li>form .was-validated textarea:invalid:focus,ul.configlets>li>form form.loginform .field.error input[type=text]:focus,ul.configlets>li>form form.loginform .field.error select:focus,ul.configlets>li>form form.loginform .field.error textarea:focus,ul.configlets>li>form form.rowlike .field.error input[type=text]:focus,ul.configlets>li>form form.rowlike .field.error select:focus,ul.configlets>li>form form.rowlike .field.error textarea:focus,ul.configlets>li>form form.senaite-form .field.error input[type=text]:focus,ul.configlets>li>form form.senaite-form .field.error select:focus,ul.configlets>li>form form.senaite-form .field.error textarea:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error input[type=text]:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error select:focus,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select:focus,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea:focus,ul.configlets>li>form form[name=edit_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=edit_form] .field.error select:focus,ul.configlets>li>form form[name=edit_form] .field.error textarea:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error input[type=text]:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error select:focus,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea:focus,ul.configlets>li>form input.is-invalid[type=text]:focus,ul.configlets>li>form select.is-invalid:focus,ul.configlets>li>form textarea.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated form.loginform select:invalid,.was-validated form.rowlike select:invalid,.was-validated form.senaite-form select:invalid,.was-validated form[action*=-controlpanel] select:invalid,.was-validated form[name=analysisrequest_add_form] select:invalid,.was-validated form[name=edit_form] select:invalid,.was-validated form[name=sampleheader_form] select:invalid,.was-validated select.form-control:invalid,.was-validated ul.configlets>li>form select:invalid,form.loginform .field.error form.rowlike select,form.loginform .field.error form.senaite-form select,form.loginform .field.error form[action*=-controlpanel] select,form.loginform .field.error form[name=analysisrequest_add_form] select,form.loginform .field.error form[name=edit_form] div.listing-container select,form.loginform .field.error form[name=edit_form] select,form.loginform .field.error form[name=sampleheader_form] select,form.loginform .field.error select,form.loginform .field.error select.form-control,form.loginform .field.error ul.configlets>li>form select,form.loginform .was-validated select:invalid,form.loginform form.rowlike .field.error select,form.loginform form.senaite-form .field.error select,form.loginform form[action*=-controlpanel] .field.error select,form.loginform form[name=analysisrequest_add_form] .field.error select,form.loginform form[name=edit_form] .field.error select,form.loginform form[name=sampleheader_form] .field.error select,form.loginform select.is-invalid,form.loginform ul.configlets>li>form .field.error select,form.rowlike .field.error form.loginform select,form.rowlike .field.error form.senaite-form select,form.rowlike .field.error form[action*=-controlpanel] select,form.rowlike .field.error form[name=analysisrequest_add_form] select,form.rowlike .field.error form[name=edit_form] div.listing-container select,form.rowlike .field.error form[name=edit_form] select,form.rowlike .field.error form[name=sampleheader_form] select,form.rowlike .field.error select,form.rowlike .field.error select.form-control,form.rowlike .field.error ul.configlets>li>form select,form.rowlike .was-validated select:invalid,form.rowlike form.loginform .field.error select,form.rowlike form.senaite-form .field.error select,form.rowlike form[action*=-controlpanel] .field.error select,form.rowlike form[name=analysisrequest_add_form] .field.error select,form.rowlike form[name=edit_form] .field.error select,form.rowlike form[name=sampleheader_form] .field.error select,form.rowlike select.is-invalid,form.rowlike ul.configlets>li>form .field.error select,form.senaite-form .field.error form.loginform select,form.senaite-form .field.error form.rowlike select,form.senaite-form .field.error form[action*=-controlpanel] select,form.senaite-form .field.error form[name=analysisrequest_add_form] select,form.senaite-form .field.error form[name=edit_form] div.listing-container select,form.senaite-form .field.error form[name=edit_form] select,form.senaite-form .field.error form[name=sampleheader_form] select,form.senaite-form .field.error select,form.senaite-form .field.error select.form-control,form.senaite-form .field.error ul.configlets>li>form select,form.senaite-form .was-validated select:invalid,form.senaite-form form.loginform .field.error select,form.senaite-form form.rowlike .field.error select,form.senaite-form form[action*=-controlpanel] .field.error select,form.senaite-form form[name=analysisrequest_add_form] .field.error select,form.senaite-form form[name=edit_form] .field.error select,form.senaite-form form[name=sampleheader_form] .field.error select,form.senaite-form select.is-invalid,form.senaite-form ul.configlets>li>form .field.error select,form[action*=-controlpanel] .field.error form.loginform select,form[action*=-controlpanel] .field.error form.rowlike select,form[action*=-controlpanel] .field.error form.senaite-form select,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] select,form[action*=-controlpanel] .field.error form[name=edit_form] div.listing-container select,form[action*=-controlpanel] .field.error form[name=edit_form] select,form[action*=-controlpanel] .field.error form[name=sampleheader_form] select,form[action*=-controlpanel] .field.error select,form[action*=-controlpanel] .field.error select.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form select,form[action*=-controlpanel] .was-validated select:invalid,form[action*=-controlpanel] form.loginform .field.error select,form[action*=-controlpanel] form.rowlike .field.error select,form[action*=-controlpanel] form.senaite-form .field.error select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error select,form[action*=-controlpanel] form[name=edit_form] .field.error select,form[action*=-controlpanel] form[name=sampleheader_form] .field.error select,form[action*=-controlpanel] select.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error select,form[name=analysisrequest_add_form] .field.error form.loginform select,form[name=analysisrequest_add_form] .field.error form.rowlike select,form[name=analysisrequest_add_form] .field.error form.senaite-form select,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] div.listing-container select,form[name=analysisrequest_add_form] .field.error form[name=edit_form] select,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] select,form[name=analysisrequest_add_form] .field.error select,form[name=analysisrequest_add_form] .field.error select.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form select,form[name=analysisrequest_add_form] .was-validated select:invalid,form[name=analysisrequest_add_form] form.loginform .field.error select,form[name=analysisrequest_add_form] form.rowlike .field.error select,form[name=analysisrequest_add_form] form.senaite-form .field.error select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error select,form[name=analysisrequest_add_form] form[name=edit_form] .field.error select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error select,form[name=analysisrequest_add_form] select.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error select,form[name=edit_form] .field.error div.listing-container select,form[name=edit_form] .field.error form.loginform select,form[name=edit_form] .field.error form.rowlike select,form[name=edit_form] .field.error form.senaite-form select,form[name=edit_form] .field.error form[action*=-controlpanel] select,form[name=edit_form] .field.error form[name=analysisrequest_add_form] select,form[name=edit_form] .field.error form[name=sampleheader_form] select,form[name=edit_form] .field.error select,form[name=edit_form] .field.error select.form-control,form[name=edit_form] .field.error ul.configlets>li>form select,form[name=edit_form] .was-validated select:invalid,form[name=edit_form] div.listing-container .field.error select,form[name=edit_form] div.listing-container form.loginform .field.error select,form[name=edit_form] div.listing-container form.rowlike .field.error select,form[name=edit_form] div.listing-container form.senaite-form .field.error select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .field.error select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .field.error select,form[name=edit_form] div.listing-container select.is-invalid,form[name=edit_form] div.listing-container ul.configlets>li>form .field.error select,form[name=edit_form] form.loginform .field.error select,form[name=edit_form] form.rowlike .field.error select,form[name=edit_form] form.senaite-form .field.error select,form[name=edit_form] form[action*=-controlpanel] .field.error select,form[name=edit_form] form[name=analysisrequest_add_form] .field.error select,form[name=edit_form] form[name=sampleheader_form] .field.error select,form[name=edit_form] select.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error select,form[name=sampleheader_form] .field.error form.loginform select,form[name=sampleheader_form] .field.error form.rowlike select,form[name=sampleheader_form] .field.error form.senaite-form select,form[name=sampleheader_form] .field.error form[action*=-controlpanel] select,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] select,form[name=sampleheader_form] .field.error form[name=edit_form] div.listing-container select,form[name=sampleheader_form] .field.error form[name=edit_form] select,form[name=sampleheader_form] .field.error select,form[name=sampleheader_form] .field.error select.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form select,form[name=sampleheader_form] .was-validated select:invalid,form[name=sampleheader_form] form.loginform .field.error select,form[name=sampleheader_form] form.rowlike .field.error select,form[name=sampleheader_form] form.senaite-form .field.error select,form[name=sampleheader_form] form[action*=-controlpanel] .field.error select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error select,form[name=sampleheader_form] form[name=edit_form] .field.error select,form[name=sampleheader_form] select.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error select,select.form-control.is-invalid,ul.configlets>li>form .field.error form.loginform select,ul.configlets>li>form .field.error form.rowlike select,ul.configlets>li>form .field.error form.senaite-form select,ul.configlets>li>form .field.error form[action*=-controlpanel] select,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] select,ul.configlets>li>form .field.error form[name=edit_form] div.listing-container select,ul.configlets>li>form .field.error form[name=edit_form] select,ul.configlets>li>form .field.error form[name=sampleheader_form] select,ul.configlets>li>form .field.error select,ul.configlets>li>form .field.error select.form-control,ul.configlets>li>form .was-validated select:invalid,ul.configlets>li>form form.loginform .field.error select,ul.configlets>li>form form.rowlike .field.error select,ul.configlets>li>form form.senaite-form .field.error select,ul.configlets>li>form form[action*=-controlpanel] .field.error select,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error select,ul.configlets>li>form form[name=edit_form] .field.error select,ul.configlets>li>form form[name=sampleheader_form] .field.error select,ul.configlets>li>form select.is-invalid{padding-right:3rem!important;background-position:right 1.5rem center}.was-validated form.loginform textarea:invalid,.was-validated form.rowlike textarea:invalid,.was-validated form.senaite-form textarea:invalid,.was-validated form[action*=-controlpanel] textarea:invalid,.was-validated form[name=analysisrequest_add_form] textarea:invalid,.was-validated form[name=edit_form] textarea:invalid,.was-validated form[name=sampleheader_form] textarea:invalid,.was-validated textarea.form-control:invalid,.was-validated ul.configlets>li>form textarea:invalid,form.loginform .field.error form.rowlike textarea,form.loginform .field.error form.senaite-form textarea,form.loginform .field.error form[action*=-controlpanel] textarea,form.loginform .field.error form[name=analysisrequest_add_form] textarea,form.loginform .field.error form[name=edit_form] textarea,form.loginform .field.error form[name=sampleheader_form] textarea,form.loginform .field.error textarea,form.loginform .field.error textarea.form-control,form.loginform .field.error ul.configlets>li>form textarea,form.loginform .was-validated textarea:invalid,form.loginform form.rowlike .field.error textarea,form.loginform form.senaite-form .field.error textarea,form.loginform form[action*=-controlpanel] .field.error textarea,form.loginform form[name=analysisrequest_add_form] .field.error textarea,form.loginform form[name=edit_form] .field.error textarea,form.loginform form[name=sampleheader_form] .field.error textarea,form.loginform textarea.is-invalid,form.loginform ul.configlets>li>form .field.error textarea,form.rowlike .field.error form.loginform textarea,form.rowlike .field.error form.senaite-form textarea,form.rowlike .field.error form[action*=-controlpanel] textarea,form.rowlike .field.error form[name=analysisrequest_add_form] textarea,form.rowlike .field.error form[name=edit_form] textarea,form.rowlike .field.error form[name=sampleheader_form] textarea,form.rowlike .field.error textarea,form.rowlike .field.error textarea.form-control,form.rowlike .field.error ul.configlets>li>form textarea,form.rowlike .was-validated textarea:invalid,form.rowlike form.loginform .field.error textarea,form.rowlike form.senaite-form .field.error textarea,form.rowlike form[action*=-controlpanel] .field.error textarea,form.rowlike form[name=analysisrequest_add_form] .field.error textarea,form.rowlike form[name=edit_form] .field.error textarea,form.rowlike form[name=sampleheader_form] .field.error textarea,form.rowlike textarea.is-invalid,form.rowlike ul.configlets>li>form .field.error textarea,form.senaite-form .field.error form.loginform textarea,form.senaite-form .field.error form.rowlike textarea,form.senaite-form .field.error form[action*=-controlpanel] textarea,form.senaite-form .field.error form[name=analysisrequest_add_form] textarea,form.senaite-form .field.error form[name=edit_form] textarea,form.senaite-form .field.error form[name=sampleheader_form] textarea,form.senaite-form .field.error textarea,form.senaite-form .field.error textarea.form-control,form.senaite-form .field.error ul.configlets>li>form textarea,form.senaite-form .was-validated textarea:invalid,form.senaite-form form.loginform .field.error textarea,form.senaite-form form.rowlike .field.error textarea,form.senaite-form form[action*=-controlpanel] .field.error textarea,form.senaite-form form[name=analysisrequest_add_form] .field.error textarea,form.senaite-form form[name=edit_form] .field.error textarea,form.senaite-form form[name=sampleheader_form] .field.error textarea,form.senaite-form textarea.is-invalid,form.senaite-form ul.configlets>li>form .field.error textarea,form[action*=-controlpanel] .field.error form.loginform textarea,form[action*=-controlpanel] .field.error form.rowlike textarea,form[action*=-controlpanel] .field.error form.senaite-form textarea,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] textarea,form[action*=-controlpanel] .field.error form[name=edit_form] textarea,form[action*=-controlpanel] .field.error form[name=sampleheader_form] textarea,form[action*=-controlpanel] .field.error textarea,form[action*=-controlpanel] .field.error textarea.form-control,form[action*=-controlpanel] .field.error ul.configlets>li>form textarea,form[action*=-controlpanel] .was-validated textarea:invalid,form[action*=-controlpanel] form.loginform .field.error textarea,form[action*=-controlpanel] form.rowlike .field.error textarea,form[action*=-controlpanel] form.senaite-form .field.error textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .field.error textarea,form[action*=-controlpanel] form[name=edit_form] .field.error textarea,form[action*=-controlpanel] form[name=sampleheader_form] .field.error textarea,form[action*=-controlpanel] textarea.is-invalid,form[action*=-controlpanel] ul.configlets>li>form .field.error textarea,form[name=analysisrequest_add_form] .field.error form.loginform textarea,form[name=analysisrequest_add_form] .field.error form.rowlike textarea,form[name=analysisrequest_add_form] .field.error form.senaite-form textarea,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] textarea,form[name=analysisrequest_add_form] .field.error form[name=edit_form] textarea,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] textarea,form[name=analysisrequest_add_form] .field.error textarea,form[name=analysisrequest_add_form] .field.error textarea.form-control,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form textarea,form[name=analysisrequest_add_form] .was-validated textarea:invalid,form[name=analysisrequest_add_form] form.loginform .field.error textarea,form[name=analysisrequest_add_form] form.rowlike .field.error textarea,form[name=analysisrequest_add_form] form.senaite-form .field.error textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .field.error textarea,form[name=analysisrequest_add_form] form[name=edit_form] .field.error textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .field.error textarea,form[name=analysisrequest_add_form] textarea.is-invalid,form[name=analysisrequest_add_form] ul.configlets>li>form .field.error textarea,form[name=edit_form] .field.error form.loginform textarea,form[name=edit_form] .field.error form.rowlike textarea,form[name=edit_form] .field.error form.senaite-form textarea,form[name=edit_form] .field.error form[action*=-controlpanel] textarea,form[name=edit_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=edit_form] .field.error form[name=sampleheader_form] textarea,form[name=edit_form] .field.error textarea,form[name=edit_form] .field.error textarea.form-control,form[name=edit_form] .field.error ul.configlets>li>form textarea,form[name=edit_form] .was-validated textarea:invalid,form[name=edit_form] form.loginform .field.error textarea,form[name=edit_form] form.rowlike .field.error textarea,form[name=edit_form] form.senaite-form .field.error textarea,form[name=edit_form] form[action*=-controlpanel] .field.error textarea,form[name=edit_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=edit_form] form[name=sampleheader_form] .field.error textarea,form[name=edit_form] textarea.is-invalid,form[name=edit_form] ul.configlets>li>form .field.error textarea,form[name=sampleheader_form] .field.error form.loginform textarea,form[name=sampleheader_form] .field.error form.rowlike textarea,form[name=sampleheader_form] .field.error form.senaite-form textarea,form[name=sampleheader_form] .field.error form[action*=-controlpanel] textarea,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] textarea,form[name=sampleheader_form] .field.error form[name=edit_form] textarea,form[name=sampleheader_form] .field.error textarea,form[name=sampleheader_form] .field.error textarea.form-control,form[name=sampleheader_form] .field.error ul.configlets>li>form textarea,form[name=sampleheader_form] .was-validated textarea:invalid,form[name=sampleheader_form] form.loginform .field.error textarea,form[name=sampleheader_form] form.rowlike .field.error textarea,form[name=sampleheader_form] form.senaite-form .field.error textarea,form[name=sampleheader_form] form[action*=-controlpanel] .field.error textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .field.error textarea,form[name=sampleheader_form] form[name=edit_form] .field.error textarea,form[name=sampleheader_form] textarea.is-invalid,form[name=sampleheader_form] ul.configlets>li>form .field.error textarea,textarea.form-control.is-invalid,ul.configlets>li>form .field.error form.loginform textarea,ul.configlets>li>form .field.error form.rowlike textarea,ul.configlets>li>form .field.error form.senaite-form textarea,ul.configlets>li>form .field.error form[action*=-controlpanel] textarea,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] textarea,ul.configlets>li>form .field.error form[name=edit_form] textarea,ul.configlets>li>form .field.error form[name=sampleheader_form] textarea,ul.configlets>li>form .field.error textarea,ul.configlets>li>form .field.error textarea.form-control,ul.configlets>li>form .was-validated textarea:invalid,ul.configlets>li>form form.loginform .field.error textarea,ul.configlets>li>form form.rowlike .field.error textarea,ul.configlets>li>form form.senaite-form .field.error textarea,ul.configlets>li>form form[action*=-controlpanel] .field.error textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .field.error textarea,ul.configlets>li>form form[name=edit_form] .field.error textarea,ul.configlets>li>form form[name=sampleheader_form] .field.error textarea,ul.configlets>li>form textarea.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid,form.loginform .field.error input.custom-select,form.loginform .field.error select.custom-select,form.loginform .field.error textarea.custom-select,form.rowlike .field.error input.custom-select,form.rowlike .field.error select.custom-select,form.rowlike .field.error textarea.custom-select,form.senaite-form .field.error input.custom-select,form.senaite-form .field.error select.custom-select,form.senaite-form .field.error textarea.custom-select,form[action*=-controlpanel] .field.error input.custom-select,form[action*=-controlpanel] .field.error select.custom-select,form[action*=-controlpanel] .field.error textarea.custom-select,form[name=analysisrequest_add_form] .field.error input.custom-select,form[name=analysisrequest_add_form] .field.error select.custom-select,form[name=analysisrequest_add_form] .field.error textarea.custom-select,form[name=edit_form] .field.error input.custom-select,form[name=edit_form] .field.error select.custom-select,form[name=edit_form] .field.error textarea.custom-select,form[name=sampleheader_form] .field.error input.custom-select,form[name=sampleheader_form] .field.error select.custom-select,form[name=sampleheader_form] .field.error textarea.custom-select,ul.configlets>li>form .field.error input.custom-select,ul.configlets>li>form .field.error select.custom-select,ul.configlets>li>form .field.error textarea.custom-select{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem)!important;background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus,form.loginform .field.error input.custom-select:focus,form.loginform .field.error select.custom-select:focus,form.loginform .field.error textarea.custom-select:focus,form.rowlike .field.error input.custom-select:focus,form.rowlike .field.error select.custom-select:focus,form.rowlike .field.error textarea.custom-select:focus,form.senaite-form .field.error input.custom-select:focus,form.senaite-form .field.error select.custom-select:focus,form.senaite-form .field.error textarea.custom-select:focus,form[action*=-controlpanel] .field.error input.custom-select:focus,form[action*=-controlpanel] .field.error select.custom-select:focus,form[action*=-controlpanel] .field.error textarea.custom-select:focus,form[name=analysisrequest_add_form] .field.error input.custom-select:focus,form[name=analysisrequest_add_form] .field.error select.custom-select:focus,form[name=analysisrequest_add_form] .field.error textarea.custom-select:focus,form[name=edit_form] .field.error input.custom-select:focus,form[name=edit_form] .field.error select.custom-select:focus,form[name=edit_form] .field.error textarea.custom-select:focus,form[name=sampleheader_form] .field.error input.custom-select:focus,form[name=sampleheader_form] .field.error select.custom-select:focus,form[name=sampleheader_form] .field.error textarea.custom-select:focus,ul.configlets>li>form .field.error input.custom-select:focus,ul.configlets>li>form .field.error select.custom-select:focus,ul.configlets>li>form .field.error textarea.custom-select:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.loginform span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.form-check-label,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.loginform .field.error input.form-check-input~.form-check-label,form.loginform .field.error select.form-check-input~.form-check-label,form.loginform .field.error span.option input[type=checkbox]~.form-check-label,form.loginform .field.error textarea.form-check-input~.form-check-label,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.loginform span.option .field.error input[type=checkbox]~.form-check-label,form.loginform span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.loginform span.option input.is-invalid[type=checkbox]~.form-check-label,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error input.form-check-input~.form-check-label,form.rowlike .field.error select.form-check-input~.form-check-label,form.rowlike .field.error span.option input[type=checkbox]~.form-check-label,form.rowlike .field.error textarea.form-check-input~.form-check-label,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.rowlike span.option input.is-invalid[type=checkbox]~.form-check-label,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error input.form-check-input~.form-check-label,form.senaite-form .field.error select.form-check-input~.form-check-label,form.senaite-form .field.error span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.error textarea.form-check-input~.form-check-label,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form.senaite-form span.option input.is-invalid[type=checkbox]~.form-check-label,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error input.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error select.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error textarea.form-check-input~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.form-check-label,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error input.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error select.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error input.form-check-input~.form-check-label,form[name=edit_form] .field.error select.form-check-input~.form-check-label,form[name=edit_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error textarea.form-check-input~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error input.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error select.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error textarea.form-check-input~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.form-check-label,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.form-check-label,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error input.form-check-input~.form-check-label,ul.configlets>li>form .field.error select.form-check-input~.form-check-label,ul.configlets>li>form .field.error span.option input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.error textarea.form-check-input~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.form-check-label,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.form-check-label,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.loginform span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.loginform span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.rowlike span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form.senaite-form span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[action*=-controlpanel] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=analysisrequest_add_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=edit_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated form[name=sampleheader_form] span.option input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]:invalid~.invalid-tooltip,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.invalid-feedback,.was-validated ul.configlets>li>form span.option input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error input.form-check-input~.invalid-feedback,form.loginform .field.error input.form-check-input~.invalid-tooltip,form.loginform .field.error select.form-check-input~.invalid-feedback,form.loginform .field.error select.form-check-input~.invalid-tooltip,form.loginform .field.error span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.error textarea.form-check-input~.invalid-feedback,form.loginform .field.error textarea.form-check-input~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.loginform .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.loginform span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.loginform span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.loginform span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.loginform span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error input.form-check-input~.invalid-feedback,form.rowlike .field.error input.form-check-input~.invalid-tooltip,form.rowlike .field.error select.form-check-input~.invalid-feedback,form.rowlike .field.error select.form-check-input~.invalid-tooltip,form.rowlike .field.error span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error textarea.form-check-input~.invalid-feedback,form.rowlike .field.error textarea.form-check-input~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.rowlike .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.rowlike span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.rowlike span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.rowlike span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.rowlike span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error input.form-check-input~.invalid-feedback,form.senaite-form .field.error input.form-check-input~.invalid-tooltip,form.senaite-form .field.error select.form-check-input~.invalid-feedback,form.senaite-form .field.error select.form-check-input~.invalid-tooltip,form.senaite-form .field.error span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error textarea.form-check-input~.invalid-feedback,form.senaite-form .field.error textarea.form-check-input~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form.senaite-form .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form.senaite-form span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form.senaite-form span.option input.is-invalid[type=checkbox]~.invalid-feedback,form.senaite-form span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form.senaite-form span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error input.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error input.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error select.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error select.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error textarea.form-check-input~.invalid-feedback,form[action*=-controlpanel] .field.error textarea.form-check-input~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[action*=-controlpanel] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[action*=-controlpanel] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error input.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error input.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error select.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error select.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=analysisrequest_add_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=analysisrequest_add_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=analysisrequest_add_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error input.form-check-input~.invalid-feedback,form[name=edit_form] .field.error input.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error select.form-check-input~.invalid-feedback,form[name=edit_form] .field.error select.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=edit_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=edit_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=edit_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.ArchetypesBooleanWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error input.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error input.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error select.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error select.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error textarea.form-check-input~.invalid-feedback,form[name=sampleheader_form] .field.error textarea.form-check-input~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.error ul.configlets>li>form span.option input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] .field.RejectionSetupWidget ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,form[name=sampleheader_form] span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option input.is-invalid[type=checkbox]~.invalid-tooltip,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-feedback,form[name=sampleheader_form] span.option ul.configlets>li>form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.ArchetypesBooleanWidget input.is-invalid[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.loginform span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.rowlike span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form.senaite-form span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[action*=-controlpanel] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=analysisrequest_add_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=edit_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error form[name=sampleheader_form] span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error input.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error input.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.error select.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error select.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.error span.option input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.error span.option input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.error textarea.form-check-input~.invalid-feedback,ul.configlets>li>form .field.error textarea.form-check-input~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form .field.RejectionSetupWidget input.is-invalid[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.invalid-feedback,ul.configlets>li>form span.option .was-validated input[type=checkbox]:invalid~.invalid-tooltip,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.loginform .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.rowlike .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form.senaite-form .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[action*=-controlpanel] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=analysisrequest_add_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=edit_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option form[name=sampleheader_form] .field.error input[type=checkbox]~.invalid-tooltip,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.invalid-feedback,ul.configlets>li>form span.option input.is-invalid[type=checkbox]~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label,form.loginform .field.error input.custom-control-input~.custom-control-label,form.loginform .field.error select.custom-control-input~.custom-control-label,form.loginform .field.error textarea.custom-control-input~.custom-control-label,form.rowlike .field.error input.custom-control-input~.custom-control-label,form.rowlike .field.error select.custom-control-input~.custom-control-label,form.rowlike .field.error textarea.custom-control-input~.custom-control-label,form.senaite-form .field.error input.custom-control-input~.custom-control-label,form.senaite-form .field.error select.custom-control-input~.custom-control-label,form.senaite-form .field.error textarea.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error input.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error select.custom-control-input~.custom-control-label,form[action*=-controlpanel] .field.error textarea.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error input.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error select.custom-control-input~.custom-control-label,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input~.custom-control-label,form[name=edit_form] .field.error input.custom-control-input~.custom-control-label,form[name=edit_form] .field.error select.custom-control-input~.custom-control-label,form[name=edit_form] .field.error textarea.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error input.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error select.custom-control-input~.custom-control-label,form[name=sampleheader_form] .field.error textarea.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error input.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error select.custom-control-input~.custom-control-label,ul.configlets>li>form .field.error textarea.custom-control-input~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label:before,.was-validated .custom-control-input:invalid~.custom-control-label:before,form.loginform .field.error input.custom-control-input~.custom-control-label:before,form.loginform .field.error select.custom-control-input~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input~.custom-control-label:before,form.rowlike .field.error input.custom-control-input~.custom-control-label:before,form.rowlike .field.error select.custom-control-input~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input~.custom-control-label:before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label:before,.was-validated .custom-control-input:invalid:checked~.custom-control-label:before,form.loginform .field.error input.custom-control-input:checked~.custom-control-label:before,form.loginform .field.error select.custom-control-input:checked~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error input.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error select.custom-control-input:checked~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input:checked~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input:checked~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input:checked~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input:checked~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input:checked~.custom-control-label:before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label:before,.was-validated .custom-control-input:invalid:focus~.custom-control-label:before,form.loginform .field.error input.custom-control-input:focus~.custom-control-label:before,form.loginform .field.error select.custom-control-input:focus~.custom-control-label:before,form.loginform .field.error textarea.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error input.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error select.custom-control-input:focus~.custom-control-label:before,form.rowlike .field.error textarea.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error input.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error select.custom-control-input:focus~.custom-control-label:before,form.senaite-form .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-control-input:focus~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-control-input:focus~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-control-input:focus~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before,.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before,.was-validated .custom-file-input:invalid~.custom-file-label,form.loginform .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error input.custom-file-input~.custom-file-label,form.loginform .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error select.custom-file-input~.custom-file-label,form.loginform .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.loginform .field.error textarea.custom-file-input~.custom-file-label,form.rowlike .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error input.custom-file-input~.custom-file-label,form.rowlike .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error select.custom-file-input~.custom-file-label,form.rowlike .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.rowlike .field.error textarea.custom-file-input~.custom-file-label,form.senaite-form .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error input.custom-file-input~.custom-file-label,form.senaite-form .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error select.custom-file-input~.custom-file-label,form.senaite-form .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form.senaite-form .field.error textarea.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error input.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error select.custom-file-input~.custom-file-label,form[action*=-controlpanel] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[action*=-controlpanel] .field.error textarea.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error input.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error select.custom-file-input~.custom-file-label,form[name=analysisrequest_add_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=analysisrequest_add_form] .field.error textarea.custom-file-input~.custom-file-label,form[name=edit_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error input.custom-file-input~.custom-file-label,form[name=edit_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error select.custom-file-input~.custom-file-label,form[name=edit_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=edit_form] .field.error textarea.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error input.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error select.custom-file-input~.custom-file-label,form[name=sampleheader_form] .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,form[name=sampleheader_form] .field.error textarea.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error input.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error input.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error select.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error select.custom-file-input~.custom-file-label,ul.configlets>li>form .field.error textarea.custom-control-input:focus:not(:checked)~.custom-control-label:before,ul.configlets>li>form .field.error textarea.custom-file-input~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label,form.loginform .field.error input.custom-file-input:focus~.custom-file-label,form.loginform .field.error select.custom-file-input:focus~.custom-file-label,form.loginform .field.error textarea.custom-file-input:focus~.custom-file-label,form.rowlike .field.error input.custom-file-input:focus~.custom-file-label,form.rowlike .field.error select.custom-file-input:focus~.custom-file-label,form.rowlike .field.error textarea.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error input.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error select.custom-file-input:focus~.custom-file-label,form.senaite-form .field.error textarea.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error input.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error select.custom-file-input:focus~.custom-file-label,form[action*=-controlpanel] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=analysisrequest_add_form] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=edit_form] .field.error textarea.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error input.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error select.custom-file-input:focus~.custom-file-label,form[name=sampleheader_form] .field.error textarea.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error input.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error select.custom-file-input:focus~.custom-file-label,ul.configlets>li>form .field.error textarea.custom-file-input:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check,.form-inline form.loginform .field.ArchetypesBooleanWidget,.form-inline form.loginform .field.RejectionSetupWidget,.form-inline form.loginform span.option,.form-inline form.rowlike .field.ArchetypesBooleanWidget,.form-inline form.rowlike .field.RejectionSetupWidget,.form-inline form.rowlike span.option,.form-inline form.senaite-form .field.ArchetypesBooleanWidget,.form-inline form.senaite-form .field.RejectionSetupWidget,.form-inline form.senaite-form span.option,.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget,.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget,.form-inline form[action*=-controlpanel] span.option,.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget,.form-inline form[name=analysisrequest_add_form] span.option,.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget,.form-inline form[name=edit_form] .field.RejectionSetupWidget,.form-inline form[name=edit_form] span.option,.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget,.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget,.form-inline form[name=sampleheader_form] span.option,.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget,.form-inline ul.configlets>li>form .field.RejectionSetupWidget,.form-inline ul.configlets>li>form span.option,form.loginform .form-inline .field.ArchetypesBooleanWidget,form.loginform .form-inline .field.RejectionSetupWidget,form.loginform .form-inline span.option,form.rowlike .form-inline .field.ArchetypesBooleanWidget,form.rowlike .form-inline .field.RejectionSetupWidget,form.rowlike .form-inline span.option,form.senaite-form .form-inline .field.ArchetypesBooleanWidget,form.senaite-form .form-inline .field.RejectionSetupWidget,form.senaite-form .form-inline span.option,form[action*=-controlpanel] .form-inline .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .form-inline .field.RejectionSetupWidget,form[action*=-controlpanel] .form-inline span.option,form[name=analysisrequest_add_form] .form-inline .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .form-inline .field.RejectionSetupWidget,form[name=analysisrequest_add_form] .form-inline span.option,form[name=edit_form] .form-inline .field.ArchetypesBooleanWidget,form[name=edit_form] .form-inline .field.RejectionSetupWidget,form[name=edit_form] .form-inline span.option,form[name=sampleheader_form] .form-inline .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .form-inline .field.RejectionSetupWidget,form[name=sampleheader_form] .form-inline span.option,ul.configlets>li>form .form-inline .field.ArchetypesBooleanWidget,ul.configlets>li>form .form-inline .field.RejectionSetupWidget,ul.configlets>li>form .form-inline span.option{width:100%}@media(min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group,.form-inline form.loginform .field,.form-inline form.rowlike .field,.form-inline form.senaite-form .field,.form-inline form[action*=-controlpanel] .field,.form-inline form[name=analysisrequest_add_form] .field,.form-inline form[name=edit_form] .field,.form-inline form[name=sampleheader_form] .field,.form-inline ul.configlets>li>form .field,form.loginform .form-inline .field,form.rowlike .form-inline .field,form.senaite-form .form-inline .field,form[action*=-controlpanel] .form-inline .field,form[name=analysisrequest_add_form] .form-inline .field,form[name=edit_form] .form-inline .field,form[name=sampleheader_form] .form-inline .field,ul.configlets>li>form .form-inline .field{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control,.form-inline .portlet:not(.portletNavigationTree) input:not([name=submit]),.form-inline form.loginform input[type=text],.form-inline form.loginform select,.form-inline form.loginform textarea,.form-inline form.rowlike input[type=text],.form-inline form.rowlike select,.form-inline form.rowlike textarea,.form-inline form.senaite-form input[type=text],.form-inline form.senaite-form select,.form-inline form.senaite-form textarea,.form-inline form[action*=-controlpanel] input[type=text],.form-inline form[action*=-controlpanel] select,.form-inline form[action*=-controlpanel] textarea,.form-inline form[name=analysisrequest_add_form] input[type=text],.form-inline form[name=analysisrequest_add_form] select,.form-inline form[name=analysisrequest_add_form] textarea,.form-inline form[name=edit_form] div.listing-container input,.form-inline form[name=edit_form] div.listing-container select,.form-inline form[name=edit_form] input[type=text],.form-inline form[name=edit_form] select,.form-inline form[name=edit_form] textarea,.form-inline form[name=sampleheader_form] input[type=text],.form-inline form[name=sampleheader_form] select,.form-inline form[name=sampleheader_form] textarea,.form-inline ul.configlets>li>form input[type=text],.form-inline ul.configlets>li>form select,.form-inline ul.configlets>li>form textarea,.portlet:not(.portletNavigationTree) .form-inline input:not([name=submit]),form.loginform .form-inline input[type=text],form.loginform .form-inline select,form.loginform .form-inline textarea,form.rowlike .form-inline input[type=text],form.rowlike .form-inline select,form.rowlike .form-inline textarea,form.senaite-form .form-inline input[type=text],form.senaite-form .form-inline select,form.senaite-form .form-inline textarea,form[action*=-controlpanel] .form-inline input[type=text],form[action*=-controlpanel] .form-inline select,form[action*=-controlpanel] .form-inline textarea,form[name=analysisrequest_add_form] .form-inline input[type=text],form[name=analysisrequest_add_form] .form-inline select,form[name=analysisrequest_add_form] .form-inline textarea,form[name=edit_form] .form-inline input[type=text],form[name=edit_form] .form-inline select,form[name=edit_form] .form-inline textarea,form[name=edit_form] div.listing-container .form-inline input,form[name=edit_form] div.listing-container .form-inline select,form[name=sampleheader_form] .form-inline input[type=text],form[name=sampleheader_form] .form-inline select,form[name=sampleheader_form] .form-inline textarea,ul.configlets>li>form .form-inline input[type=text],ul.configlets>li>form .form-inline select,ul.configlets>li>form .form-inline textarea{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check,.form-inline form.loginform .field.ArchetypesBooleanWidget,.form-inline form.loginform .field.RejectionSetupWidget,.form-inline form.loginform span.option,.form-inline form.rowlike .field.ArchetypesBooleanWidget,.form-inline form.rowlike .field.RejectionSetupWidget,.form-inline form.rowlike span.option,.form-inline form.senaite-form .field.ArchetypesBooleanWidget,.form-inline form.senaite-form .field.RejectionSetupWidget,.form-inline form.senaite-form span.option,.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget,.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget,.form-inline form[action*=-controlpanel] span.option,.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget,.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget,.form-inline form[name=analysisrequest_add_form] span.option,.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget,.form-inline form[name=edit_form] .field.RejectionSetupWidget,.form-inline form[name=edit_form] span.option,.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget,.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget,.form-inline form[name=sampleheader_form] span.option,.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget,.form-inline ul.configlets>li>form .field.RejectionSetupWidget,.form-inline ul.configlets>li>form span.option,form.loginform .form-inline .field.ArchetypesBooleanWidget,form.loginform .form-inline .field.RejectionSetupWidget,form.loginform .form-inline span.option,form.rowlike .form-inline .field.ArchetypesBooleanWidget,form.rowlike .form-inline .field.RejectionSetupWidget,form.rowlike .form-inline span.option,form.senaite-form .form-inline .field.ArchetypesBooleanWidget,form.senaite-form .form-inline .field.RejectionSetupWidget,form.senaite-form .form-inline span.option,form[action*=-controlpanel] .form-inline .field.ArchetypesBooleanWidget,form[action*=-controlpanel] .form-inline .field.RejectionSetupWidget,form[action*=-controlpanel] .form-inline span.option,form[name=analysisrequest_add_form] .form-inline .field.ArchetypesBooleanWidget,form[name=analysisrequest_add_form] .form-inline .field.RejectionSetupWidget,form[name=analysisrequest_add_form] .form-inline span.option,form[name=edit_form] .form-inline .field.ArchetypesBooleanWidget,form[name=edit_form] .form-inline .field.RejectionSetupWidget,form[name=edit_form] .form-inline span.option,form[name=sampleheader_form] .form-inline .field.ArchetypesBooleanWidget,form[name=sampleheader_form] .form-inline .field.RejectionSetupWidget,form[name=sampleheader_form] .form-inline span.option,ul.configlets>li>form .form-inline .field.ArchetypesBooleanWidget,ul.configlets>li>form .form-inline .field.RejectionSetupWidget,ul.configlets>li>form .form-inline span.option{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input,.form-inline form.loginform .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.loginform .field.RejectionSetupWidget input[type=checkbox],.form-inline form.loginform span.option input[type=checkbox],.form-inline form.rowlike .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.rowlike .field.RejectionSetupWidget input[type=checkbox],.form-inline form.rowlike span.option input[type=checkbox],.form-inline form.senaite-form .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form.senaite-form .field.RejectionSetupWidget input[type=checkbox],.form-inline form.senaite-form span.option input[type=checkbox],.form-inline form[action*=-controlpanel] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[action*=-controlpanel] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[action*=-controlpanel] span.option input[type=checkbox],.form-inline form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=analysisrequest_add_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=analysisrequest_add_form] span.option input[type=checkbox],.form-inline form[name=edit_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=edit_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=edit_form] span.option input[type=checkbox],.form-inline form[name=sampleheader_form] .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline form[name=sampleheader_form] .field.RejectionSetupWidget input[type=checkbox],.form-inline form[name=sampleheader_form] span.option input[type=checkbox],.form-inline ul.configlets>li>form .field.ArchetypesBooleanWidget input[type=checkbox],.form-inline ul.configlets>li>form .field.RejectionSetupWidget input[type=checkbox],.form-inline ul.configlets>li>form span.option input[type=checkbox],form.loginform .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.loginform .field.RejectionSetupWidget .form-inline input[type=checkbox],form.loginform span.option .form-inline input[type=checkbox],form.rowlike .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.rowlike .field.RejectionSetupWidget .form-inline input[type=checkbox],form.rowlike span.option .form-inline input[type=checkbox],form.senaite-form .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form.senaite-form .field.RejectionSetupWidget .form-inline input[type=checkbox],form.senaite-form span.option .form-inline input[type=checkbox],form[action*=-controlpanel] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[action*=-controlpanel] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[action*=-controlpanel] span.option .form-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=analysisrequest_add_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=analysisrequest_add_form] span.option .form-inline input[type=checkbox],form[name=edit_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=edit_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=edit_form] span.option .form-inline input[type=checkbox],form[name=sampleheader_form] .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],form[name=sampleheader_form] .field.RejectionSetupWidget .form-inline input[type=checkbox],form[name=sampleheader_form] span.option .form-inline input[type=checkbox],ul.configlets>li>form .field.ArchetypesBooleanWidget .form-inline input[type=checkbox],ul.configlets>li>form .field.RejectionSetupWidget .form-inline input[type=checkbox],ul.configlets>li>form span.option .form-inline input[type=checkbox]{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{display:inline-block;font-weight:400;color:#293333;text-align:center;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{transition:none}}.btn:hover,.formControls input[name*="form.button"]:hover,.portlet:not(.portletNavigationTree) input[name=submit]:hover,a#setup-link:hover,form.loginform input[type=button]:hover,form.rowlike input[type=button]:hover,form.senaite-form input[type=button]:hover,form[action*=-controlpanel] input[type=button]:hover,form[name=analysisrequest_add_form] input[type=button]:hover,form[name=edit_form] input[type=button]:hover,form[name=sampleheader_form] input[type=button]:hover,section>ol.configlets li input[type=submit]:hover,section>ul.configlets li input[type=submit]:hover,ul.configlets>li>form input[type=button]:hover{color:#293333;text-decoration:none}.btn.focus,.btn:focus,.formControls input.focus[name*="form.button"],.formControls input[name*="form.button"]:focus,.portlet:not(.portletNavigationTree) input.focus[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:focus,a#setup-link:focus,a.focus#setup-link,form.loginform input.focus[type=button],form.loginform input[type=button]:focus,form.rowlike input.focus[type=button],form.rowlike input[type=button]:focus,form.senaite-form input.focus[type=button],form.senaite-form input[type=button]:focus,form[action*=-controlpanel] input.focus[type=button],form[action*=-controlpanel] input[type=button]:focus,form[name=analysisrequest_add_form] input.focus[type=button],form[name=analysisrequest_add_form] input[type=button]:focus,form[name=edit_form] input.focus[type=button],form[name=edit_form] input[type=button]:focus,form[name=sampleheader_form] input.focus[type=button],form[name=sampleheader_form] input[type=button]:focus,section>ol.configlets li input.focus[type=submit],section>ol.configlets li input[type=submit]:focus,section>ul.configlets li input.focus[type=submit],section>ul.configlets li input[type=submit]:focus,ul.configlets>li>form input.focus[type=button],ul.configlets>li>form input[type=button]:focus{outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.btn.disabled,.btn:disabled,.formControls input.disabled[name*="form.button"],.formControls input[name*="form.button"]:disabled,.portlet:not(.portletNavigationTree) input.disabled[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:disabled,a#setup-link:disabled,a.disabled#setup-link,form.loginform input.disabled[type=button],form.loginform input[type=button]:disabled,form.rowlike input.disabled[type=button],form.rowlike input[type=button]:disabled,form.senaite-form input.disabled[type=button],form.senaite-form input[type=button]:disabled,form[action*=-controlpanel] input.disabled[type=button],form[action*=-controlpanel] input[type=button]:disabled,form[name=analysisrequest_add_form] input.disabled[type=button],form[name=analysisrequest_add_form] input[type=button]:disabled,form[name=edit_form] input.disabled[type=button],form[name=edit_form] input[type=button]:disabled,form[name=sampleheader_form] input.disabled[type=button],form[name=sampleheader_form] input[type=button]:disabled,section>ol.configlets li input.disabled[type=submit],section>ol.configlets li input[type=submit]:disabled,section>ul.configlets li input.disabled[type=submit],section>ul.configlets li input[type=submit]:disabled,ul.configlets>li>form input.disabled[type=button],ul.configlets>li>form input[type=button]:disabled{opacity:.65}.btn:not(:disabled):not(.disabled),.formControls input[name*="form.button"]:not(:disabled):not(.disabled),.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled),a#setup-link:not(:disabled):not(.disabled),form.loginform input[type=button]:not(:disabled):not(.disabled),form.rowlike input[type=button]:not(:disabled):not(.disabled),form.senaite-form input[type=button]:not(:disabled):not(.disabled),form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled),form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled),form[name=edit_form] input[type=button]:not(:disabled):not(.disabled),form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled),section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled),section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled),ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,a.disabled#setup-link,fieldset:disabled a#setup-link,fieldset:disabled a.btn{pointer-events:none}.btn-primary,.formControls input[name*="form.button"][name="form.button.save"],.formControls input[name*="form.button"][name="form.buttons.save"],.portlet:not(.portletNavigationTree) input[name=submit]{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-primary:hover,.formControls input[name*="form.button"][name="form.button.save"]:hover,.formControls input[name*="form.button"][name="form.buttons.save"]:hover,.portlet:not(.portletNavigationTree) input[name=submit]:hover{color:#fff;background-color:#387493;border-color:#346d8a}.btn-primary.focus,.btn-primary:focus,.formControls input.focus[name*="form.button"][name="form.button.save"],.formControls input.focus[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:focus,.portlet:not(.portletNavigationTree) input.focus[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:focus{color:#fff;background-color:#387493;border-color:#346d8a;box-shadow:0 0 0 .2rem rgba(94,156,187,.5)}.btn-primary.disabled,.btn-primary:disabled,.formControls input.disabled[name*="form.button"][name="form.button.save"],.formControls input.disabled[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:disabled,.formControls input[name*="form.button"][name="form.buttons.save"]:disabled,.portlet:not(.portletNavigationTree) input.disabled[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:disabled{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.button.save"],.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.buttons.save"],.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled):active,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled):active,.portlet:not(.portletNavigationTree) .show>input.dropdown-toggle[name=submit],.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled).active,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#346d8a;border-color:#316581}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.button.save"]:focus,.formControls .show>input.dropdown-toggle[name*="form.button"][name="form.buttons.save"]:focus,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"][name="form.button.save"]:not(:disabled):not(.disabled):active:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"][name="form.buttons.save"]:not(:disabled):not(.disabled):active:focus,.portlet:not(.portletNavigationTree) .show>input.dropdown-toggle[name=submit]:focus,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled).active:focus,.portlet:not(.portletNavigationTree) input[name=submit]:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(94,156,187,.5)}.btn-secondary,.formControls input[name*="form.button"]{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover,.formControls input[name*="form.button"]:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus,.formControls input.focus[name*="form.button"],.formControls input[name*="form.button"]:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled,.formControls input.disabled[name*="form.button"],.formControls input[name*="form.button"]:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.formControls .show>input.dropdown-toggle[name*="form.button"],.formControls input[name*="form.button"]:not(:disabled):not(.disabled).active,.formControls input[name*="form.button"]:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.formControls .show>input.dropdown-toggle[name*="form.button"]:focus,.formControls input[name*="form.button"]:not(:disabled):not(.disabled).active:focus,.formControls input[name*="form.button"]:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success.focus,.btn-success:focus,.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info.focus,.btn-info:focus,.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning.focus,.btn-warning:focus,.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger.focus,.btn-danger:focus,.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light.focus,.btn-light:focus,.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark.focus,.btn-dark:focus,.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#428aaf;border-color:#428aaf}.btn-outline-primary:hover{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#428aaf;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#428aaf;border-color:#428aaf}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.btn-outline-secondary,a#setup-link,form.loginform input[type=button],form.rowlike input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover,a#setup-link:hover,form.loginform input[type=button]:hover,form.rowlike input[type=button]:hover,form.senaite-form input[type=button]:hover,form[action*=-controlpanel] input[type=button]:hover,form[name=analysisrequest_add_form] input[type=button]:hover,form[name=edit_form] input[type=button]:hover,form[name=sampleheader_form] input[type=button]:hover,section>ol.configlets li input[type=submit]:hover,section>ul.configlets li input[type=submit]:hover,ul.configlets>li>form input[type=button]:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus,a#setup-link:focus,a.focus#setup-link,form.loginform input.focus[type=button],form.loginform input[type=button]:focus,form.rowlike input.focus[type=button],form.rowlike input[type=button]:focus,form.senaite-form input.focus[type=button],form.senaite-form input[type=button]:focus,form[action*=-controlpanel] input.focus[type=button],form[action*=-controlpanel] input[type=button]:focus,form[name=analysisrequest_add_form] input.focus[type=button],form[name=analysisrequest_add_form] input[type=button]:focus,form[name=edit_form] input.focus[type=button],form[name=edit_form] input[type=button]:focus,form[name=sampleheader_form] input.focus[type=button],form[name=sampleheader_form] input[type=button]:focus,section>ol.configlets li input.focus[type=submit],section>ol.configlets li input[type=submit]:focus,section>ul.configlets li input.focus[type=submit],section>ul.configlets li input[type=submit]:focus,ul.configlets>li>form input.focus[type=button],ul.configlets>li>form input[type=button]:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled,a#setup-link:disabled,a.disabled#setup-link,form.loginform input.disabled[type=button],form.loginform input[type=button]:disabled,form.rowlike input.disabled[type=button],form.rowlike input[type=button]:disabled,form.senaite-form input.disabled[type=button],form.senaite-form input[type=button]:disabled,form[action*=-controlpanel] input.disabled[type=button],form[action*=-controlpanel] input[type=button]:disabled,form[name=analysisrequest_add_form] input.disabled[type=button],form[name=analysisrequest_add_form] input[type=button]:disabled,form[name=edit_form] input.disabled[type=button],form[name=edit_form] input[type=button]:disabled,form[name=sampleheader_form] input.disabled[type=button],form[name=sampleheader_form] input[type=button]:disabled,section>ol.configlets li input.disabled[type=submit],section>ol.configlets li input[type=submit]:disabled,section>ul.configlets li input.disabled[type=submit],section>ul.configlets li input[type=submit]:disabled,ul.configlets>li>form input.disabled[type=button],ul.configlets>li>form input[type=button]:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle,.show>a.dropdown-toggle#setup-link,a#setup-link:not(:disabled):not(.disabled).active,a#setup-link:not(:disabled):not(.disabled):active,form.loginform .show>input.dropdown-toggle[type=button],form.loginform input[type=button]:not(:disabled):not(.disabled).active,form.loginform input[type=button]:not(:disabled):not(.disabled):active,form.rowlike .show>input.dropdown-toggle[type=button],form.rowlike input[type=button]:not(:disabled):not(.disabled).active,form.rowlike input[type=button]:not(:disabled):not(.disabled):active,form.senaite-form .show>input.dropdown-toggle[type=button],form.senaite-form input[type=button]:not(:disabled):not(.disabled).active,form.senaite-form input[type=button]:not(:disabled):not(.disabled):active,form[action*=-controlpanel] .show>input.dropdown-toggle[type=button],form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled).active,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled):active,form[name=analysisrequest_add_form] .show>input.dropdown-toggle[type=button],form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled):active,form[name=edit_form] .show>input.dropdown-toggle[type=button],form[name=edit_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled):active,form[name=sampleheader_form] .show>input.dropdown-toggle[type=button],form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled).active,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled):active,section>ol.configlets li .show>input.dropdown-toggle[type=submit],section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled).active,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled):active,section>ul.configlets li .show>input.dropdown-toggle[type=submit],section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled).active,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled):active,ul.configlets>li>form .show>input.dropdown-toggle[type=button],ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled).active,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled):active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus,.show>a.dropdown-toggle#setup-link:focus,a#setup-link:not(:disabled):not(.disabled).active:focus,a#setup-link:not(:disabled):not(.disabled):active:focus,form.loginform .show>input.dropdown-toggle[type=button]:focus,form.loginform input[type=button]:not(:disabled):not(.disabled).active:focus,form.loginform input[type=button]:not(:disabled):not(.disabled):active:focus,form.rowlike .show>input.dropdown-toggle[type=button]:focus,form.rowlike input[type=button]:not(:disabled):not(.disabled).active:focus,form.rowlike input[type=button]:not(:disabled):not(.disabled):active:focus,form.senaite-form .show>input.dropdown-toggle[type=button]:focus,form.senaite-form input[type=button]:not(:disabled):not(.disabled).active:focus,form.senaite-form input[type=button]:not(:disabled):not(.disabled):active:focus,form[action*=-controlpanel] .show>input.dropdown-toggle[type=button]:focus,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled).active:focus,form[action*=-controlpanel] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=analysisrequest_add_form] .show>input.dropdown-toggle[type=button]:focus,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=analysisrequest_add_form] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=edit_form] .show>input.dropdown-toggle[type=button]:focus,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=edit_form] input[type=button]:not(:disabled):not(.disabled):active:focus,form[name=sampleheader_form] .show>input.dropdown-toggle[type=button]:focus,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled).active:focus,form[name=sampleheader_form] input[type=button]:not(:disabled):not(.disabled):active:focus,section>ol.configlets li .show>input.dropdown-toggle[type=submit]:focus,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled).active:focus,section>ol.configlets li input[type=submit]:not(:disabled):not(.disabled):active:focus,section>ul.configlets li .show>input.dropdown-toggle[type=submit]:focus,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled).active:focus,section>ul.configlets li input[type=submit]:not(:disabled):not(.disabled):active:focus,ul.configlets>li>form .show>input.dropdown-toggle[type=button]:focus,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled).active:focus,ul.configlets>li>form input[type=button]:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#428aaf;text-decoration:none}.btn-link:hover{color:#2d5e77}.btn-link.focus,.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-group-lg>a#setup-link,.btn-lg,.formControls .btn-group-lg>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-lg>input[name=submit],form.loginform .btn-group-lg>input[type=button],form.rowlike .btn-group-lg>input[type=button],form.senaite-form .btn-group-lg>input[type=button],form[action*=-controlpanel] .btn-group-lg>input[type=button],form[name=analysisrequest_add_form] .btn-group-lg>input[type=button],form[name=edit_form] .btn-group-lg>input[type=button],form[name=sampleheader_form] .btn-group-lg>input[type=button],section>ol.configlets li .btn-group-lg>input[type=submit],section>ul.configlets li .btn-group-lg>input[type=submit],ul.configlets>li>form .btn-group-lg>input[type=button]{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-group-sm>a#setup-link,.btn-sm,.formControls input[name*="form.button"],.portlet:not(.portletNavigationTree) input[name=submit],form.loginform .btn-group-sm>input[type=button],form.loginform input[type=button],form.rowlike .btn-group-sm>input[type=button],form.rowlike input[type=button],form.senaite-form .btn-group-sm>input[type=button],form.senaite-form input[type=button],form[action*=-controlpanel] .btn-group-sm>input[type=button],form[action*=-controlpanel] input[type=button],form[name=analysisrequest_add_form] .btn-group-sm>input[type=button],form[name=analysisrequest_add_form] input[type=button],form[name=edit_form] .btn-group-sm>input[type=button],form[name=edit_form] input[type=button],form[name=sampleheader_form] .btn-group-sm>input[type=button],form[name=sampleheader_form] input[type=button],section>ol.configlets li input[type=submit],section>ul.configlets li input[type=submit],ul.configlets>li>form input[type=button]{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.width{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion:reduce){.collapsing.width{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty:after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#293333;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty:after{margin-left:0}.dropright .dropdown-toggle:after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle:after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";display:none}.dropleft .dropdown-toggle:before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty:after{margin-left:0}.dropleft .dropdown-toggle:before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#428aaf}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group-vertical>a#setup-link,.btn-group>.btn,.btn-group>a#setup-link,.formControls .btn-group-vertical>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit],form.loginform .btn-group-vertical>input[type=button],form.loginform .btn-group>input[type=button],form.rowlike .btn-group-vertical>input[type=button],form.rowlike .btn-group>input[type=button],form.senaite-form .btn-group-vertical>input[type=button],form.senaite-form .btn-group>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button],form[name=edit_form] .btn-group>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button],section>ol.configlets li .btn-group-vertical>input[type=submit],section>ol.configlets li .btn-group>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit],section>ul.configlets li .btn-group>input[type=submit],ul.configlets>li>form .btn-group-vertical>input[type=button],ul.configlets>li>form .btn-group>input[type=button]{position:relative;flex:1 1 auto}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group-vertical>a#setup-link:active,.btn-group-vertical>a#setup-link:focus,.btn-group-vertical>a#setup-link:hover,.btn-group-vertical>a.active#setup-link,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover,.btn-group>a#setup-link:active,.btn-group>a#setup-link:focus,.btn-group>a#setup-link:hover,.btn-group>a.active#setup-link,.formControls .btn-group-vertical>input.active[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:active,.formControls .btn-group-vertical>input[name*="form.button"]:focus,.formControls .btn-group-vertical>input[name*="form.button"]:hover,.formControls .btn-group>input.active[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:active,.formControls .btn-group>input[name*="form.button"]:focus,.formControls .btn-group>input[name*="form.button"]:hover,.portlet:not(.portletNavigationTree) .btn-group-vertical>input.active[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:active,.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:focus,.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:hover,.portlet:not(.portletNavigationTree) .btn-group>input.active[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:active,.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:focus,.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:hover,form.loginform .btn-group-vertical>input.active[type=button],form.loginform .btn-group-vertical>input[type=button]:active,form.loginform .btn-group-vertical>input[type=button]:focus,form.loginform .btn-group-vertical>input[type=button]:hover,form.loginform .btn-group>input.active[type=button],form.loginform .btn-group>input[type=button]:active,form.loginform .btn-group>input[type=button]:focus,form.loginform .btn-group>input[type=button]:hover,form.rowlike .btn-group-vertical>input.active[type=button],form.rowlike .btn-group-vertical>input[type=button]:active,form.rowlike .btn-group-vertical>input[type=button]:focus,form.rowlike .btn-group-vertical>input[type=button]:hover,form.rowlike .btn-group>input.active[type=button],form.rowlike .btn-group>input[type=button]:active,form.rowlike .btn-group>input[type=button]:focus,form.rowlike .btn-group>input[type=button]:hover,form.senaite-form .btn-group-vertical>input.active[type=button],form.senaite-form .btn-group-vertical>input[type=button]:active,form.senaite-form .btn-group-vertical>input[type=button]:focus,form.senaite-form .btn-group-vertical>input[type=button]:hover,form.senaite-form .btn-group>input.active[type=button],form.senaite-form .btn-group>input[type=button]:active,form.senaite-form .btn-group>input[type=button]:focus,form.senaite-form .btn-group>input[type=button]:hover,form[action*=-controlpanel] .btn-group-vertical>input.active[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:active,form[action*=-controlpanel] .btn-group-vertical>input[type=button]:focus,form[action*=-controlpanel] .btn-group-vertical>input[type=button]:hover,form[action*=-controlpanel] .btn-group>input.active[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:active,form[action*=-controlpanel] .btn-group>input[type=button]:focus,form[action*=-controlpanel] .btn-group>input[type=button]:hover,form[name=analysisrequest_add_form] .btn-group-vertical>input.active[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:active,form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:focus,form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:hover,form[name=analysisrequest_add_form] .btn-group>input.active[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:active,form[name=analysisrequest_add_form] .btn-group>input[type=button]:focus,form[name=analysisrequest_add_form] .btn-group>input[type=button]:hover,form[name=edit_form] .btn-group-vertical>input.active[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:active,form[name=edit_form] .btn-group-vertical>input[type=button]:focus,form[name=edit_form] .btn-group-vertical>input[type=button]:hover,form[name=edit_form] .btn-group>input.active[type=button],form[name=edit_form] .btn-group>input[type=button]:active,form[name=edit_form] .btn-group>input[type=button]:focus,form[name=edit_form] .btn-group>input[type=button]:hover,form[name=sampleheader_form] .btn-group-vertical>input.active[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:active,form[name=sampleheader_form] .btn-group-vertical>input[type=button]:focus,form[name=sampleheader_form] .btn-group-vertical>input[type=button]:hover,form[name=sampleheader_form] .btn-group>input.active[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:active,form[name=sampleheader_form] .btn-group>input[type=button]:focus,form[name=sampleheader_form] .btn-group>input[type=button]:hover,section>ol.configlets li .btn-group-vertical>input.active[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:active,section>ol.configlets li .btn-group-vertical>input[type=submit]:focus,section>ol.configlets li .btn-group-vertical>input[type=submit]:hover,section>ol.configlets li .btn-group>input.active[type=submit],section>ol.configlets li .btn-group>input[type=submit]:active,section>ol.configlets li .btn-group>input[type=submit]:focus,section>ol.configlets li .btn-group>input[type=submit]:hover,section>ul.configlets li .btn-group-vertical>input.active[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:active,section>ul.configlets li .btn-group-vertical>input[type=submit]:focus,section>ul.configlets li .btn-group-vertical>input[type=submit]:hover,section>ul.configlets li .btn-group>input.active[type=submit],section>ul.configlets li .btn-group>input[type=submit]:active,section>ul.configlets li .btn-group>input[type=submit]:focus,section>ul.configlets li .btn-group>input[type=submit]:hover,ul.configlets>li>form .btn-group-vertical>input.active[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:active,ul.configlets>li>form .btn-group-vertical>input[type=button]:focus,ul.configlets>li>form .btn-group-vertical>input[type=button]:hover,ul.configlets>li>form .btn-group>input.active[type=button],ul.configlets>li>form .btn-group>input[type=button]:active,ul.configlets>li>form .btn-group>input[type=button]:focus,ul.configlets>li>form .btn-group>input[type=button]:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child),.btn-group>a#setup-link:not(:first-child),.formControls .btn-group>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:first-child),form.loginform .btn-group>input[type=button]:not(:first-child),form.rowlike .btn-group>input[type=button]:not(:first-child),form.senaite-form .btn-group>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:first-child),form[name=edit_form] .btn-group>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group>input[type=button]:not(:first-child),section>ol.configlets li .btn-group>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group>input[type=button]:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn-group:not(:last-child)>a#setup-link,.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>a#setup-link:not(:last-child):not(.dropdown-toggle),.formControls .btn-group>.btn-group:not(:last-child)>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .btn-group>.btn-group:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:last-child):not(.dropdown-toggle),form.loginform .btn-group>.btn-group:not(:last-child)>input[type=button],form.loginform .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .btn-group>.btn-group:not(:last-child)>input[type=button],form.rowlike .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .btn-group>.btn-group:not(:last-child)>input[type=button],form.senaite-form .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .btn-group>.btn-group:not(:last-child)>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=edit_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .btn-group>.btn-group:not(:last-child)>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .btn-group>.btn-group:not(:last-child)>input[type=submit],section>ol.configlets li .btn-group>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .btn-group>.btn-group:not(:last-child)>input[type=submit],section>ul.configlets li .btn-group>input[type=submit]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .btn-group>.btn-group:not(:last-child)>input[type=button],ul.configlets>li>form .btn-group>input[type=button]:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn-group:not(:first-child)>a#setup-link,.btn-group>.btn:not(:first-child),.btn-group>a#setup-link:not(:first-child),.formControls .btn-group>.btn-group:not(:first-child)>input[name*="form.button"],.formControls .btn-group>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group>.btn-group:not(:first-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group>input[name=submit]:not(:first-child),form.loginform .btn-group>.btn-group:not(:first-child)>input[type=button],form.loginform .btn-group>input[type=button]:not(:first-child),form.rowlike .btn-group>.btn-group:not(:first-child)>input[type=button],form.rowlike .btn-group>input[type=button]:not(:first-child),form.senaite-form .btn-group>.btn-group:not(:first-child)>input[type=button],form.senaite-form .btn-group>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group>.btn-group:not(:first-child)>input[type=button],form[action*=-controlpanel] .btn-group>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group>input[type=button]:not(:first-child),form[name=edit_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=edit_form] .btn-group>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group>.btn-group:not(:first-child)>input[type=button],form[name=sampleheader_form] .btn-group>input[type=button]:not(:first-child),section>ol.configlets li .btn-group>.btn-group:not(:first-child)>input[type=submit],section>ol.configlets li .btn-group>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group>.btn-group:not(:first-child)>input[type=submit],section>ul.configlets li .btn-group>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group>.btn-group:not(:first-child)>input[type=button],ul.configlets>li>form .btn-group>input[type=button]:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split:after,.dropright .dropdown-toggle-split:after,.dropup .dropdown-toggle-split:after{margin-left:0}.dropleft .dropdown-toggle-split:before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-group-sm>a#setup-link+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split,.formControls input[name*="form.button"]+.dropdown-toggle-split,.portlet:not(.portletNavigationTree) input[name=submit]+.dropdown-toggle-split,form.loginform input[type=button]+.dropdown-toggle-split,form.rowlike input[type=button]+.dropdown-toggle-split,form.senaite-form input[type=button]+.dropdown-toggle-split,form[action*=-controlpanel] input[type=button]+.dropdown-toggle-split,form[name=analysisrequest_add_form] input[type=button]+.dropdown-toggle-split,form[name=edit_form] input[type=button]+.dropdown-toggle-split,form[name=sampleheader_form] input[type=button]+.dropdown-toggle-split,section>ol.configlets li input[type=submit]+.dropdown-toggle-split,section>ul.configlets li input[type=submit]+.dropdown-toggle-split,ul.configlets>li>form input[type=button]+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-group-lg>a#setup-link+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split,.formControls .btn-group-lg>input[name*="form.button"]+.dropdown-toggle-split,.portlet:not(.portletNavigationTree) .btn-group-lg>input[name=submit]+.dropdown-toggle-split,form.loginform .btn-group-lg>input[type=button]+.dropdown-toggle-split,form.rowlike .btn-group-lg>input[type=button]+.dropdown-toggle-split,form.senaite-form .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[action*=-controlpanel] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=analysisrequest_add_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=edit_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,form[name=sampleheader_form] .btn-group-lg>input[type=button]+.dropdown-toggle-split,section>ol.configlets li .btn-group-lg>input[type=submit]+.dropdown-toggle-split,section>ul.configlets li .btn-group-lg>input[type=submit]+.dropdown-toggle-split,ul.configlets>li>form .btn-group-lg>input[type=button]+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>a#setup-link,.formControls .btn-group-vertical>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit],form.loginform .btn-group-vertical>input[type=button],form.rowlike .btn-group-vertical>input[type=button],form.senaite-form .btn-group-vertical>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button],section>ol.configlets li .btn-group-vertical>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit],ul.configlets>li>form .btn-group-vertical>input[type=button]{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>a#setup-link:not(:first-child),.formControls .btn-group-vertical>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:first-child),form.loginform .btn-group-vertical>input[type=button]:not(:first-child),form.rowlike .btn-group-vertical>input[type=button]:not(:first-child),form.senaite-form .btn-group-vertical>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=edit_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:first-child),section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn-group:not(:last-child)>a#setup-link,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>a#setup-link:not(:last-child):not(.dropdown-toggle),.formControls .btn-group-vertical>.btn-group:not(:last-child)>input[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .btn-group-vertical>.btn-group:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:last-child):not(.dropdown-toggle),form.loginform .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.loginform .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.rowlike .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form.senaite-form .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .btn-group-vertical>.btn-group:not(:last-child)>input[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .btn-group-vertical>.btn-group:not(:last-child)>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .btn-group-vertical>.btn-group:not(:last-child)>input[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn-group:not(:first-child)>a#setup-link,.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>a#setup-link:not(:first-child),.formControls .btn-group-vertical>.btn-group:not(:first-child)>input[name*="form.button"],.formControls .btn-group-vertical>input[name*="form.button"]:not(:first-child),.portlet:not(.portletNavigationTree) .btn-group-vertical>.btn-group:not(:first-child)>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-vertical>input[name=submit]:not(:first-child),form.loginform .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.loginform .btn-group-vertical>input[type=button]:not(:first-child),form.rowlike .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.rowlike .btn-group-vertical>input[type=button]:not(:first-child),form.senaite-form .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form.senaite-form .btn-group-vertical>input[type=button]:not(:first-child),form[action*=-controlpanel] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[action*=-controlpanel] .btn-group-vertical>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=edit_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=edit_form] .btn-group-vertical>input[type=button]:not(:first-child),form[name=sampleheader_form] .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],form[name=sampleheader_form] .btn-group-vertical>input[type=button]:not(:first-child),section>ol.configlets li .btn-group-vertical>.btn-group:not(:first-child)>input[type=submit],section>ol.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),section>ul.configlets li .btn-group-vertical>.btn-group:not(:first-child)>input[type=submit],section>ul.configlets li .btn-group-vertical>input[type=submit]:not(:first-child),ul.configlets>li>form .btn-group-vertical>.btn-group:not(:first-child)>input[type=button],ul.configlets>li>form .btn-group-vertical>input[type=button]:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn,.btn-group-toggle>.btn-group>a#setup-link,.btn-group-toggle>a#setup-link,.formControls .btn-group-toggle>.btn-group>input[name*="form.button"],.formControls .btn-group-toggle>input[name*="form.button"],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit],form.loginform .btn-group-toggle>.btn-group>input[type=button],form.loginform .btn-group-toggle>input[type=button],form.rowlike .btn-group-toggle>.btn-group>input[type=button],form.rowlike .btn-group-toggle>input[type=button],form.senaite-form .btn-group-toggle>.btn-group>input[type=button],form.senaite-form .btn-group-toggle>input[type=button],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button],form[action*=-controlpanel] .btn-group-toggle>input[type=button],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button],form[name=edit_form] .btn-group-toggle>input[type=button],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button],form[name=sampleheader_form] .btn-group-toggle>input[type=button],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit],section>ol.configlets li .btn-group-toggle>input[type=submit],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit],section>ul.configlets li .btn-group-toggle>input[type=submit],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button],ul.configlets>li>form .btn-group-toggle>input[type=button]{margin-bottom:0}.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>a#setup-link input[type=checkbox],.btn-group-toggle>.btn-group>a#setup-link input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>a#setup-link input[type=checkbox],.btn-group-toggle>a#setup-link input[type=radio],.formControls .btn-group-toggle>.btn-group>input[name*="form.button"] input[type=checkbox],.formControls .btn-group-toggle>.btn-group>input[name*="form.button"] input[type=radio],.formControls .btn-group-toggle>input[name*="form.button"] input[type=checkbox],.formControls .btn-group-toggle>input[name*="form.button"] input[type=radio],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit] input[type=checkbox],.portlet:not(.portletNavigationTree) .btn-group-toggle>.btn-group>input[name=submit] input[type=radio],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit] input[type=checkbox],.portlet:not(.portletNavigationTree) .btn-group-toggle>input[name=submit] input[type=radio],form.loginform .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.loginform .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.loginform .btn-group-toggle>input[type=button] input[type=checkbox],form.loginform .btn-group-toggle>input[type=button] input[type=radio],form.rowlike .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.rowlike .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.rowlike .btn-group-toggle>input[type=button] input[type=checkbox],form.rowlike .btn-group-toggle>input[type=button] input[type=radio],form.senaite-form .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form.senaite-form .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form.senaite-form .btn-group-toggle>input[type=button] input[type=checkbox],form.senaite-form .btn-group-toggle>input[type=button] input[type=radio],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[action*=-controlpanel] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[action*=-controlpanel] .btn-group-toggle>input[type=button] input[type=checkbox],form[action*=-controlpanel] .btn-group-toggle>input[type=button] input[type=radio],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=analysisrequest_add_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=analysisrequest_add_form] .btn-group-toggle>input[type=button] input[type=radio],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=edit_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=edit_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=edit_form] .btn-group-toggle>input[type=button] input[type=radio],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],form[name=sampleheader_form] .btn-group-toggle>.btn-group>input[type=button] input[type=radio],form[name=sampleheader_form] .btn-group-toggle>input[type=button] input[type=checkbox],form[name=sampleheader_form] .btn-group-toggle>input[type=button] input[type=radio],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=checkbox],section>ol.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=radio],section>ol.configlets li .btn-group-toggle>input[type=submit] input[type=checkbox],section>ol.configlets li .btn-group-toggle>input[type=submit] input[type=radio],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=checkbox],section>ul.configlets li .btn-group-toggle>.btn-group>input[type=submit] input[type=radio],section>ul.configlets li .btn-group-toggle>input[type=submit] input[type=checkbox],section>ul.configlets li .btn-group-toggle>input[type=submit] input[type=radio],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button] input[type=checkbox],ul.configlets>li>form .btn-group-toggle>.btn-group>input[type=button] input[type=radio],ul.configlets>li>form .btn-group-toggle>input[type=button] input[type=checkbox],ul.configlets>li>form .btn-group-toggle>input[type=button] input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit]),form.loginform .input-group>input[type=text],form.loginform .input-group>select,form.loginform .input-group>textarea,form.rowlike .input-group>input[type=text],form.rowlike .input-group>select,form.rowlike .input-group>textarea,form.senaite-form .input-group>input[type=text],form.senaite-form .input-group>select,form.senaite-form .input-group>textarea,form[action*=-controlpanel] .input-group>input[type=text],form[action*=-controlpanel] .input-group>select,form[action*=-controlpanel] .input-group>textarea,form[name=analysisrequest_add_form] .input-group>input[type=text],form[name=analysisrequest_add_form] .input-group>select,form[name=analysisrequest_add_form] .input-group>textarea,form[name=edit_form] .input-group>input[type=text],form[name=edit_form] .input-group>select,form[name=edit_form] .input-group>textarea,form[name=edit_form] div.listing-container .input-group>input,form[name=edit_form] div.listing-container .input-group>select,form[name=sampleheader_form] .input-group>input[type=text],form[name=sampleheader_form] .input-group>select,form[name=sampleheader_form] .input-group>textarea,ul.configlets>li>form .input-group>input[type=text],ul.configlets>li>form .input-group>select,ul.configlets>li>form .input-group>textarea{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control,.portlet:not(.portletNavigationTree) .input-group>.custom-file+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.custom-select+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.form-control+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>.form-control-plaintext+input:not([name=submit]),.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.custom-file,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.custom-select,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+.form-control,.portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.loginform .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.loginform .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.loginform .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.rowlike .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.rowlike .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.rowlike .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form.senaite-form .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form.senaite-form .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input:not([name=submit])+input,.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=edit_form] div.listing-container .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group>textarea+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+input[type=text],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+select,.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input:not([name=submit])+textarea,.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>input[type=text]+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>select+input:not([name=submit]),.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group>textarea+input:not([name=submit]),form.loginform .input-group>.custom-file+input[type=text],form.loginform .input-group>.custom-file+select,form.loginform .input-group>.custom-file+textarea,form.loginform .input-group>.custom-select+input[type=text],form.loginform .input-group>.custom-select+select,form.loginform .input-group>.custom-select+textarea,form.loginform .input-group>.form-control+input[type=text],form.loginform .input-group>.form-control+select,form.loginform .input-group>.form-control+textarea,form.loginform .input-group>.form-control-plaintext+input[type=text],form.loginform .input-group>.form-control-plaintext+select,form.loginform .input-group>.form-control-plaintext+textarea,form.loginform .input-group>input[type=text]+.custom-file,form.loginform .input-group>input[type=text]+.custom-select,form.loginform .input-group>input[type=text]+.form-control,form.loginform .input-group>input[type=text]+input[type=text],form.loginform .input-group>input[type=text]+select,form.loginform .input-group>input[type=text]+textarea,form.loginform .input-group>select+.custom-file,form.loginform .input-group>select+.custom-select,form.loginform .input-group>select+.form-control,form.loginform .input-group>select+input[type=text],form.loginform .input-group>select+select,form.loginform .input-group>select+textarea,form.loginform .input-group>textarea+.custom-file,form.loginform .input-group>textarea+.custom-select,form.loginform .input-group>textarea+.form-control,form.loginform .input-group>textarea+input[type=text],form.loginform .input-group>textarea+select,form.loginform .input-group>textarea+textarea,form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.loginform .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.loginform .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.loginform .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.loginform .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.loginform form.rowlike .input-group>input[type=text]+input[type=text],form.loginform form.rowlike .input-group>input[type=text]+select,form.loginform form.rowlike .input-group>input[type=text]+textarea,form.loginform form.rowlike .input-group>select+input[type=text],form.loginform form.rowlike .input-group>select+select,form.loginform form.rowlike .input-group>select+textarea,form.loginform form.rowlike .input-group>textarea+input[type=text],form.loginform form.rowlike .input-group>textarea+select,form.loginform form.rowlike .input-group>textarea+textarea,form.loginform form.senaite-form .input-group>input[type=text]+input[type=text],form.loginform form.senaite-form .input-group>input[type=text]+select,form.loginform form.senaite-form .input-group>input[type=text]+textarea,form.loginform form.senaite-form .input-group>select+input[type=text],form.loginform form.senaite-form .input-group>select+select,form.loginform form.senaite-form .input-group>select+textarea,form.loginform form.senaite-form .input-group>textarea+input[type=text],form.loginform form.senaite-form .input-group>textarea+select,form.loginform form.senaite-form .input-group>textarea+textarea,form.loginform form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.loginform form[action*=-controlpanel] .input-group>input[type=text]+select,form.loginform form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.loginform form[action*=-controlpanel] .input-group>select+input[type=text],form.loginform form[action*=-controlpanel] .input-group>select+select,form.loginform form[action*=-controlpanel] .input-group>select+textarea,form.loginform form[action*=-controlpanel] .input-group>textarea+input[type=text],form.loginform form[action*=-controlpanel] .input-group>textarea+select,form.loginform form[action*=-controlpanel] .input-group>textarea+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.loginform form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>select+select,form.loginform form[name=analysisrequest_add_form] .input-group>select+textarea,form.loginform form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.loginform form[name=analysisrequest_add_form] .input-group>textarea+select,form.loginform form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.loginform form[name=edit_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=edit_form] .input-group>input[type=text]+select,form.loginform form[name=edit_form] .input-group>input[type=text]+textarea,form.loginform form[name=edit_form] .input-group>select+input[type=text],form.loginform form[name=edit_form] .input-group>select+select,form.loginform form[name=edit_form] .input-group>select+textarea,form.loginform form[name=edit_form] .input-group>textarea+input[type=text],form.loginform form[name=edit_form] .input-group>textarea+select,form.loginform form[name=edit_form] .input-group>textarea+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.loginform form[name=edit_form] div.listing-container .input-group>input+select,form.loginform form[name=edit_form] div.listing-container .input-group>input+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.loginform form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.loginform form[name=edit_form] div.listing-container .input-group>select+input,form.loginform form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.loginform form[name=edit_form] div.listing-container .input-group>select+select,form.loginform form[name=edit_form] div.listing-container .input-group>select+textarea,form.loginform form[name=edit_form] div.listing-container .input-group>textarea+input,form.loginform form[name=edit_form] div.listing-container .input-group>textarea+select,form.loginform form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.loginform form[name=sampleheader_form] .input-group>input[type=text]+select,form.loginform form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.loginform form[name=sampleheader_form] .input-group>select+input[type=text],form.loginform form[name=sampleheader_form] .input-group>select+select,form.loginform form[name=sampleheader_form] .input-group>select+textarea,form.loginform form[name=sampleheader_form] .input-group>textarea+input[type=text],form.loginform form[name=sampleheader_form] .input-group>textarea+select,form.loginform form[name=sampleheader_form] .input-group>textarea+textarea,form.loginform ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.loginform ul.configlets>li>form .input-group>input[type=text]+select,form.loginform ul.configlets>li>form .input-group>input[type=text]+textarea,form.loginform ul.configlets>li>form .input-group>select+input[type=text],form.loginform ul.configlets>li>form .input-group>select+select,form.loginform ul.configlets>li>form .input-group>select+textarea,form.loginform ul.configlets>li>form .input-group>textarea+input[type=text],form.loginform ul.configlets>li>form .input-group>textarea+select,form.loginform ul.configlets>li>form .input-group>textarea+textarea,form.rowlike .input-group>.custom-file+input[type=text],form.rowlike .input-group>.custom-file+select,form.rowlike .input-group>.custom-file+textarea,form.rowlike .input-group>.custom-select+input[type=text],form.rowlike .input-group>.custom-select+select,form.rowlike .input-group>.custom-select+textarea,form.rowlike .input-group>.form-control+input[type=text],form.rowlike .input-group>.form-control+select,form.rowlike .input-group>.form-control+textarea,form.rowlike .input-group>.form-control-plaintext+input[type=text],form.rowlike .input-group>.form-control-plaintext+select,form.rowlike .input-group>.form-control-plaintext+textarea,form.rowlike .input-group>input[type=text]+.custom-file,form.rowlike .input-group>input[type=text]+.custom-select,form.rowlike .input-group>input[type=text]+.form-control,form.rowlike .input-group>input[type=text]+input[type=text],form.rowlike .input-group>input[type=text]+select,form.rowlike .input-group>input[type=text]+textarea,form.rowlike .input-group>select+.custom-file,form.rowlike .input-group>select+.custom-select,form.rowlike .input-group>select+.form-control,form.rowlike .input-group>select+input[type=text],form.rowlike .input-group>select+select,form.rowlike .input-group>select+textarea,form.rowlike .input-group>textarea+.custom-file,form.rowlike .input-group>textarea+.custom-select,form.rowlike .input-group>textarea+.form-control,form.rowlike .input-group>textarea+input[type=text],form.rowlike .input-group>textarea+select,form.rowlike .input-group>textarea+textarea,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.rowlike .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.rowlike .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.rowlike .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.rowlike form.loginform .input-group>input[type=text]+input[type=text],form.rowlike form.loginform .input-group>input[type=text]+select,form.rowlike form.loginform .input-group>input[type=text]+textarea,form.rowlike form.loginform .input-group>select+input[type=text],form.rowlike form.loginform .input-group>select+select,form.rowlike form.loginform .input-group>select+textarea,form.rowlike form.loginform .input-group>textarea+input[type=text],form.rowlike form.loginform .input-group>textarea+select,form.rowlike form.loginform .input-group>textarea+textarea,form.rowlike form.senaite-form .input-group>input[type=text]+input[type=text],form.rowlike form.senaite-form .input-group>input[type=text]+select,form.rowlike form.senaite-form .input-group>input[type=text]+textarea,form.rowlike form.senaite-form .input-group>select+input[type=text],form.rowlike form.senaite-form .input-group>select+select,form.rowlike form.senaite-form .input-group>select+textarea,form.rowlike form.senaite-form .input-group>textarea+input[type=text],form.rowlike form.senaite-form .input-group>textarea+select,form.rowlike form.senaite-form .input-group>textarea+textarea,form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+select,form.rowlike form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.rowlike form[action*=-controlpanel] .input-group>select+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>select+select,form.rowlike form[action*=-controlpanel] .input-group>select+textarea,form.rowlike form[action*=-controlpanel] .input-group>textarea+input[type=text],form.rowlike form[action*=-controlpanel] .input-group>textarea+select,form.rowlike form[action*=-controlpanel] .input-group>textarea+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.rowlike form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>select+select,form.rowlike form[name=analysisrequest_add_form] .input-group>select+textarea,form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+select,form.rowlike form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.rowlike form[name=edit_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=edit_form] .input-group>input[type=text]+select,form.rowlike form[name=edit_form] .input-group>input[type=text]+textarea,form.rowlike form[name=edit_form] .input-group>select+input[type=text],form.rowlike form[name=edit_form] .input-group>select+select,form.rowlike form[name=edit_form] .input-group>select+textarea,form.rowlike form[name=edit_form] .input-group>textarea+input[type=text],form.rowlike form[name=edit_form] .input-group>textarea+select,form.rowlike form[name=edit_form] .input-group>textarea+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.rowlike form[name=edit_form] div.listing-container .input-group>input+select,form.rowlike form[name=edit_form] div.listing-container .input-group>input+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.rowlike form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.rowlike form[name=edit_form] div.listing-container .input-group>select+input,form.rowlike form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.rowlike form[name=edit_form] div.listing-container .input-group>select+select,form.rowlike form[name=edit_form] div.listing-container .input-group>select+textarea,form.rowlike form[name=edit_form] div.listing-container .input-group>textarea+input,form.rowlike form[name=edit_form] div.listing-container .input-group>textarea+select,form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+select,form.rowlike form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.rowlike form[name=sampleheader_form] .input-group>select+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>select+select,form.rowlike form[name=sampleheader_form] .input-group>select+textarea,form.rowlike form[name=sampleheader_form] .input-group>textarea+input[type=text],form.rowlike form[name=sampleheader_form] .input-group>textarea+select,form.rowlike form[name=sampleheader_form] .input-group>textarea+textarea,form.rowlike ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.rowlike ul.configlets>li>form .input-group>input[type=text]+select,form.rowlike ul.configlets>li>form .input-group>input[type=text]+textarea,form.rowlike ul.configlets>li>form .input-group>select+input[type=text],form.rowlike ul.configlets>li>form .input-group>select+select,form.rowlike ul.configlets>li>form .input-group>select+textarea,form.rowlike ul.configlets>li>form .input-group>textarea+input[type=text],form.rowlike ul.configlets>li>form .input-group>textarea+select,form.rowlike ul.configlets>li>form .input-group>textarea+textarea,form.senaite-form .input-group>.custom-file+input[type=text],form.senaite-form .input-group>.custom-file+select,form.senaite-form .input-group>.custom-file+textarea,form.senaite-form .input-group>.custom-select+input[type=text],form.senaite-form .input-group>.custom-select+select,form.senaite-form .input-group>.custom-select+textarea,form.senaite-form .input-group>.form-control+input[type=text],form.senaite-form .input-group>.form-control+select,form.senaite-form .input-group>.form-control+textarea,form.senaite-form .input-group>.form-control-plaintext+input[type=text],form.senaite-form .input-group>.form-control-plaintext+select,form.senaite-form .input-group>.form-control-plaintext+textarea,form.senaite-form .input-group>input[type=text]+.custom-file,form.senaite-form .input-group>input[type=text]+.custom-select,form.senaite-form .input-group>input[type=text]+.form-control,form.senaite-form .input-group>input[type=text]+input[type=text],form.senaite-form .input-group>input[type=text]+select,form.senaite-form .input-group>input[type=text]+textarea,form.senaite-form .input-group>select+.custom-file,form.senaite-form .input-group>select+.custom-select,form.senaite-form .input-group>select+.form-control,form.senaite-form .input-group>select+input[type=text],form.senaite-form .input-group>select+select,form.senaite-form .input-group>select+textarea,form.senaite-form .input-group>textarea+.custom-file,form.senaite-form .input-group>textarea+.custom-select,form.senaite-form .input-group>textarea+.form-control,form.senaite-form .input-group>textarea+input[type=text],form.senaite-form .input-group>textarea+select,form.senaite-form .input-group>textarea+textarea,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form.senaite-form .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form.senaite-form .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form.senaite-form .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form.senaite-form form.loginform .input-group>input[type=text]+input[type=text],form.senaite-form form.loginform .input-group>input[type=text]+select,form.senaite-form form.loginform .input-group>input[type=text]+textarea,form.senaite-form form.loginform .input-group>select+input[type=text],form.senaite-form form.loginform .input-group>select+select,form.senaite-form form.loginform .input-group>select+textarea,form.senaite-form form.loginform .input-group>textarea+input[type=text],form.senaite-form form.loginform .input-group>textarea+select,form.senaite-form form.loginform .input-group>textarea+textarea,form.senaite-form form.rowlike .input-group>input[type=text]+input[type=text],form.senaite-form form.rowlike .input-group>input[type=text]+select,form.senaite-form form.rowlike .input-group>input[type=text]+textarea,form.senaite-form form.rowlike .input-group>select+input[type=text],form.senaite-form form.rowlike .input-group>select+select,form.senaite-form form.rowlike .input-group>select+textarea,form.senaite-form form.rowlike .input-group>textarea+input[type=text],form.senaite-form form.rowlike .input-group>textarea+select,form.senaite-form form.rowlike .input-group>textarea+textarea,form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+select,form.senaite-form form[action*=-controlpanel] .input-group>input[type=text]+textarea,form.senaite-form form[action*=-controlpanel] .input-group>select+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>select+select,form.senaite-form form[action*=-controlpanel] .input-group>select+textarea,form.senaite-form form[action*=-controlpanel] .input-group>textarea+input[type=text],form.senaite-form form[action*=-controlpanel] .input-group>textarea+select,form.senaite-form form[action*=-controlpanel] .input-group>textarea+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>select+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>select+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>select+textarea,form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+select,form.senaite-form form[name=analysisrequest_add_form] .input-group>textarea+textarea,form.senaite-form form[name=edit_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=edit_form] .input-group>input[type=text]+select,form.senaite-form form[name=edit_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=edit_form] .input-group>select+input[type=text],form.senaite-form form[name=edit_form] .input-group>select+select,form.senaite-form form[name=edit_form] .input-group>select+textarea,form.senaite-form form[name=edit_form] .input-group>textarea+input[type=text],form.senaite-form form[name=edit_form] .input-group>textarea+select,form.senaite-form form[name=edit_form] .input-group>textarea+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>input+input[type=text],form.senaite-form form[name=edit_form] div.listing-container .input-group>input+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>input+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+input[type=text],form.senaite-form form[name=edit_form] div.listing-container .input-group>select+select,form.senaite-form form[name=edit_form] div.listing-container .input-group>select+textarea,form.senaite-form form[name=edit_form] div.listing-container .input-group>textarea+input,form.senaite-form form[name=edit_form] div.listing-container .input-group>textarea+select,form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+select,form.senaite-form form[name=sampleheader_form] .input-group>input[type=text]+textarea,form.senaite-form form[name=sampleheader_form] .input-group>select+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>select+select,form.senaite-form form[name=sampleheader_form] .input-group>select+textarea,form.senaite-form form[name=sampleheader_form] .input-group>textarea+input[type=text],form.senaite-form form[name=sampleheader_form] .input-group>textarea+select,form.senaite-form form[name=sampleheader_form] .input-group>textarea+textarea,form.senaite-form ul.configlets>li>form .input-group>input[type=text]+input[type=text],form.senaite-form ul.configlets>li>form .input-group>input[type=text]+select,form.senaite-form ul.configlets>li>form .input-group>input[type=text]+textarea,form.senaite-form ul.configlets>li>form .input-group>select+input[type=text],form.senaite-form ul.configlets>li>form .input-group>select+select,form.senaite-form ul.configlets>li>form .input-group>select+textarea,form.senaite-form ul.configlets>li>form .input-group>textarea+input[type=text],form.senaite-form ul.configlets>li>form .input-group>textarea+select,form.senaite-form ul.configlets>li>form .input-group>textarea+textarea,form[action*=-controlpanel] .input-group>.custom-file+input[type=text],form[action*=-controlpanel] .input-group>.custom-file+select,form[action*=-controlpanel] .input-group>.custom-file+textarea,form[action*=-controlpanel] .input-group>.custom-select+input[type=text],form[action*=-controlpanel] .input-group>.custom-select+select,form[action*=-controlpanel] .input-group>.custom-select+textarea,form[action*=-controlpanel] .input-group>.form-control+input[type=text],form[action*=-controlpanel] .input-group>.form-control+select,form[action*=-controlpanel] .input-group>.form-control+textarea,form[action*=-controlpanel] .input-group>.form-control-plaintext+input[type=text],form[action*=-controlpanel] .input-group>.form-control-plaintext+select,form[action*=-controlpanel] .input-group>.form-control-plaintext+textarea,form[action*=-controlpanel] .input-group>input[type=text]+.custom-file,form[action*=-controlpanel] .input-group>input[type=text]+.custom-select,form[action*=-controlpanel] .input-group>input[type=text]+.form-control,form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] .input-group>input[type=text]+select,form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[action*=-controlpanel] .input-group>select+.custom-file,form[action*=-controlpanel] .input-group>select+.custom-select,form[action*=-controlpanel] .input-group>select+.form-control,form[action*=-controlpanel] .input-group>select+input[type=text],form[action*=-controlpanel] .input-group>select+select,form[action*=-controlpanel] .input-group>select+textarea,form[action*=-controlpanel] .input-group>textarea+.custom-file,form[action*=-controlpanel] .input-group>textarea+.custom-select,form[action*=-controlpanel] .input-group>textarea+.form-control,form[action*=-controlpanel] .input-group>textarea+input[type=text],form[action*=-controlpanel] .input-group>textarea+select,form[action*=-controlpanel] .input-group>textarea+textarea,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[action*=-controlpanel] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[action*=-controlpanel] form.loginform .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.loginform .input-group>input[type=text]+select,form[action*=-controlpanel] form.loginform .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.loginform .input-group>select+input[type=text],form[action*=-controlpanel] form.loginform .input-group>select+select,form[action*=-controlpanel] form.loginform .input-group>select+textarea,form[action*=-controlpanel] form.loginform .input-group>textarea+input[type=text],form[action*=-controlpanel] form.loginform .input-group>textarea+select,form[action*=-controlpanel] form.loginform .input-group>textarea+textarea,form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+select,form[action*=-controlpanel] form.rowlike .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.rowlike .input-group>select+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>select+select,form[action*=-controlpanel] form.rowlike .input-group>select+textarea,form[action*=-controlpanel] form.rowlike .input-group>textarea+input[type=text],form[action*=-controlpanel] form.rowlike .input-group>textarea+select,form[action*=-controlpanel] form.rowlike .input-group>textarea+textarea,form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+select,form[action*=-controlpanel] form.senaite-form .input-group>input[type=text]+textarea,form[action*=-controlpanel] form.senaite-form .input-group>select+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>select+select,form[action*=-controlpanel] form.senaite-form .input-group>select+textarea,form[action*=-controlpanel] form.senaite-form .input-group>textarea+input[type=text],form[action*=-controlpanel] form.senaite-form .input-group>textarea+select,form[action*=-controlpanel] form.senaite-form .input-group>textarea+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=edit_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>select+select,form[action*=-controlpanel] form[name=edit_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=edit_form] .input-group>textarea+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+select,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>select+textarea,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>textarea+input,form[action*=-controlpanel] form[name=edit_form] div.listing-container .input-group>textarea+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>select+textarea,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+select,form[action*=-controlpanel] form[name=sampleheader_form] .input-group>textarea+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>input[type=text]+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>select+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>select+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>select+textarea,form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+input[type=text],form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+select,form[action*=-controlpanel] ul.configlets>li>form .input-group>textarea+textarea,form[name=analysisrequest_add_form] .input-group>.custom-file+input[type=text],form[name=analysisrequest_add_form] .input-group>.custom-file+select,form[name=analysisrequest_add_form] .input-group>.custom-file+textarea,form[name=analysisrequest_add_form] .input-group>.custom-select+input[type=text],form[name=analysisrequest_add_form] .input-group>.custom-select+select,form[name=analysisrequest_add_form] .input-group>.custom-select+textarea,form[name=analysisrequest_add_form] .input-group>.form-control+input[type=text],form[name=analysisrequest_add_form] .input-group>.form-control+select,form[name=analysisrequest_add_form] .input-group>.form-control+textarea,form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+input[type=text],form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+select,form[name=analysisrequest_add_form] .input-group>.form-control-plaintext+textarea,form[name=analysisrequest_add_form] .input-group>input[type=text]+.custom-file,form[name=analysisrequest_add_form] .input-group>input[type=text]+.custom-select,form[name=analysisrequest_add_form] .input-group>input[type=text]+.form-control,form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] .input-group>select+.custom-file,form[name=analysisrequest_add_form] .input-group>select+.custom-select,form[name=analysisrequest_add_form] .input-group>select+.form-control,form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] .input-group>select+select,form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=analysisrequest_add_form] .input-group>textarea+.custom-file,form[name=analysisrequest_add_form] .input-group>textarea+.custom-select,form[name=analysisrequest_add_form] .input-group>textarea+.form-control,form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.loginform .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.loginform .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>select+select,form[name=analysisrequest_add_form] form.loginform .input-group>select+textarea,form[name=analysisrequest_add_form] form.loginform .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.loginform .input-group>textarea+select,form[name=analysisrequest_add_form] form.loginform .input-group>textarea+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.rowlike .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>select+select,form[name=analysisrequest_add_form] form.rowlike .input-group>select+textarea,form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+select,form[name=analysisrequest_add_form] form.rowlike .input-group>textarea+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>select+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>select+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>select+textarea,form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+select,form[name=analysisrequest_add_form] form.senaite-form .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=edit_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+select,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=analysisrequest_add_form] form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>select+textarea,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+select,form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group>textarea+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>select+textarea,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+select,form[name=analysisrequest_add_form] ul.configlets>li>form .input-group>textarea+textarea,form[name=edit_form] .input-group>.custom-file+input[type=text],form[name=edit_form] .input-group>.custom-file+select,form[name=edit_form] .input-group>.custom-file+textarea,form[name=edit_form] .input-group>.custom-select+input[type=text],form[name=edit_form] .input-group>.custom-select+select,form[name=edit_form] .input-group>.custom-select+textarea,form[name=edit_form] .input-group>.form-control+input[type=text],form[name=edit_form] .input-group>.form-control+select,form[name=edit_form] .input-group>.form-control+textarea,form[name=edit_form] .input-group>.form-control-plaintext+input[type=text],form[name=edit_form] .input-group>.form-control-plaintext+select,form[name=edit_form] .input-group>.form-control-plaintext+textarea,form[name=edit_form] .input-group>input[type=text]+.custom-file,form[name=edit_form] .input-group>input[type=text]+.custom-select,form[name=edit_form] .input-group>input[type=text]+.form-control,form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] .input-group>input[type=text]+select,form[name=edit_form] .input-group>input[type=text]+textarea,form[name=edit_form] .input-group>select+.custom-file,form[name=edit_form] .input-group>select+.custom-select,form[name=edit_form] .input-group>select+.form-control,form[name=edit_form] .input-group>select+input[type=text],form[name=edit_form] .input-group>select+select,form[name=edit_form] .input-group>select+textarea,form[name=edit_form] .input-group>textarea+.custom-file,form[name=edit_form] .input-group>textarea+.custom-select,form[name=edit_form] .input-group>textarea+.form-control,form[name=edit_form] .input-group>textarea+input[type=text],form[name=edit_form] .input-group>textarea+select,form[name=edit_form] .input-group>textarea+textarea,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=edit_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=edit_form] div.listing-container .input-group>.custom-file+input,form[name=edit_form] div.listing-container .input-group>.custom-file+select,form[name=edit_form] div.listing-container .input-group>.custom-select+input,form[name=edit_form] div.listing-container .input-group>.custom-select+select,form[name=edit_form] div.listing-container .input-group>.form-control+input,form[name=edit_form] div.listing-container .input-group>.form-control+select,form[name=edit_form] div.listing-container .input-group>.form-control-plaintext+input,form[name=edit_form] div.listing-container .input-group>.form-control-plaintext+select,form[name=edit_form] div.listing-container .input-group>input+.custom-file,form[name=edit_form] div.listing-container .input-group>input+.custom-select,form[name=edit_form] div.listing-container .input-group>input+.form-control,form[name=edit_form] div.listing-container .input-group>input+input,form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=edit_form] div.listing-container .input-group>input+select,form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=edit_form] div.listing-container .input-group>select+.custom-file,form[name=edit_form] div.listing-container .input-group>select+.custom-select,form[name=edit_form] div.listing-container .input-group>select+.form-control,form[name=edit_form] div.listing-container .input-group>select+input,form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=edit_form] div.listing-container .input-group>select+select,form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input+input:not([name=submit]),form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=edit_form] div.listing-container .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=edit_form] div.listing-container form.loginform .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.loginform .input-group>input+select,form[name=edit_form] div.listing-container form.loginform .input-group>input+textarea,form[name=edit_form] div.listing-container form.loginform .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.loginform .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.loginform .input-group>select+input,form[name=edit_form] div.listing-container form.loginform .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.loginform .input-group>select+select,form[name=edit_form] div.listing-container form.loginform .input-group>select+textarea,form[name=edit_form] div.listing-container form.loginform .input-group>textarea+input,form[name=edit_form] div.listing-container form.loginform .input-group>textarea+select,form[name=edit_form] div.listing-container form.rowlike .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.rowlike .input-group>input+select,form[name=edit_form] div.listing-container form.rowlike .input-group>input+textarea,form[name=edit_form] div.listing-container form.rowlike .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.rowlike .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.rowlike .input-group>select+input,form[name=edit_form] div.listing-container form.rowlike .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.rowlike .input-group>select+select,form[name=edit_form] div.listing-container form.rowlike .input-group>select+textarea,form[name=edit_form] div.listing-container form.rowlike .input-group>textarea+input,form[name=edit_form] div.listing-container form.rowlike .input-group>textarea+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>input+input[type=text],form[name=edit_form] div.listing-container form.senaite-form .input-group>input+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>input+textarea,form[name=edit_form] div.listing-container form.senaite-form .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+input[type=text],form[name=edit_form] div.listing-container form.senaite-form .input-group>select+select,form[name=edit_form] div.listing-container form.senaite-form .input-group>select+textarea,form[name=edit_form] div.listing-container form.senaite-form .input-group>textarea+input,form[name=edit_form] div.listing-container form.senaite-form .input-group>textarea+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input+textarea,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+select,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>select+textarea,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>textarea+input,form[name=edit_form] div.listing-container form[action*=-controlpanel] .input-group>textarea+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input+textarea,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+select,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>textarea+input,form[name=edit_form] div.listing-container form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+input[type=text],form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input+textarea,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input[type=text]+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+input[type=text],form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+select,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>select+textarea,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>textarea+input,form[name=edit_form] div.listing-container form[name=sampleheader_form] .input-group>textarea+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+input[type=text],form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input+textarea,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input[type=text]+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>input[type=text]+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+input[type=text],form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+select,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>select+textarea,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>textarea+input,form[name=edit_form] div.listing-container ul.configlets>li>form .input-group>textarea+select,form[name=edit_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=edit_form] form.loginform .input-group>input[type=text]+select,form[name=edit_form] form.loginform .input-group>input[type=text]+textarea,form[name=edit_form] form.loginform .input-group>select+input[type=text],form[name=edit_form] form.loginform .input-group>select+select,form[name=edit_form] form.loginform .input-group>select+textarea,form[name=edit_form] form.loginform .input-group>textarea+input[type=text],form[name=edit_form] form.loginform .input-group>textarea+select,form[name=edit_form] form.loginform .input-group>textarea+textarea,form[name=edit_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=edit_form] form.rowlike .input-group>input[type=text]+select,form[name=edit_form] form.rowlike .input-group>input[type=text]+textarea,form[name=edit_form] form.rowlike .input-group>select+input[type=text],form[name=edit_form] form.rowlike .input-group>select+select,form[name=edit_form] form.rowlike .input-group>select+textarea,form[name=edit_form] form.rowlike .input-group>textarea+input[type=text],form[name=edit_form] form.rowlike .input-group>textarea+select,form[name=edit_form] form.rowlike .input-group>textarea+textarea,form[name=edit_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=edit_form] form.senaite-form .input-group>input[type=text]+select,form[name=edit_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=edit_form] form.senaite-form .input-group>select+input[type=text],form[name=edit_form] form.senaite-form .input-group>select+select,form[name=edit_form] form.senaite-form .input-group>select+textarea,form[name=edit_form] form.senaite-form .input-group>textarea+input[type=text],form[name=edit_form] form.senaite-form .input-group>textarea+select,form[name=edit_form] form.senaite-form .input-group>textarea+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=edit_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>select+select,form[name=edit_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=edit_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=edit_form] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=edit_form] form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>select+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>select+select,form[name=edit_form] form[name=sampleheader_form] .input-group>select+textarea,form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+select,form[name=edit_form] form[name=sampleheader_form] .input-group>textarea+textarea,form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=edit_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=edit_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>select+select,form[name=edit_form] ul.configlets>li>form .input-group>select+textarea,form[name=edit_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=edit_form] ul.configlets>li>form .input-group>textarea+select,form[name=edit_form] ul.configlets>li>form .input-group>textarea+textarea,form[name=sampleheader_form] .input-group>.custom-file+input[type=text],form[name=sampleheader_form] .input-group>.custom-file+select,form[name=sampleheader_form] .input-group>.custom-file+textarea,form[name=sampleheader_form] .input-group>.custom-select+input[type=text],form[name=sampleheader_form] .input-group>.custom-select+select,form[name=sampleheader_form] .input-group>.custom-select+textarea,form[name=sampleheader_form] .input-group>.form-control+input[type=text],form[name=sampleheader_form] .input-group>.form-control+select,form[name=sampleheader_form] .input-group>.form-control+textarea,form[name=sampleheader_form] .input-group>.form-control-plaintext+input[type=text],form[name=sampleheader_form] .input-group>.form-control-plaintext+select,form[name=sampleheader_form] .input-group>.form-control-plaintext+textarea,form[name=sampleheader_form] .input-group>input[type=text]+.custom-file,form[name=sampleheader_form] .input-group>input[type=text]+.custom-select,form[name=sampleheader_form] .input-group>input[type=text]+.form-control,form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] .input-group>input[type=text]+select,form[name=sampleheader_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] .input-group>select+.custom-file,form[name=sampleheader_form] .input-group>select+.custom-select,form[name=sampleheader_form] .input-group>select+.form-control,form[name=sampleheader_form] .input-group>select+input[type=text],form[name=sampleheader_form] .input-group>select+select,form[name=sampleheader_form] .input-group>select+textarea,form[name=sampleheader_form] .input-group>textarea+.custom-file,form[name=sampleheader_form] .input-group>textarea+.custom-select,form[name=sampleheader_form] .input-group>textarea+.form-control,form[name=sampleheader_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] .input-group>textarea+select,form[name=sampleheader_form] .input-group>textarea+textarea,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),form[name=sampleheader_form] .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),form[name=sampleheader_form] form.loginform .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.loginform .input-group>input[type=text]+select,form[name=sampleheader_form] form.loginform .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.loginform .input-group>select+input[type=text],form[name=sampleheader_form] form.loginform .input-group>select+select,form[name=sampleheader_form] form.loginform .input-group>select+textarea,form[name=sampleheader_form] form.loginform .input-group>textarea+input[type=text],form[name=sampleheader_form] form.loginform .input-group>textarea+select,form[name=sampleheader_form] form.loginform .input-group>textarea+textarea,form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+select,form[name=sampleheader_form] form.rowlike .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.rowlike .input-group>select+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>select+select,form[name=sampleheader_form] form.rowlike .input-group>select+textarea,form[name=sampleheader_form] form.rowlike .input-group>textarea+input[type=text],form[name=sampleheader_form] form.rowlike .input-group>textarea+select,form[name=sampleheader_form] form.rowlike .input-group>textarea+textarea,form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+select,form[name=sampleheader_form] form.senaite-form .input-group>input[type=text]+textarea,form[name=sampleheader_form] form.senaite-form .input-group>select+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>select+select,form[name=sampleheader_form] form.senaite-form .input-group>select+textarea,form[name=sampleheader_form] form.senaite-form .input-group>textarea+input[type=text],form[name=sampleheader_form] form.senaite-form .input-group>textarea+select,form[name=sampleheader_form] form.senaite-form .input-group>textarea+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>select+textarea,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+select,form[name=sampleheader_form] form[action*=-controlpanel] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>select+textarea,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+select,form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=edit_form] .input-group>input[type=text]+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>select+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>select+select,form[name=sampleheader_form] form[name=edit_form] .input-group>select+textarea,form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+input[type=text],form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+select,form[name=sampleheader_form] form[name=edit_form] .input-group>textarea+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+input[type=text],form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>input[type=text]+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+input[type=text],form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+select,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>select+textarea,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>textarea+input,form[name=sampleheader_form] form[name=edit_form] div.listing-container .input-group>textarea+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>input[type=text]+textarea,form[name=sampleheader_form] ul.configlets>li>form .input-group>select+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>select+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>select+textarea,form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+input[type=text],form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+select,form[name=sampleheader_form] ul.configlets>li>form .input-group>textarea+textarea,ul.configlets>li>form .input-group>.custom-file+input[type=text],ul.configlets>li>form .input-group>.custom-file+select,ul.configlets>li>form .input-group>.custom-file+textarea,ul.configlets>li>form .input-group>.custom-select+input[type=text],ul.configlets>li>form .input-group>.custom-select+select,ul.configlets>li>form .input-group>.custom-select+textarea,ul.configlets>li>form .input-group>.form-control+input[type=text],ul.configlets>li>form .input-group>.form-control+select,ul.configlets>li>form .input-group>.form-control+textarea,ul.configlets>li>form .input-group>.form-control-plaintext+input[type=text],ul.configlets>li>form .input-group>.form-control-plaintext+select,ul.configlets>li>form .input-group>.form-control-plaintext+textarea,ul.configlets>li>form .input-group>input[type=text]+.custom-file,ul.configlets>li>form .input-group>input[type=text]+.custom-select,ul.configlets>li>form .input-group>input[type=text]+.form-control,ul.configlets>li>form .input-group>input[type=text]+input[type=text],ul.configlets>li>form .input-group>input[type=text]+select,ul.configlets>li>form .input-group>input[type=text]+textarea,ul.configlets>li>form .input-group>select+.custom-file,ul.configlets>li>form .input-group>select+.custom-select,ul.configlets>li>form .input-group>select+.form-control,ul.configlets>li>form .input-group>select+input[type=text],ul.configlets>li>form .input-group>select+select,ul.configlets>li>form .input-group>select+textarea,ul.configlets>li>form .input-group>textarea+.custom-file,ul.configlets>li>form .input-group>textarea+.custom-select,ul.configlets>li>form .input-group>textarea+.form-control,ul.configlets>li>form .input-group>textarea+input[type=text],ul.configlets>li>form .input-group>textarea+select,ul.configlets>li>form .input-group>textarea+textarea,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+input[type=text],ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+select,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input:not([name=submit])+textarea,ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>input[type=text]+input:not([name=submit]),ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>select+input:not([name=submit]),ul.configlets>li>form .portlet:not(.portletNavigationTree) .input-group>textarea+input:not([name=submit]),ul.configlets>li>form form.loginform .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.loginform .input-group>input[type=text]+select,ul.configlets>li>form form.loginform .input-group>input[type=text]+textarea,ul.configlets>li>form form.loginform .input-group>select+input[type=text],ul.configlets>li>form form.loginform .input-group>select+select,ul.configlets>li>form form.loginform .input-group>select+textarea,ul.configlets>li>form form.loginform .input-group>textarea+input[type=text],ul.configlets>li>form form.loginform .input-group>textarea+select,ul.configlets>li>form form.loginform .input-group>textarea+textarea,ul.configlets>li>form form.rowlike .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.rowlike .input-group>input[type=text]+select,ul.configlets>li>form form.rowlike .input-group>input[type=text]+textarea,ul.configlets>li>form form.rowlike .input-group>select+input[type=text],ul.configlets>li>form form.rowlike .input-group>select+select,ul.configlets>li>form form.rowlike .input-group>select+textarea,ul.configlets>li>form form.rowlike .input-group>textarea+input[type=text],ul.configlets>li>form form.rowlike .input-group>textarea+select,ul.configlets>li>form form.rowlike .input-group>textarea+textarea,ul.configlets>li>form form.senaite-form .input-group>input[type=text]+input[type=text],ul.configlets>li>form form.senaite-form .input-group>input[type=text]+select,ul.configlets>li>form form.senaite-form .input-group>input[type=text]+textarea,ul.configlets>li>form form.senaite-form .input-group>select+input[type=text],ul.configlets>li>form form.senaite-form .input-group>select+select,ul.configlets>li>form form.senaite-form .input-group>select+textarea,ul.configlets>li>form form.senaite-form .input-group>textarea+input[type=text],ul.configlets>li>form form.senaite-form .input-group>textarea+select,ul.configlets>li>form form.senaite-form .input-group>textarea+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>input[type=text]+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>select+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>select+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>select+textarea,ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+input[type=text],ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+select,ul.configlets>li>form form[action*=-controlpanel] .input-group>textarea+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>select+textarea,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+select,ul.configlets>li>form form[name=analysisrequest_add_form] .input-group>textarea+textarea,ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=edit_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=edit_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>select+select,ul.configlets>li>form form[name=edit_form] .input-group>select+textarea,ul.configlets>li>form form[name=edit_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=edit_form] .input-group>textarea+select,ul.configlets>li>form form[name=edit_form] .input-group>textarea+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+input[type=text],ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input[type=text]+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>input[type=text]+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+input[type=text],ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+select,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>select+textarea,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>textarea+input,ul.configlets>li>form form[name=edit_form] div.listing-container .input-group>textarea+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>input[type=text]+textarea,ul.configlets>li>form form[name=sampleheader_form] .input-group>select+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>select+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>select+textarea,ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+input[type=text],ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+select,ul.configlets>li>form form[name=sampleheader_form] .input-group>textarea+textarea{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus,.portlet:not(.portletNavigationTree) .input-group>input:focus:not([name=submit]),form.loginform .input-group>input[type=text]:focus,form.loginform .input-group>select:focus,form.loginform .input-group>textarea:focus,form.rowlike .input-group>input[type=text]:focus,form.rowlike .input-group>select:focus,form.rowlike .input-group>textarea:focus,form.senaite-form .input-group>input[type=text]:focus,form.senaite-form .input-group>select:focus,form.senaite-form .input-group>textarea:focus,form[action*=-controlpanel] .input-group>input[type=text]:focus,form[action*=-controlpanel] .input-group>select:focus,form[action*=-controlpanel] .input-group>textarea:focus,form[name=analysisrequest_add_form] .input-group>input[type=text]:focus,form[name=analysisrequest_add_form] .input-group>select:focus,form[name=analysisrequest_add_form] .input-group>textarea:focus,form[name=edit_form] .input-group>input[type=text]:focus,form[name=edit_form] .input-group>select:focus,form[name=edit_form] .input-group>textarea:focus,form[name=edit_form] div.listing-container .input-group>input:focus,form[name=sampleheader_form] .input-group>input[type=text]:focus,form[name=sampleheader_form] .input-group>select:focus,form[name=sampleheader_form] .input-group>textarea:focus,ul.configlets>li>form .input-group>input[type=text]:focus,ul.configlets>li>form .input-group>select:focus,ul.configlets>li>form .input-group>textarea:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child),.portlet:not(.portletNavigationTree) .input-group>input:not(:first-child):not([name=submit]),form.loginform .input-group>input[type=text]:not(:first-child),form.loginform .input-group>select:not(:first-child),form.loginform .input-group>textarea:not(:first-child),form.rowlike .input-group>input[type=text]:not(:first-child),form.rowlike .input-group>select:not(:first-child),form.rowlike .input-group>textarea:not(:first-child),form.senaite-form .input-group>input[type=text]:not(:first-child),form.senaite-form .input-group>select:not(:first-child),form.senaite-form .input-group>textarea:not(:first-child),form[action*=-controlpanel] .input-group>input[type=text]:not(:first-child),form[action*=-controlpanel] .input-group>select:not(:first-child),form[action*=-controlpanel] .input-group>textarea:not(:first-child),form[name=analysisrequest_add_form] .input-group>input[type=text]:not(:first-child),form[name=analysisrequest_add_form] .input-group>select:not(:first-child),form[name=analysisrequest_add_form] .input-group>textarea:not(:first-child),form[name=edit_form] .input-group>input[type=text]:not(:first-child),form[name=edit_form] .input-group>select:not(:first-child),form[name=edit_form] .input-group>textarea:not(:first-child),form[name=edit_form] div.listing-container .input-group>input:not(:first-child),form[name=sampleheader_form] .input-group>input[type=text]:not(:first-child),form[name=sampleheader_form] .input-group>select:not(:first-child),form[name=sampleheader_form] .input-group>textarea:not(:first-child),ul.configlets>li>form .input-group>input[type=text]:not(:first-child),ul.configlets>li>form .input-group>select:not(:first-child),ul.configlets>li>form .input-group>textarea:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label:after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label:after,.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label:after,.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.form-control:not(:last-child),.portlet:not(.portletNavigationTree) .input-group.has-validation>input:nth-last-child(n+3):not([name=submit]),.portlet:not(.portletNavigationTree) .input-group:not(.has-validation)>input:not(:last-child):not([name=submit]),form.loginform .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.loginform .input-group.has-validation>select:nth-last-child(n+3),form.loginform .input-group.has-validation>textarea:nth-last-child(n+3),form.loginform .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.loginform .input-group:not(.has-validation)>select:not(:last-child),form.loginform .input-group:not(.has-validation)>textarea:not(:last-child),form.rowlike .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.rowlike .input-group.has-validation>select:nth-last-child(n+3),form.rowlike .input-group.has-validation>textarea:nth-last-child(n+3),form.rowlike .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.rowlike .input-group:not(.has-validation)>select:not(:last-child),form.rowlike .input-group:not(.has-validation)>textarea:not(:last-child),form.senaite-form .input-group.has-validation>input[type=text]:nth-last-child(n+3),form.senaite-form .input-group.has-validation>select:nth-last-child(n+3),form.senaite-form .input-group.has-validation>textarea:nth-last-child(n+3),form.senaite-form .input-group:not(.has-validation)>input[type=text]:not(:last-child),form.senaite-form .input-group:not(.has-validation)>select:not(:last-child),form.senaite-form .input-group:not(.has-validation)>textarea:not(:last-child),form[action*=-controlpanel] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[action*=-controlpanel] .input-group.has-validation>select:nth-last-child(n+3),form[action*=-controlpanel] .input-group.has-validation>textarea:nth-last-child(n+3),form[action*=-controlpanel] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[action*=-controlpanel] .input-group:not(.has-validation)>select:not(:last-child),form[action*=-controlpanel] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=analysisrequest_add_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=analysisrequest_add_form] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=edit_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=edit_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=edit_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=edit_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=edit_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=edit_form] .input-group:not(.has-validation)>textarea:not(:last-child),form[name=edit_form] div.listing-container .input-group.has-validation>input:nth-last-child(n+3),form[name=edit_form] div.listing-container .input-group:not(.has-validation)>input:not(:last-child),form[name=sampleheader_form] .input-group.has-validation>input[type=text]:nth-last-child(n+3),form[name=sampleheader_form] .input-group.has-validation>select:nth-last-child(n+3),form[name=sampleheader_form] .input-group.has-validation>textarea:nth-last-child(n+3),form[name=sampleheader_form] .input-group:not(.has-validation)>input[type=text]:not(:last-child),form[name=sampleheader_form] .input-group:not(.has-validation)>select:not(:last-child),form[name=sampleheader_form] .input-group:not(.has-validation)>textarea:not(:last-child),ul.configlets>li>form .input-group.has-validation>input[type=text]:nth-last-child(n+3),ul.configlets>li>form .input-group.has-validation>select:nth-last-child(n+3),ul.configlets>li>form .input-group.has-validation>textarea:nth-last-child(n+3),ul.configlets>li>form .input-group:not(.has-validation)>input[type=text]:not(:last-child),ul.configlets>li>form .input-group:not(.has-validation)>select:not(:last-child),ul.configlets>li>form .input-group:not(.has-validation)>textarea:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-append,.input-group-prepend{display:flex}.formControls .input-group-append input[name*="form.button"],.formControls .input-group-prepend input[name*="form.button"],.input-group-append .btn,.input-group-append .formControls input[name*="form.button"],.input-group-append .portlet:not(.portletNavigationTree) input[name=submit],.input-group-append a#setup-link,.input-group-append form.loginform input[type=button],.input-group-append form.rowlike input[type=button],.input-group-append form.senaite-form input[type=button],.input-group-append form[action*=-controlpanel] input[type=button],.input-group-append form[name=analysisrequest_add_form] input[type=button],.input-group-append form[name=edit_form] input[type=button],.input-group-append form[name=sampleheader_form] input[type=button],.input-group-append section>ol.configlets li input[type=submit],.input-group-append section>ul.configlets li input[type=submit],.input-group-append ul.configlets>li>form input[type=button],.input-group-prepend .btn,.input-group-prepend .formControls input[name*="form.button"],.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit],.input-group-prepend a#setup-link,.input-group-prepend form.loginform input[type=button],.input-group-prepend form.rowlike input[type=button],.input-group-prepend form.senaite-form input[type=button],.input-group-prepend form[action*=-controlpanel] input[type=button],.input-group-prepend form[name=analysisrequest_add_form] input[type=button],.input-group-prepend form[name=edit_form] input[type=button],.input-group-prepend form[name=sampleheader_form] input[type=button],.input-group-prepend section>ol.configlets li input[type=submit],.input-group-prepend section>ul.configlets li input[type=submit],.input-group-prepend ul.configlets>li>form input[type=button],.portlet:not(.portletNavigationTree) .input-group-append input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit],form.loginform .input-group-append input[type=button],form.loginform .input-group-prepend input[type=button],form.rowlike .input-group-append input[type=button],form.rowlike .input-group-prepend input[type=button],form.senaite-form .input-group-append input[type=button],form.senaite-form .input-group-prepend input[type=button],form[action*=-controlpanel] .input-group-append input[type=button],form[action*=-controlpanel] .input-group-prepend input[type=button],form[name=analysisrequest_add_form] .input-group-append input[type=button],form[name=analysisrequest_add_form] .input-group-prepend input[type=button],form[name=edit_form] .input-group-append input[type=button],form[name=edit_form] .input-group-prepend input[type=button],form[name=sampleheader_form] .input-group-append input[type=button],form[name=sampleheader_form] .input-group-prepend input[type=button],section>ol.configlets li .input-group-append input[type=submit],section>ol.configlets li .input-group-prepend input[type=submit],section>ul.configlets li .input-group-append input[type=submit],section>ul.configlets li .input-group-prepend input[type=submit],ul.configlets>li>form .input-group-append input[type=button],ul.configlets>li>form .input-group-prepend input[type=button]{position:relative;z-index:2}.formControls .input-group-append input[name*="form.button"]:focus,.formControls .input-group-prepend input[name*="form.button"]:focus,.input-group-append .btn:focus,.input-group-append .formControls input[name*="form.button"]:focus,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]:focus,.input-group-append a#setup-link:focus,.input-group-append form.loginform input[type=button]:focus,.input-group-append form.rowlike input[type=button]:focus,.input-group-append form.senaite-form input[type=button]:focus,.input-group-append form[action*=-controlpanel] input[type=button]:focus,.input-group-append form[name=analysisrequest_add_form] input[type=button]:focus,.input-group-append form[name=edit_form] input[type=button]:focus,.input-group-append form[name=sampleheader_form] input[type=button]:focus,.input-group-append section>ol.configlets li input[type=submit]:focus,.input-group-append section>ul.configlets li input[type=submit]:focus,.input-group-append ul.configlets>li>form input[type=button]:focus,.input-group-prepend .btn:focus,.input-group-prepend .formControls input[name*="form.button"]:focus,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]:focus,.input-group-prepend a#setup-link:focus,.input-group-prepend form.loginform input[type=button]:focus,.input-group-prepend form.rowlike input[type=button]:focus,.input-group-prepend form.senaite-form input[type=button]:focus,.input-group-prepend form[action*=-controlpanel] input[type=button]:focus,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]:focus,.input-group-prepend form[name=edit_form] input[type=button]:focus,.input-group-prepend form[name=sampleheader_form] input[type=button]:focus,.input-group-prepend section>ol.configlets li input[type=submit]:focus,.input-group-prepend section>ul.configlets li input[type=submit]:focus,.input-group-prepend ul.configlets>li>form input[type=button]:focus,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]:focus,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]:focus,form.loginform .input-group-append input[type=button]:focus,form.loginform .input-group-prepend input[type=button]:focus,form.rowlike .input-group-append input[type=button]:focus,form.rowlike .input-group-prepend input[type=button]:focus,form.senaite-form .input-group-append input[type=button]:focus,form.senaite-form .input-group-prepend input[type=button]:focus,form[action*=-controlpanel] .input-group-append input[type=button]:focus,form[action*=-controlpanel] .input-group-prepend input[type=button]:focus,form[name=analysisrequest_add_form] .input-group-append input[type=button]:focus,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]:focus,form[name=edit_form] .input-group-append input[type=button]:focus,form[name=edit_form] .input-group-prepend input[type=button]:focus,form[name=sampleheader_form] .input-group-append input[type=button]:focus,form[name=sampleheader_form] .input-group-prepend input[type=button]:focus,section>ol.configlets li .input-group-append input[type=submit]:focus,section>ol.configlets li .input-group-prepend input[type=submit]:focus,section>ul.configlets li .input-group-append input[type=submit]:focus,section>ul.configlets li .input-group-prepend input[type=submit]:focus,ul.configlets>li>form .input-group-append input[type=button]:focus,ul.configlets>li>form .input-group-prepend input[type=button]:focus{z-index:3}.formControls .input-group-append .btn+input[name*="form.button"],.formControls .input-group-append .input-group-text+input[name*="form.button"],.formControls .input-group-append .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.formControls .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.formControls .input-group-append a#setup-link+input[name*="form.button"],.formControls .input-group-append form.loginform input[name*="form.button"]+input[type=button],.formControls .input-group-append form.loginform input[type=button]+input[name*="form.button"],.formControls .input-group-append form.rowlike input[name*="form.button"]+input[type=button],.formControls .input-group-append form.rowlike input[type=button]+input[name*="form.button"],.formControls .input-group-append form.senaite-form input[name*="form.button"]+input[type=button],.formControls .input-group-append form.senaite-form input[type=button]+input[name*="form.button"],.formControls .input-group-append form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=edit_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=edit_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.formControls .input-group-append form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.formControls .input-group-append input[name*="form.button"]+.btn,.formControls .input-group-append input[name*="form.button"]+.input-group-text,.formControls .input-group-append input[name*="form.button"]+a#setup-link,.formControls .input-group-append input[name*="form.button"]+input[name*="form.button"],.formControls .input-group-append section>ol.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-append section>ol.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-append section>ul.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-append section>ul.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-append ul.configlets>li>form input[name*="form.button"]+input[type=button],.formControls .input-group-append ul.configlets>li>form input[type=button]+input[name*="form.button"],.formControls .input-group-prepend .btn+input[name*="form.button"],.formControls .input-group-prepend .input-group-text+input[name*="form.button"],.formControls .input-group-prepend .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.formControls .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.formControls .input-group-prepend a#setup-link+input[name*="form.button"],.formControls .input-group-prepend form.loginform input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.loginform input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form.rowlike input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.rowlike input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form.senaite-form input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form.senaite-form input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=edit_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=edit_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.formControls .input-group-prepend form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.formControls .input-group-prepend input[name*="form.button"]+.btn,.formControls .input-group-prepend input[name*="form.button"]+.input-group-text,.formControls .input-group-prepend input[name*="form.button"]+a#setup-link,.formControls .input-group-prepend input[name*="form.button"]+input[name*="form.button"],.formControls .input-group-prepend section>ol.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-prepend section>ol.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-prepend section>ul.configlets li input[name*="form.button"]+input[type=submit],.formControls .input-group-prepend section>ul.configlets li input[type=submit]+input[name*="form.button"],.formControls .input-group-prepend ul.configlets>li>form input[name*="form.button"]+input[type=button],.formControls .input-group-prepend ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .btn+a#setup-link,.input-group-append .formControls .btn+input[name*="form.button"],.input-group-append .formControls .input-group-text+input[name*="form.button"],.input-group-append .formControls .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.input-group-append .formControls .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.input-group-append .formControls a#setup-link+input[name*="form.button"],.input-group-append .formControls form.loginform input[name*="form.button"]+input[type=button],.input-group-append .formControls form.loginform input[type=button]+input[name*="form.button"],.input-group-append .formControls form.rowlike input[name*="form.button"]+input[type=button],.input-group-append .formControls form.rowlike input[type=button]+input[name*="form.button"],.input-group-append .formControls form.senaite-form input[name*="form.button"]+input[type=button],.input-group-append .formControls form.senaite-form input[type=button]+input[name*="form.button"],.input-group-append .formControls form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=edit_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=edit_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.input-group-append .formControls form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.input-group-append .formControls input[name*="form.button"]+.btn,.input-group-append .formControls input[name*="form.button"]+.input-group-text,.input-group-append .formControls input[name*="form.button"]+a#setup-link,.input-group-append .formControls input[name*="form.button"]+input[name*="form.button"],.input-group-append .formControls section>ol.configlets li input[name*="form.button"]+input[type=submit],.input-group-append .formControls section>ol.configlets li input[type=submit]+input[name*="form.button"],.input-group-append .formControls section>ul.configlets li input[name*="form.button"]+input[type=submit],.input-group-append .formControls section>ul.configlets li input[type=submit]+input[name*="form.button"],.input-group-append .formControls ul.configlets>li>form input[name*="form.button"]+input[type=button],.input-group-append .formControls ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+a#setup-link,.input-group-append .portlet:not(.portletNavigationTree) .btn+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) .input-group-text+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) a#setup-link+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+.btn,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+.input-group-text,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+a#setup-link,.input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ol.configlets li input[name=submit]+input[type=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ol.configlets li input[type=submit]+input[name=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ul.configlets li input[name=submit]+input[type=submit],.input-group-append .portlet:not(.portletNavigationTree) section>ul.configlets li input[type=submit]+input[name=submit],.input-group-append a#setup-link+.btn,.input-group-append a#setup-link+.input-group-text,.input-group-append a#setup-link+a#setup-link,.input-group-append form.loginform .btn+input[type=button],.input-group-append form.loginform .input-group-text+input[type=button],.input-group-append form.loginform .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.loginform .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.loginform a#setup-link+input[type=button],.input-group-append form.loginform form.rowlike input[type=button]+input[type=button],.input-group-append form.loginform form.senaite-form input[type=button]+input[type=button],.input-group-append form.loginform form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.loginform form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.loginform form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.loginform form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.loginform input[type=button]+.btn,.input-group-append form.loginform input[type=button]+.input-group-text,.input-group-append form.loginform input[type=button]+a#setup-link,.input-group-append form.loginform input[type=button]+input[type=button],.input-group-append form.loginform section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.loginform section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.loginform section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.loginform section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.loginform ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form.rowlike .btn+input[type=button],.input-group-append form.rowlike .input-group-text+input[type=button],.input-group-append form.rowlike .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.rowlike .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.rowlike a#setup-link+input[type=button],.input-group-append form.rowlike form.loginform input[type=button]+input[type=button],.input-group-append form.rowlike form.senaite-form input[type=button]+input[type=button],.input-group-append form.rowlike form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.rowlike form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.rowlike input[type=button]+.btn,.input-group-append form.rowlike input[type=button]+.input-group-text,.input-group-append form.rowlike input[type=button]+a#setup-link,.input-group-append form.rowlike input[type=button]+input[type=button],.input-group-append form.rowlike section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.rowlike section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.rowlike section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.rowlike section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.rowlike ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form.senaite-form .btn+input[type=button],.input-group-append form.senaite-form .input-group-text+input[type=button],.input-group-append form.senaite-form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form.senaite-form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form.senaite-form a#setup-link+input[type=button],.input-group-append form.senaite-form form.loginform input[type=button]+input[type=button],.input-group-append form.senaite-form form.rowlike input[type=button]+input[type=button],.input-group-append form.senaite-form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=edit_form] input[type=button]+input[type=button],.input-group-append form.senaite-form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form.senaite-form input[type=button]+.btn,.input-group-append form.senaite-form input[type=button]+.input-group-text,.input-group-append form.senaite-form input[type=button]+a#setup-link,.input-group-append form.senaite-form input[type=button]+input[type=button],.input-group-append form.senaite-form section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form.senaite-form section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form.senaite-form section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form.senaite-form section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form.senaite-form ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] .btn+input[type=button],.input-group-append form[action*=-controlpanel] .input-group-text+input[type=button],.input-group-append form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[action*=-controlpanel] a#setup-link+input[type=button],.input-group-append form[action*=-controlpanel] form.loginform input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form.rowlike input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form.senaite-form input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] input[type=button]+.btn,.input-group-append form[action*=-controlpanel] input[type=button]+.input-group-text,.input-group-append form[action*=-controlpanel] input[type=button]+a#setup-link,.input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[action*=-controlpanel] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[action*=-controlpanel] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[action*=-controlpanel] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[action*=-controlpanel] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[action*=-controlpanel] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] .btn+input[type=button],.input-group-append form[name=analysisrequest_add_form] .input-group-text+input[type=button],.input-group-append form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=analysisrequest_add_form] a#setup-link+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] input[type=button]+.btn,.input-group-append form[name=analysisrequest_add_form] input[type=button]+.input-group-text,.input-group-append form[name=analysisrequest_add_form] input[type=button]+a#setup-link,.input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=analysisrequest_add_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=analysisrequest_add_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=analysisrequest_add_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=analysisrequest_add_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=edit_form] .btn+input[type=button],.input-group-append form[name=edit_form] .input-group-text+input[type=button],.input-group-append form[name=edit_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=edit_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=edit_form] a#setup-link+input[type=button],.input-group-append form[name=edit_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=edit_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=edit_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] input[type=button]+.btn,.input-group-append form[name=edit_form] input[type=button]+.input-group-text,.input-group-append form[name=edit_form] input[type=button]+a#setup-link,.input-group-append form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=edit_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=edit_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=edit_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=edit_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=edit_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] .btn+input[type=button],.input-group-append form[name=sampleheader_form] .input-group-text+input[type=button],.input-group-append form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append form[name=sampleheader_form] a#setup-link+input[type=button],.input-group-append form[name=sampleheader_form] form.loginform input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form.rowlike input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form.senaite-form input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] input[type=button]+.btn,.input-group-append form[name=sampleheader_form] input[type=button]+.input-group-text,.input-group-append form[name=sampleheader_form] input[type=button]+a#setup-link,.input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append form[name=sampleheader_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-append form[name=sampleheader_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-append form[name=sampleheader_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-append form[name=sampleheader_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-append form[name=sampleheader_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-append section>ol.configlets li .btn+input[type=submit],.input-group-append section>ol.configlets li .input-group-text+input[type=submit],.input-group-append section>ol.configlets li a#setup-link+input[type=submit],.input-group-append section>ol.configlets li input[type=submit]+.btn,.input-group-append section>ol.configlets li input[type=submit]+.input-group-text,.input-group-append section>ol.configlets li input[type=submit]+a#setup-link,.input-group-append section>ol.configlets li input[type=submit]+input[type=submit],.input-group-append section>ol.configlets section>ul.configlets li input[type=submit]+input[type=submit],.input-group-append section>ol.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-append section>ol.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-append section>ul.configlets li .btn+input[type=submit],.input-group-append section>ul.configlets li .input-group-text+input[type=submit],.input-group-append section>ul.configlets li a#setup-link+input[type=submit],.input-group-append section>ul.configlets li input[type=submit]+.btn,.input-group-append section>ul.configlets li input[type=submit]+.input-group-text,.input-group-append section>ul.configlets li input[type=submit]+a#setup-link,.input-group-append section>ul.configlets li input[type=submit]+input[type=submit],.input-group-append section>ul.configlets section>ol.configlets li input[type=submit]+input[type=submit],.input-group-append section>ul.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-append section>ul.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-append ul.configlets>li>form .btn+input[type=button],.input-group-append ul.configlets>li>form .input-group-text+input[type=button],.input-group-append ul.configlets>li>form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-append ul.configlets>li>form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-append ul.configlets>li>form a#setup-link+input[type=button],.input-group-append ul.configlets>li>form form.loginform input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form.rowlike input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form.senaite-form input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=edit_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-append ul.configlets>li>form input[type=button]+.btn,.input-group-append ul.configlets>li>form input[type=button]+.input-group-text,.input-group-append ul.configlets>li>form input[type=button]+a#setup-link,.input-group-append ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .btn+a#setup-link,.input-group-prepend .formControls .btn+input[name*="form.button"],.input-group-prepend .formControls .input-group-text+input[name*="form.button"],.input-group-prepend .formControls .portlet:not(.portletNavigationTree) input[name*="form.button"]+input[name=submit],.input-group-prepend .formControls .portlet:not(.portletNavigationTree) input[name=submit]+input[name*="form.button"],.input-group-prepend .formControls a#setup-link+input[name*="form.button"],.input-group-prepend .formControls form.loginform input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.loginform input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form.rowlike input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.rowlike input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form.senaite-form input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form.senaite-form input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[action*=-controlpanel] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[action*=-controlpanel] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=analysisrequest_add_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=analysisrequest_add_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=edit_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=edit_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls form[name=sampleheader_form] input[name*="form.button"]+input[type=button],.input-group-prepend .formControls form[name=sampleheader_form] input[type=button]+input[name*="form.button"],.input-group-prepend .formControls input[name*="form.button"]+.btn,.input-group-prepend .formControls input[name*="form.button"]+.input-group-text,.input-group-prepend .formControls input[name*="form.button"]+a#setup-link,.input-group-prepend .formControls input[name*="form.button"]+input[name*="form.button"],.input-group-prepend .formControls section>ol.configlets li input[name*="form.button"]+input[type=submit],.input-group-prepend .formControls section>ol.configlets li input[type=submit]+input[name*="form.button"],.input-group-prepend .formControls section>ul.configlets li input[name*="form.button"]+input[type=submit],.input-group-prepend .formControls section>ul.configlets li input[type=submit]+input[name*="form.button"],.input-group-prepend .formControls ul.configlets>li>form input[name*="form.button"]+input[type=button],.input-group-prepend .formControls ul.configlets>li>form input[type=button]+input[name*="form.button"],.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+a#setup-link,.input-group-prepend .portlet:not(.portletNavigationTree) .btn+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) .input-group-text+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) a#setup-link+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+.btn,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+.input-group-text,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+a#setup-link,.input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ol.configlets li input[name=submit]+input[type=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ol.configlets li input[type=submit]+input[name=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ul.configlets li input[name=submit]+input[type=submit],.input-group-prepend .portlet:not(.portletNavigationTree) section>ul.configlets li input[type=submit]+input[name=submit],.input-group-prepend a#setup-link+.btn,.input-group-prepend a#setup-link+.input-group-text,.input-group-prepend a#setup-link+a#setup-link,.input-group-prepend form.loginform .btn+input[type=button],.input-group-prepend form.loginform .input-group-text+input[type=button],.input-group-prepend form.loginform .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.loginform .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.loginform a#setup-link+input[type=button],.input-group-prepend form.loginform form.rowlike input[type=button]+input[type=button],.input-group-prepend form.loginform form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.loginform form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.loginform form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.loginform input[type=button]+.btn,.input-group-prepend form.loginform input[type=button]+.input-group-text,.input-group-prepend form.loginform input[type=button]+a#setup-link,.input-group-prepend form.loginform input[type=button]+input[type=button],.input-group-prepend form.loginform section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.loginform section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.loginform section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.loginform section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.loginform ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form.rowlike .btn+input[type=button],.input-group-prepend form.rowlike .input-group-text+input[type=button],.input-group-prepend form.rowlike .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.rowlike .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.rowlike a#setup-link+input[type=button],.input-group-prepend form.rowlike form.loginform input[type=button]+input[type=button],.input-group-prepend form.rowlike form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.rowlike form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.rowlike input[type=button]+.btn,.input-group-prepend form.rowlike input[type=button]+.input-group-text,.input-group-prepend form.rowlike input[type=button]+a#setup-link,.input-group-prepend form.rowlike input[type=button]+input[type=button],.input-group-prepend form.rowlike section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.rowlike section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.rowlike section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.rowlike section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.rowlike ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form.senaite-form .btn+input[type=button],.input-group-prepend form.senaite-form .input-group-text+input[type=button],.input-group-prepend form.senaite-form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form.senaite-form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form.senaite-form a#setup-link+input[type=button],.input-group-prepend form.senaite-form form.loginform input[type=button]+input[type=button],.input-group-prepend form.senaite-form form.rowlike input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form.senaite-form input[type=button]+.btn,.input-group-prepend form.senaite-form input[type=button]+.input-group-text,.input-group-prepend form.senaite-form input[type=button]+a#setup-link,.input-group-prepend form.senaite-form input[type=button]+input[type=button],.input-group-prepend form.senaite-form section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form.senaite-form section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form.senaite-form section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form.senaite-form section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form.senaite-form ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] .btn+input[type=button],.input-group-prepend form[action*=-controlpanel] .input-group-text+input[type=button],.input-group-prepend form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[action*=-controlpanel] a#setup-link+input[type=button],.input-group-prepend form[action*=-controlpanel] form.loginform input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] input[type=button]+.btn,.input-group-prepend form[action*=-controlpanel] input[type=button]+.input-group-text,.input-group-prepend form[action*=-controlpanel] input[type=button]+a#setup-link,.input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[action*=-controlpanel] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[action*=-controlpanel] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[action*=-controlpanel] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[action*=-controlpanel] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .btn+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .input-group-text+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=analysisrequest_add_form] a#setup-link+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+.btn,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+.input-group-text,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+a#setup-link,.input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=analysisrequest_add_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=analysisrequest_add_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=analysisrequest_add_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] .btn+input[type=button],.input-group-prepend form[name=edit_form] .input-group-text+input[type=button],.input-group-prepend form[name=edit_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=edit_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=edit_form] a#setup-link+input[type=button],.input-group-prepend form[name=edit_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] input[type=button]+.btn,.input-group-prepend form[name=edit_form] input[type=button]+.input-group-text,.input-group-prepend form[name=edit_form] input[type=button]+a#setup-link,.input-group-prepend form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=edit_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=edit_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=edit_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=edit_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=edit_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] .btn+input[type=button],.input-group-prepend form[name=sampleheader_form] .input-group-text+input[type=button],.input-group-prepend form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend form[name=sampleheader_form] a#setup-link+input[type=button],.input-group-prepend form[name=sampleheader_form] form.loginform input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form.rowlike input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form.senaite-form input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] input[type=button]+.btn,.input-group-prepend form[name=sampleheader_form] input[type=button]+.input-group-text,.input-group-prepend form[name=sampleheader_form] input[type=button]+a#setup-link,.input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend form[name=sampleheader_form] section>ol.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=sampleheader_form] section>ol.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] section>ul.configlets li input[type=button]+input[type=submit],.input-group-prepend form[name=sampleheader_form] section>ul.configlets li input[type=submit]+input[type=button],.input-group-prepend form[name=sampleheader_form] ul.configlets>li>form input[type=button]+input[type=button],.input-group-prepend section>ol.configlets li .btn+input[type=submit],.input-group-prepend section>ol.configlets li .input-group-text+input[type=submit],.input-group-prepend section>ol.configlets li a#setup-link+input[type=submit],.input-group-prepend section>ol.configlets li input[type=submit]+.btn,.input-group-prepend section>ol.configlets li input[type=submit]+.input-group-text,.input-group-prepend section>ol.configlets li input[type=submit]+a#setup-link,.input-group-prepend section>ol.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ol.configlets section>ul.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ol.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-prepend section>ol.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-prepend section>ul.configlets li .btn+input[type=submit],.input-group-prepend section>ul.configlets li .input-group-text+input[type=submit],.input-group-prepend section>ul.configlets li a#setup-link+input[type=submit],.input-group-prepend section>ul.configlets li input[type=submit]+.btn,.input-group-prepend section>ul.configlets li input[type=submit]+.input-group-text,.input-group-prepend section>ul.configlets li input[type=submit]+a#setup-link,.input-group-prepend section>ul.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ul.configlets section>ol.configlets li input[type=submit]+input[type=submit],.input-group-prepend section>ul.configlets ul.configlets>li>form input[type=button]+input[type=submit],.input-group-prepend section>ul.configlets ul.configlets>li>form input[type=submit]+input[type=button],.input-group-prepend ul.configlets>li>form .btn+input[type=button],.input-group-prepend ul.configlets>li>form .input-group-text+input[type=button],.input-group-prepend ul.configlets>li>form .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],.input-group-prepend ul.configlets>li>form .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],.input-group-prepend ul.configlets>li>form a#setup-link+input[type=button],.input-group-prepend ul.configlets>li>form form.loginform input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form.rowlike input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form.senaite-form input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[action*=-controlpanel] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=analysisrequest_add_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=edit_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form form[name=sampleheader_form] input[type=button]+input[type=button],.input-group-prepend ul.configlets>li>form input[type=button]+.btn,.input-group-prepend ul.configlets>li>form input[type=button]+.input-group-text,.input-group-prepend ul.configlets>li>form input[type=button]+a#setup-link,.input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],.portlet:not(.portletNavigationTree) .formControls .input-group-append input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .formControls .input-group-append input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .formControls .input-group-prepend input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .formControls .input-group-prepend input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-append .btn+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append .formControls input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append .formControls input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-append .input-group-text+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append a#setup-link+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.loginform input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.loginform input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.rowlike input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.rowlike input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form.senaite-form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form.senaite-form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[action*=-controlpanel] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[action*=-controlpanel] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=analysisrequest_add_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=edit_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=edit_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append form[name=sampleheader_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append form[name=sampleheader_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+.btn,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+.input-group-text,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+a#setup-link,.portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ol.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ol.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ul.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-append section>ul.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-append ul.configlets>li>form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-append ul.configlets>li>form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .btn+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .formControls input[name*="form.button"]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend .formControls input[name=submit]+input[name*="form.button"],.portlet:not(.portletNavigationTree) .input-group-prepend .input-group-text+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend a#setup-link+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.loginform input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.loginform input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.rowlike input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.rowlike input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form.senaite-form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form.senaite-form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[action*=-controlpanel] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[action*=-controlpanel] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=analysisrequest_add_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=edit_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=edit_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=sampleheader_form] input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend form[name=sampleheader_form] input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+.btn,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+.input-group-text,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+a#setup-link,.portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ol.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ol.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ul.configlets li input[name=submit]+input[type=submit],.portlet:not(.portletNavigationTree) .input-group-prepend section>ul.configlets li input[type=submit]+input[name=submit],.portlet:not(.portletNavigationTree) .input-group-prepend ul.configlets>li>form input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) .input-group-prepend ul.configlets>li>form input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.loginform .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.loginform .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.loginform .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.loginform .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.rowlike .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.rowlike .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.rowlike .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.rowlike .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form.senaite-form .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[action*=-controlpanel] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=edit_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) form[name=sampleheader_form] .input-group-prepend input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-append input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-append input[type=button]+input[name=submit],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-prepend input[name=submit]+input[type=button],.portlet:not(.portletNavigationTree) ul.configlets>li>form .input-group-prepend input[type=button]+input[name=submit],form.loginform .formControls .input-group-append input[name*="form.button"]+input[type=button],form.loginform .formControls .input-group-append input[type=button]+input[name*="form.button"],form.loginform .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.loginform .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.loginform .input-group-append .btn+input[type=button],form.loginform .input-group-append .formControls input[name*="form.button"]+input[type=button],form.loginform .input-group-append .formControls input[type=button]+input[name*="form.button"],form.loginform .input-group-append .input-group-text+input[type=button],form.loginform .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.loginform .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.loginform .input-group-append a#setup-link+input[type=button],form.loginform .input-group-append form.rowlike input[type=button]+input[type=button],form.loginform .input-group-append form.senaite-form input[type=button]+input[type=button],form.loginform .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.loginform .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.loginform .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.loginform .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.loginform .input-group-append input[type=button]+.btn,form.loginform .input-group-append input[type=button]+.input-group-text,form.loginform .input-group-append input[type=button]+a#setup-link,form.loginform .input-group-append input[type=button]+input[type=button],form.loginform .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.loginform .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.loginform .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.loginform .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.loginform .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.loginform .input-group-prepend .btn+input[type=button],form.loginform .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.loginform .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.loginform .input-group-prepend .input-group-text+input[type=button],form.loginform .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.loginform .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.loginform .input-group-prepend a#setup-link+input[type=button],form.loginform .input-group-prepend form.rowlike input[type=button]+input[type=button],form.loginform .input-group-prepend form.senaite-form input[type=button]+input[type=button],form.loginform .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.loginform .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.loginform .input-group-prepend input[type=button]+.btn,form.loginform .input-group-prepend input[type=button]+.input-group-text,form.loginform .input-group-prepend input[type=button]+a#setup-link,form.loginform .input-group-prepend input[type=button]+input[type=button],form.loginform .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.loginform .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.loginform .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.loginform .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.loginform .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.loginform form.rowlike .input-group-append input[type=button]+input[type=button],form.loginform form.rowlike .input-group-prepend input[type=button]+input[type=button],form.loginform form.senaite-form .input-group-append input[type=button]+input[type=button],form.loginform form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.loginform form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.loginform form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.loginform form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.loginform form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.loginform ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.loginform ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form.rowlike .formControls .input-group-append input[name*="form.button"]+input[type=button],form.rowlike .formControls .input-group-append input[type=button]+input[name*="form.button"],form.rowlike .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.rowlike .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.rowlike .input-group-append .btn+input[type=button],form.rowlike .input-group-append .formControls input[name*="form.button"]+input[type=button],form.rowlike .input-group-append .formControls input[type=button]+input[name*="form.button"],form.rowlike .input-group-append .input-group-text+input[type=button],form.rowlike .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.rowlike .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.rowlike .input-group-append a#setup-link+input[type=button],form.rowlike .input-group-append form.loginform input[type=button]+input[type=button],form.rowlike .input-group-append form.senaite-form input[type=button]+input[type=button],form.rowlike .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.rowlike .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.rowlike .input-group-append input[type=button]+.btn,form.rowlike .input-group-append input[type=button]+.input-group-text,form.rowlike .input-group-append input[type=button]+a#setup-link,form.rowlike .input-group-append input[type=button]+input[type=button],form.rowlike .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.rowlike .input-group-prepend .btn+input[type=button],form.rowlike .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.rowlike .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.rowlike .input-group-prepend .input-group-text+input[type=button],form.rowlike .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.rowlike .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.rowlike .input-group-prepend a#setup-link+input[type=button],form.rowlike .input-group-prepend form.loginform input[type=button]+input[type=button],form.rowlike .input-group-prepend form.senaite-form input[type=button]+input[type=button],form.rowlike .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.rowlike .input-group-prepend input[type=button]+.btn,form.rowlike .input-group-prepend input[type=button]+.input-group-text,form.rowlike .input-group-prepend input[type=button]+a#setup-link,form.rowlike .input-group-prepend input[type=button]+input[type=button],form.rowlike .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.rowlike .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.rowlike .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.rowlike form.loginform .input-group-append input[type=button]+input[type=button],form.rowlike form.loginform .input-group-prepend input[type=button]+input[type=button],form.rowlike form.senaite-form .input-group-append input[type=button]+input[type=button],form.rowlike form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.rowlike form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.rowlike form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.rowlike form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.rowlike ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.rowlike ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form.senaite-form .formControls .input-group-append input[name*="form.button"]+input[type=button],form.senaite-form .formControls .input-group-append input[type=button]+input[name*="form.button"],form.senaite-form .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form.senaite-form .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form.senaite-form .input-group-append .btn+input[type=button],form.senaite-form .input-group-append .formControls input[name*="form.button"]+input[type=button],form.senaite-form .input-group-append .formControls input[type=button]+input[name*="form.button"],form.senaite-form .input-group-append .input-group-text+input[type=button],form.senaite-form .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.senaite-form .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.senaite-form .input-group-append a#setup-link+input[type=button],form.senaite-form .input-group-append form.loginform input[type=button]+input[type=button],form.senaite-form .input-group-append form.rowlike input[type=button]+input[type=button],form.senaite-form .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=edit_form] input[type=button]+input[type=button],form.senaite-form .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form.senaite-form .input-group-append input[type=button]+.btn,form.senaite-form .input-group-append input[type=button]+.input-group-text,form.senaite-form .input-group-append input[type=button]+a#setup-link,form.senaite-form .input-group-append input[type=button]+input[type=button],form.senaite-form .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form.senaite-form .input-group-prepend .btn+input[type=button],form.senaite-form .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form.senaite-form .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form.senaite-form .input-group-prepend .input-group-text+input[type=button],form.senaite-form .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form.senaite-form .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form.senaite-form .input-group-prepend a#setup-link+input[type=button],form.senaite-form .input-group-prepend form.loginform input[type=button]+input[type=button],form.senaite-form .input-group-prepend form.rowlike input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form.senaite-form .input-group-prepend input[type=button]+.btn,form.senaite-form .input-group-prepend input[type=button]+.input-group-text,form.senaite-form .input-group-prepend input[type=button]+a#setup-link,form.senaite-form .input-group-prepend input[type=button]+input[type=button],form.senaite-form .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form.senaite-form .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form.senaite-form .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form.senaite-form form.loginform .input-group-append input[type=button]+input[type=button],form.senaite-form form.loginform .input-group-prepend input[type=button]+input[type=button],form.senaite-form form.rowlike .input-group-append input[type=button]+input[type=button],form.senaite-form form.rowlike .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form.senaite-form form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=edit_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form.senaite-form form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form.senaite-form ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form.senaite-form ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-append .btn+input[type=button],form[action*=-controlpanel] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-append .input-group-text+input[type=button],form[action*=-controlpanel] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[action*=-controlpanel] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[action*=-controlpanel] .input-group-append a#setup-link+input[type=button],form[action*=-controlpanel] .input-group-append form.loginform input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form.rowlike input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form.senaite-form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append input[type=button]+.btn,form[action*=-controlpanel] .input-group-append input[type=button]+.input-group-text,form[action*=-controlpanel] .input-group-append input[type=button]+a#setup-link,form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend .btn+input[type=button],form[action*=-controlpanel] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[action*=-controlpanel] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[action*=-controlpanel] .input-group-prepend .input-group-text+input[type=button],form[action*=-controlpanel] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[action*=-controlpanel] .input-group-prepend a#setup-link+input[type=button],form[action*=-controlpanel] .input-group-prepend form.loginform input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend input[type=button]+.btn,form[action*=-controlpanel] .input-group-prepend input[type=button]+.input-group-text,form[action*=-controlpanel] .input-group-prepend input[type=button]+a#setup-link,form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[action*=-controlpanel] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[action*=-controlpanel] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[action*=-controlpanel] form.loginform .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.loginform .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form.rowlike .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form.senaite-form .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[action*=-controlpanel] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[action*=-controlpanel] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-append .btn+input[type=button],form[name=analysisrequest_add_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-append .input-group-text+input[type=button],form[name=analysisrequest_add_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=analysisrequest_add_form] .input-group-append a#setup-link+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append input[type=button]+.btn,form[name=analysisrequest_add_form] .input-group-append input[type=button]+.input-group-text,form[name=analysisrequest_add_form] .input-group-append input[type=button]+a#setup-link,form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .btn+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=analysisrequest_add_form] .input-group-prepend .input-group-text+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=analysisrequest_add_form] .input-group-prepend a#setup-link+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+.btn,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+.input-group-text,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+a#setup-link,form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=analysisrequest_add_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=analysisrequest_add_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=analysisrequest_add_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=edit_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=edit_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=edit_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-append .btn+input[type=button],form[name=edit_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=edit_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-append .input-group-text+input[type=button],form[name=edit_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=edit_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=edit_form] .input-group-append a#setup-link+input[type=button],form[name=edit_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=edit_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=edit_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-append input[type=button]+.btn,form[name=edit_form] .input-group-append input[type=button]+.input-group-text,form[name=edit_form] .input-group-append input[type=button]+a#setup-link,form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend .btn+input[type=button],form[name=edit_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=edit_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=edit_form] .input-group-prepend .input-group-text+input[type=button],form[name=edit_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=edit_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=edit_form] .input-group-prepend a#setup-link+input[type=button],form[name=edit_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend input[type=button]+.btn,form[name=edit_form] .input-group-prepend input[type=button]+.input-group-text,form[name=edit_form] .input-group-prepend input[type=button]+a#setup-link,form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=edit_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=edit_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=edit_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=edit_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=edit_form] form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=edit_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=edit_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] .formControls .input-group-append input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .formControls .input-group-append input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .formControls .input-group-prepend input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .formControls .input-group-prepend input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-append .btn+input[type=button],form[name=sampleheader_form] .input-group-append .formControls input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .input-group-append .formControls input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-append .input-group-text+input[type=button],form[name=sampleheader_form] .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=sampleheader_form] .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=sampleheader_form] .input-group-append a#setup-link+input[type=button],form[name=sampleheader_form] .input-group-append form.loginform input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form.rowlike input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form.senaite-form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append form[name=edit_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append input[type=button]+.btn,form[name=sampleheader_form] .input-group-append input[type=button]+.input-group-text,form[name=sampleheader_form] .input-group-append input[type=button]+a#setup-link,form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-append section>ol.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-append section>ol.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-append section>ul.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-append section>ul.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-append ul.configlets>li>form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend .btn+input[type=button],form[name=sampleheader_form] .input-group-prepend .formControls input[name*="form.button"]+input[type=button],form[name=sampleheader_form] .input-group-prepend .formControls input[type=button]+input[name*="form.button"],form[name=sampleheader_form] .input-group-prepend .input-group-text+input[type=button],form[name=sampleheader_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],form[name=sampleheader_form] .input-group-prepend a#setup-link+input[type=button],form[name=sampleheader_form] .input-group-prepend form.loginform input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form.rowlike input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form.senaite-form input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend input[type=button]+.btn,form[name=sampleheader_form] .input-group-prepend input[type=button]+.input-group-text,form[name=sampleheader_form] .input-group-prepend input[type=button]+a#setup-link,form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] .input-group-prepend section>ol.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-prepend section>ol.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend section>ul.configlets li input[type=button]+input[type=submit],form[name=sampleheader_form] .input-group-prepend section>ul.configlets li input[type=submit]+input[type=button],form[name=sampleheader_form] .input-group-prepend ul.configlets>li>form input[type=button]+input[type=button],form[name=sampleheader_form] form.loginform .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.loginform .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form.rowlike .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.rowlike .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form.senaite-form .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form.senaite-form .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] form[name=edit_form] .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],form[name=sampleheader_form] ul.configlets>li>form .input-group-append input[type=button]+input[type=button],form[name=sampleheader_form] ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],section>ol.configlets .input-group-append section>ul.configlets li input[type=submit]+input[type=submit],section>ol.configlets .input-group-append ul.configlets>li>form input[type=button]+input[type=submit],section>ol.configlets .input-group-append ul.configlets>li>form input[type=submit]+input[type=button],section>ol.configlets .input-group-prepend section>ul.configlets li input[type=submit]+input[type=submit],section>ol.configlets .input-group-prepend ul.configlets>li>form input[type=button]+input[type=submit],section>ol.configlets .input-group-prepend ul.configlets>li>form input[type=submit]+input[type=button],section>ol.configlets li .formControls .input-group-append input[name*="form.button"]+input[type=submit],section>ol.configlets li .formControls .input-group-append input[type=submit]+input[name*="form.button"],section>ol.configlets li .formControls .input-group-prepend input[name*="form.button"]+input[type=submit],section>ol.configlets li .formControls .input-group-prepend input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-append .btn+input[type=submit],section>ol.configlets li .input-group-append .formControls input[name*="form.button"]+input[type=submit],section>ol.configlets li .input-group-append .formControls input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-append .input-group-text+input[type=submit],section>ol.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ol.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ol.configlets li .input-group-append a#setup-link+input[type=submit],section>ol.configlets li .input-group-append form.loginform input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.loginform input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form.rowlike input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.rowlike input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form.senaite-form input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form.senaite-form input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[action*=-controlpanel] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[action*=-controlpanel] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=edit_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=edit_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append form[name=sampleheader_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-append form[name=sampleheader_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-append input[type=submit]+.btn,section>ol.configlets li .input-group-append input[type=submit]+.input-group-text,section>ol.configlets li .input-group-append input[type=submit]+a#setup-link,section>ol.configlets li .input-group-append input[type=submit]+input[type=submit],section>ol.configlets li .input-group-prepend .btn+input[type=submit],section>ol.configlets li .input-group-prepend .formControls input[name*="form.button"]+input[type=submit],section>ol.configlets li .input-group-prepend .formControls input[type=submit]+input[name*="form.button"],section>ol.configlets li .input-group-prepend .input-group-text+input[type=submit],section>ol.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ol.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ol.configlets li .input-group-prepend a#setup-link+input[type=submit],section>ol.configlets li .input-group-prepend form.loginform input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.loginform input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form.rowlike input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.rowlike input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form.senaite-form input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form.senaite-form input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[action*=-controlpanel] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=edit_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=edit_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=submit],section>ol.configlets li .input-group-prepend form[name=sampleheader_form] input[type=submit]+input[type=button],section>ol.configlets li .input-group-prepend input[type=submit]+.btn,section>ol.configlets li .input-group-prepend input[type=submit]+.input-group-text,section>ol.configlets li .input-group-prepend input[type=submit]+a#setup-link,section>ol.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[type=submit]+input[name=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[type=submit],section>ol.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[type=submit]+input[name=submit],section>ol.configlets li form.loginform .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.loginform .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.loginform .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.loginform .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form.rowlike .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.rowlike .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.rowlike .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.rowlike .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form.senaite-form .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form.senaite-form .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form.senaite-form .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form.senaite-form .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[action*=-controlpanel] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[action*=-controlpanel] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[action*=-controlpanel] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=edit_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=edit_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=edit_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=edit_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets li form[name=sampleheader_form] .input-group-append input[type=button]+input[type=submit],section>ol.configlets li form[name=sampleheader_form] .input-group-append input[type=submit]+input[type=button],section>ol.configlets li form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets li form[name=sampleheader_form] .input-group-prepend input[type=submit]+input[type=button],section>ol.configlets section>ul.configlets li .input-group-append input[type=submit]+input[type=submit],section>ol.configlets section>ul.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-append input[type=button]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-append input[type=submit]+input[type=button],section>ol.configlets ul.configlets>li>form .input-group-prepend input[type=button]+input[type=submit],section>ol.configlets ul.configlets>li>form .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets .input-group-append section>ol.configlets li input[type=submit]+input[type=submit],section>ul.configlets .input-group-append ul.configlets>li>form input[type=button]+input[type=submit],section>ul.configlets .input-group-append ul.configlets>li>form input[type=submit]+input[type=button],section>ul.configlets .input-group-prepend section>ol.configlets li input[type=submit]+input[type=submit],section>ul.configlets .input-group-prepend ul.configlets>li>form input[type=button]+input[type=submit],section>ul.configlets .input-group-prepend ul.configlets>li>form input[type=submit]+input[type=button],section>ul.configlets li .formControls .input-group-append input[name*="form.button"]+input[type=submit],section>ul.configlets li .formControls .input-group-append input[type=submit]+input[name*="form.button"],section>ul.configlets li .formControls .input-group-prepend input[name*="form.button"]+input[type=submit],section>ul.configlets li .formControls .input-group-prepend input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-append .btn+input[type=submit],section>ul.configlets li .input-group-append .formControls input[name*="form.button"]+input[type=submit],section>ul.configlets li .input-group-append .formControls input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-append .input-group-text+input[type=submit],section>ul.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ul.configlets li .input-group-append .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ul.configlets li .input-group-append a#setup-link+input[type=submit],section>ul.configlets li .input-group-append form.loginform input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.loginform input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form.rowlike input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.rowlike input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form.senaite-form input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form.senaite-form input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[action*=-controlpanel] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[action*=-controlpanel] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=edit_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=edit_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append form[name=sampleheader_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-append form[name=sampleheader_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-append input[type=submit]+.btn,section>ul.configlets li .input-group-append input[type=submit]+.input-group-text,section>ul.configlets li .input-group-append input[type=submit]+a#setup-link,section>ul.configlets li .input-group-append input[type=submit]+input[type=submit],section>ul.configlets li .input-group-prepend .btn+input[type=submit],section>ul.configlets li .input-group-prepend .formControls input[name*="form.button"]+input[type=submit],section>ul.configlets li .input-group-prepend .formControls input[type=submit]+input[name*="form.button"],section>ul.configlets li .input-group-prepend .input-group-text+input[type=submit],section>ul.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=submit],section>ul.configlets li .input-group-prepend .portlet:not(.portletNavigationTree) input[type=submit]+input[name=submit],section>ul.configlets li .input-group-prepend a#setup-link+input[type=submit],section>ul.configlets li .input-group-prepend form.loginform input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.loginform input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form.rowlike input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.rowlike input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form.senaite-form input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form.senaite-form input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[action*=-controlpanel] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=analysisrequest_add_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=edit_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=edit_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=submit],section>ul.configlets li .input-group-prepend form[name=sampleheader_form] input[type=submit]+input[type=button],section>ul.configlets li .input-group-prepend input[type=submit]+.btn,section>ul.configlets li .input-group-prepend input[type=submit]+.input-group-text,section>ul.configlets li .input-group-prepend input[type=submit]+a#setup-link,section>ul.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[name=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-append input[type=submit]+input[name=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[name=submit]+input[type=submit],section>ul.configlets li .portlet:not(.portletNavigationTree) .input-group-prepend input[type=submit]+input[name=submit],section>ul.configlets li form.loginform .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.loginform .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.loginform .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.loginform .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form.rowlike .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.rowlike .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.rowlike .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.rowlike .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form.senaite-form .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form.senaite-form .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form.senaite-form .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form.senaite-form .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[action*=-controlpanel] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[action*=-controlpanel] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[action*=-controlpanel] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=analysisrequest_add_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=edit_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=edit_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=edit_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=edit_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets li form[name=sampleheader_form] .input-group-append input[type=button]+input[type=submit],section>ul.configlets li form[name=sampleheader_form] .input-group-append input[type=submit]+input[type=button],section>ul.configlets li form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets li form[name=sampleheader_form] .input-group-prepend input[type=submit]+input[type=button],section>ul.configlets section>ol.configlets li .input-group-append input[type=submit]+input[type=submit],section>ul.configlets section>ol.configlets li .input-group-prepend input[type=submit]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-append input[type=button]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-append input[type=submit]+input[type=button],section>ul.configlets ul.configlets>li>form .input-group-prepend input[type=button]+input[type=submit],section>ul.configlets ul.configlets>li>form .input-group-prepend input[type=submit]+input[type=button],ul.configlets>li>form .formControls .input-group-append input[name*="form.button"]+input[type=button],ul.configlets>li>form .formControls .input-group-append input[type=button]+input[name*="form.button"],ul.configlets>li>form .formControls .input-group-prepend input[name*="form.button"]+input[type=button],ul.configlets>li>form .formControls .input-group-prepend input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-append .btn+input[type=button],ul.configlets>li>form .input-group-append .formControls input[name*="form.button"]+input[type=button],ul.configlets>li>form .input-group-append .formControls input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-append .input-group-text+input[type=button],ul.configlets>li>form .input-group-append .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],ul.configlets>li>form .input-group-append .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],ul.configlets>li>form .input-group-append a#setup-link+input[type=button],ul.configlets>li>form .input-group-append form.loginform input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form.rowlike input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form.senaite-form input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[action*=-controlpanel] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=analysisrequest_add_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=edit_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append form[name=sampleheader_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-append input[type=button]+.btn,ul.configlets>li>form .input-group-append input[type=button]+.input-group-text,ul.configlets>li>form .input-group-append input[type=button]+a#setup-link,ul.configlets>li>form .input-group-append input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend .btn+input[type=button],ul.configlets>li>form .input-group-prepend .formControls input[name*="form.button"]+input[type=button],ul.configlets>li>form .input-group-prepend .formControls input[type=button]+input[name*="form.button"],ul.configlets>li>form .input-group-prepend .input-group-text+input[type=button],ul.configlets>li>form .input-group-prepend .portlet:not(.portletNavigationTree) input[name=submit]+input[type=button],ul.configlets>li>form .input-group-prepend .portlet:not(.portletNavigationTree) input[type=button]+input[name=submit],ul.configlets>li>form .input-group-prepend a#setup-link+input[type=button],ul.configlets>li>form .input-group-prepend form.loginform input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form.rowlike input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form.senaite-form input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[action*=-controlpanel] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=analysisrequest_add_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=edit_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend form[name=sampleheader_form] input[type=button]+input[type=button],ul.configlets>li>form .input-group-prepend input[type=button]+.btn,ul.configlets>li>form .input-group-prepend input[type=button]+.input-group-text,ul.configlets>li>form .input-group-prepend input[type=button]+a#setup-link,ul.configlets>li>form .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.loginform .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.loginform .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.rowlike .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.rowlike .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form.senaite-form .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form.senaite-form .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[action*=-controlpanel] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[action*=-controlpanel] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=analysisrequest_add_form] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=edit_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=edit_form] .input-group-prepend input[type=button]+input[type=button],ul.configlets>li>form form[name=sampleheader_form] .input-group-append input[type=button]+input[type=button],ul.configlets>li>form form[name=sampleheader_form] .input-group-prepend input[type=button]+input[type=button]{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea),.portlet:not(.portletNavigationTree) .input-group-lg>input:not(textarea):not([name=submit]),form.loginform .input-group-lg>input[type=text]:not(textarea),form.loginform .input-group-lg>select:not(textarea),form.loginform .input-group-lg>textarea:not(textarea),form.rowlike .input-group-lg>input[type=text]:not(textarea),form.rowlike .input-group-lg>select:not(textarea),form.rowlike .input-group-lg>textarea:not(textarea),form.senaite-form .input-group-lg>input[type=text]:not(textarea),form.senaite-form .input-group-lg>select:not(textarea),form.senaite-form .input-group-lg>textarea:not(textarea),form[action*=-controlpanel] .input-group-lg>input[type=text]:not(textarea),form[action*=-controlpanel] .input-group-lg>select:not(textarea),form[action*=-controlpanel] .input-group-lg>textarea:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>input[type=text]:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>select:not(textarea),form[name=analysisrequest_add_form] .input-group-lg>textarea:not(textarea),form[name=edit_form] .input-group-lg>input[type=text]:not(textarea),form[name=edit_form] .input-group-lg>select:not(textarea),form[name=edit_form] .input-group-lg>textarea:not(textarea),form[name=edit_form] div.listing-container .input-group-lg>input:not(textarea),form[name=sampleheader_form] .input-group-lg>input[type=text]:not(textarea),form[name=sampleheader_form] .input-group-lg>select:not(textarea),form[name=sampleheader_form] .input-group-lg>textarea:not(textarea),ul.configlets>li>form .input-group-lg>input[type=text]:not(textarea),ul.configlets>li>form .input-group-lg>select:not(textarea),ul.configlets>li>form .input-group-lg>textarea:not(textarea){height:calc(1.5em + 1rem + 2px)}.formControls .input-group-lg>.input-group-append>input[name*="form.button"],.formControls .input-group-lg>.input-group-prepend>input[name*="form.button"],.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-append>a#setup-link,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group-lg>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-lg>.input-group-prepend>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-lg>input:not([name=submit]),form.loginform .input-group-lg>.input-group-append>input[type=button],form.loginform .input-group-lg>.input-group-prepend>input[type=button],form.loginform .input-group-lg>input[type=text],form.loginform .input-group-lg>select,form.loginform .input-group-lg>textarea,form.rowlike .input-group-lg>.input-group-append>input[type=button],form.rowlike .input-group-lg>.input-group-prepend>input[type=button],form.rowlike .input-group-lg>input[type=text],form.rowlike .input-group-lg>select,form.rowlike .input-group-lg>textarea,form.senaite-form .input-group-lg>.input-group-append>input[type=button],form.senaite-form .input-group-lg>.input-group-prepend>input[type=button],form.senaite-form .input-group-lg>input[type=text],form.senaite-form .input-group-lg>select,form.senaite-form .input-group-lg>textarea,form[action*=-controlpanel] .input-group-lg>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group-lg>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group-lg>input[type=text],form[action*=-controlpanel] .input-group-lg>select,form[action*=-controlpanel] .input-group-lg>textarea,form[name=analysisrequest_add_form] .input-group-lg>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group-lg>input[type=text],form[name=analysisrequest_add_form] .input-group-lg>select,form[name=analysisrequest_add_form] .input-group-lg>textarea,form[name=edit_form] .input-group-lg>.input-group-append>input[type=button],form[name=edit_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=edit_form] .input-group-lg>input[type=text],form[name=edit_form] .input-group-lg>select,form[name=edit_form] .input-group-lg>textarea,form[name=edit_form] div.listing-container .input-group-lg>input,form[name=edit_form] div.listing-container .input-group-lg>select,form[name=sampleheader_form] .input-group-lg>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group-lg>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group-lg>input[type=text],form[name=sampleheader_form] .input-group-lg>select,form[name=sampleheader_form] .input-group-lg>textarea,section>ol.configlets li .input-group-lg>.input-group-append>input[type=submit],section>ol.configlets li .input-group-lg>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group-lg>.input-group-append>input[type=submit],section>ul.configlets li .input-group-lg>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group-lg>.input-group-append>input[type=button],ul.configlets>li>form .input-group-lg>.input-group-prepend>input[type=button],ul.configlets>li>form .input-group-lg>input[type=text],ul.configlets>li>form .input-group-lg>select,ul.configlets>li>form .input-group-lg>textarea{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea),.portlet:not(.portletNavigationTree) .input-group-sm>input:not(textarea):not([name=submit]),form.loginform .input-group-sm>input[type=text]:not(textarea),form.loginform .input-group-sm>select:not(textarea),form.loginform .input-group-sm>textarea:not(textarea),form.rowlike .input-group-sm>input[type=text]:not(textarea),form.rowlike .input-group-sm>select:not(textarea),form.rowlike .input-group-sm>textarea:not(textarea),form.senaite-form .input-group-sm>input[type=text]:not(textarea),form.senaite-form .input-group-sm>select:not(textarea),form.senaite-form .input-group-sm>textarea:not(textarea),form[action*=-controlpanel] .input-group-sm>input[type=text]:not(textarea),form[action*=-controlpanel] .input-group-sm>select:not(textarea),form[action*=-controlpanel] .input-group-sm>textarea:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>input[type=text]:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>select:not(textarea),form[name=analysisrequest_add_form] .input-group-sm>textarea:not(textarea),form[name=edit_form] .input-group-sm>input[type=text]:not(textarea),form[name=edit_form] .input-group-sm>select:not(textarea),form[name=edit_form] .input-group-sm>textarea:not(textarea),form[name=edit_form] div.listing-container .input-group-sm>input:not(textarea),form[name=sampleheader_form] .input-group-sm>input[type=text]:not(textarea),form[name=sampleheader_form] .input-group-sm>select:not(textarea),form[name=sampleheader_form] .input-group-sm>textarea:not(textarea),ul.configlets>li>form .input-group-sm>input[type=text]:not(textarea),ul.configlets>li>form .input-group-sm>select:not(textarea),ul.configlets>li>form .input-group-sm>textarea:not(textarea){height:calc(1.5em + .5rem + 2px)}.formControls .input-group-sm>.input-group-append>input[name*="form.button"],.formControls .input-group-sm>.input-group-prepend>input[name*="form.button"],.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-append>a#setup-link,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group-sm>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-sm>.input-group-prepend>input[name=submit],.portlet:not(.portletNavigationTree) .input-group-sm>input:not([name=submit]),form.loginform .input-group-sm>.input-group-append>input[type=button],form.loginform .input-group-sm>.input-group-prepend>input[type=button],form.loginform .input-group-sm>input[type=text],form.loginform .input-group-sm>select,form.loginform .input-group-sm>textarea,form.rowlike .input-group-sm>.input-group-append>input[type=button],form.rowlike .input-group-sm>.input-group-prepend>input[type=button],form.rowlike .input-group-sm>input[type=text],form.rowlike .input-group-sm>select,form.rowlike .input-group-sm>textarea,form.senaite-form .input-group-sm>.input-group-append>input[type=button],form.senaite-form .input-group-sm>.input-group-prepend>input[type=button],form.senaite-form .input-group-sm>input[type=text],form.senaite-form .input-group-sm>select,form.senaite-form .input-group-sm>textarea,form[action*=-controlpanel] .input-group-sm>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group-sm>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group-sm>input[type=text],form[action*=-controlpanel] .input-group-sm>select,form[action*=-controlpanel] .input-group-sm>textarea,form[name=analysisrequest_add_form] .input-group-sm>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group-sm>input[type=text],form[name=analysisrequest_add_form] .input-group-sm>select,form[name=analysisrequest_add_form] .input-group-sm>textarea,form[name=edit_form] .input-group-sm>.input-group-append>input[type=button],form[name=edit_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=edit_form] .input-group-sm>input[type=text],form[name=edit_form] .input-group-sm>select,form[name=edit_form] .input-group-sm>textarea,form[name=edit_form] div.listing-container .input-group-sm>input,form[name=edit_form] div.listing-container .input-group-sm>select,form[name=sampleheader_form] .input-group-sm>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group-sm>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group-sm>input[type=text],form[name=sampleheader_form] .input-group-sm>select,form[name=sampleheader_form] .input-group-sm>textarea,section>ol.configlets li .input-group-sm>.input-group-append>input[type=submit],section>ol.configlets li .input-group-sm>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group-sm>.input-group-append>input[type=submit],section>ul.configlets li .input-group-sm>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group-sm>.input-group-append>input[type=button],ul.configlets>li>form .input-group-sm>.input-group-prepend>input[type=button],ul.configlets>li>form .input-group-sm>input[type=text],ul.configlets>li>form .input-group-sm>select,ul.configlets>li>form .input-group-sm>textarea{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.formControls .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[name*="form.button"],.formControls .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[name*="form.button"],.formControls .input-group>.input-group-append:last-child>input[name*="form.button"]:not(:last-child):not(.dropdown-toggle),.formControls .input-group>.input-group-prepend>input[name*="form.button"],.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>a#setup-link,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>a#setup-link,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:last-child>a#setup-link:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-prepend>a#setup-link,.portlet:not(.portletNavigationTree) .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[name=submit],.portlet:not(.portletNavigationTree) .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[name=submit],.portlet:not(.portletNavigationTree) .input-group>.input-group-append:last-child>input[name=submit]:not(:last-child):not(.dropdown-toggle),.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend>input[name=submit],form.loginform .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.loginform .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.loginform .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.loginform .input-group>.input-group-prepend>input[type=button],form.rowlike .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.rowlike .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.rowlike .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.rowlike .input-group>.input-group-prepend>input[type=button],form.senaite-form .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form.senaite-form .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form.senaite-form .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form.senaite-form .input-group>.input-group-prepend>input[type=button],form[action*=-controlpanel] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[action*=-controlpanel] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[action*=-controlpanel] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[action*=-controlpanel] .input-group>.input-group-prepend>input[type=button],form[name=analysisrequest_add_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=analysisrequest_add_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=analysisrequest_add_form] .input-group>.input-group-prepend>input[type=button],form[name=edit_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=edit_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=edit_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=edit_form] .input-group>.input-group-prepend>input[type=button],form[name=sampleheader_form] .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],form[name=sampleheader_form] .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],form[name=sampleheader_form] .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),form[name=sampleheader_form] .input-group>.input-group-prepend>input[type=button],section>ol.configlets li .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=submit],section>ol.configlets li .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=submit],section>ol.configlets li .input-group>.input-group-append:last-child>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ol.configlets li .input-group>.input-group-prepend>input[type=submit],section>ul.configlets li .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=submit],section>ul.configlets li .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=submit],section>ul.configlets li .input-group>.input-group-append:last-child>input[type=submit]:not(:last-child):not(.dropdown-toggle),section>ul.configlets li .input-group>.input-group-prepend>input[type=submit],ul.configlets>li>form .input-group.has-validation>.input-group-append:nth-last-child(n+3)>input[type=button],ul.configlets>li>form .input-group:not(.has-validation)>.input-group-append:not(:last-child)>input[type=button],ul.configlets>li>form .input-group>.input-group-append:last-child>input[type=button]:not(:last-child):not(.dropdown-toggle),ul.configlets>li>form .input-group>.input-group-prepend>input[type=button]{border-top-right-radius:0;border-bottom-right-radius:0}.formControls .input-group>.input-group-append>input[name*="form.button"],.formControls .input-group>.input-group-prepend:first-child>input[name*="form.button"]:not(:first-child),.formControls .input-group>.input-group-prepend:not(:first-child)>input[name*="form.button"],.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-append>a#setup-link,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:first-child>a#setup-link:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>a#setup-link,.portlet:not(.portletNavigationTree) .input-group>.input-group-append>input[name=submit],.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend:first-child>input[name=submit]:not(:first-child),.portlet:not(.portletNavigationTree) .input-group>.input-group-prepend:not(:first-child)>input[name=submit],form.loginform .input-group>.input-group-append>input[type=button],form.loginform .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.loginform .input-group>.input-group-prepend:not(:first-child)>input[type=button],form.rowlike .input-group>.input-group-append>input[type=button],form.rowlike .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.rowlike .input-group>.input-group-prepend:not(:first-child)>input[type=button],form.senaite-form .input-group>.input-group-append>input[type=button],form.senaite-form .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form.senaite-form .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[action*=-controlpanel] .input-group>.input-group-append>input[type=button],form[action*=-controlpanel] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[action*=-controlpanel] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-append>input[type=button],form[name=analysisrequest_add_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=analysisrequest_add_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=edit_form] .input-group>.input-group-append>input[type=button],form[name=edit_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=edit_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],form[name=sampleheader_form] .input-group>.input-group-append>input[type=button],form[name=sampleheader_form] .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),form[name=sampleheader_form] .input-group>.input-group-prepend:not(:first-child)>input[type=button],section>ol.configlets li .input-group>.input-group-append>input[type=submit],section>ol.configlets li .input-group>.input-group-prepend:first-child>input[type=submit]:not(:first-child),section>ol.configlets li .input-group>.input-group-prepend:not(:first-child)>input[type=submit],section>ul.configlets li .input-group>.input-group-append>input[type=submit],section>ul.configlets li .input-group>.input-group-prepend:first-child>input[type=submit]:not(:first-child),section>ul.configlets li .input-group>.input-group-prepend:not(:first-child)>input[type=submit],ul.configlets>li>form .input-group>.input-group-append>input[type=button],ul.configlets>li>form .input-group>.input-group-prepend:first-child>input[type=button]:not(:first-child),ul.configlets>li>form .input-group>.input-group-prepend:not(:first-child)>input[type=button]{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;print-color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label:before{color:#fff;border-color:#428aaf;background-color:#428aaf}.custom-control-input:focus~.custom-control-label:before{box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label:before{border-color:#98c3d8}.custom-control-input:not(:disabled):active~.custom-control-label:before{color:#fff;background-color:#bdd8e6;border-color:#bdd8e6}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label:before,.custom-control-input[disabled]~.custom-control-label:before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label:before{pointer-events:none;background-color:#fff;border:1px solid #adb5bd}.custom-control-label:after,.custom-control-label:before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:""}.custom-control-label:after{background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label:before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before{border-color:#428aaf;background-color:#428aaf}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-radio .custom-control-label:before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label:before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label:after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-switch .custom-control-label:after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label:after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label:before{background-color:rgba(66,138,175,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right .75rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#98c3d8;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{display:inline-block;margin-bottom:0}.custom-file,.custom-file-input{position:relative;width:100%;height:calc(1.5em + .75rem + 2px)}.custom-file-input{z-index:2;margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#98c3d8;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label:after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]:after{content:attr(data-browse)}.custom-file-label{left:0;z-index:1;height:calc(1.5em + .75rem + 2px);overflow:hidden;font-weight:400;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label,.custom-file-label:after{position:absolute;top:0;right:0;padding:.375rem .75rem;line-height:1.5;color:#495057}.custom-file-label:after{bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(66,138,175,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#bdd8e6}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#bdd8e6}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#428aaf;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#bdd8e6}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower,.custom-range::-ms-fill-upper{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label:before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-control-label:before,.custom-file-label,.custom-select{transition:none}}.nav,aside section nav.portletContent ul,div.autotoc-nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link,aside section nav.portletContent ul li a,div.autotoc-nav a{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover,aside section nav.portletContent ul li a:focus,aside section nav.portletContent ul li a:hover,div.autotoc-nav a:focus,div.autotoc-nav a:hover{text-decoration:none}.nav-link.disabled,aside section nav.portletContent ul li a.disabled,div.autotoc-nav a.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs,div.autotoc-nav{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link,.nav-tabs aside section nav.portletContent ul li a,aside section nav.portletContent ul li .nav-tabs a,aside section nav.portletContent ul li div.autotoc-nav a,div.autotoc-nav .nav-link,div.autotoc-nav a,div.autotoc-nav aside section nav.portletContent ul li a{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover,.nav-tabs aside section nav.portletContent ul li a:focus,.nav-tabs aside section nav.portletContent ul li a:hover,aside section nav.portletContent ul li .nav-tabs a:focus,aside section nav.portletContent ul li .nav-tabs a:hover,div.autotoc-nav .nav-link:focus,div.autotoc-nav .nav-link:hover,div.autotoc-nav a:focus,div.autotoc-nav a:hover{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled,.nav-tabs aside section nav.portletContent ul li a.disabled,aside section nav.portletContent ul li .nav-tabs a.disabled,div.autotoc-nav .nav-link.disabled,div.autotoc-nav a.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-item.show aside section nav.portletContent ul li a,.nav-tabs .nav-item.show div.autotoc-nav a,.nav-tabs .nav-link.active,.nav-tabs aside section nav.portletContent ul li.show .nav-link,.nav-tabs aside section nav.portletContent ul li.show a,.nav-tabs aside section nav.portletContent ul li a.active,aside section nav.portletContent ul .nav-tabs li.show .nav-link,aside section nav.portletContent ul .nav-tabs li.show a,aside section nav.portletContent ul div.autotoc-nav li.show .nav-link,aside section nav.portletContent ul div.autotoc-nav li.show a,aside section nav.portletContent ul li .nav-tabs .nav-item.show a,aside section nav.portletContent ul li .nav-tabs a.active,div.autotoc-nav .nav-item.show .nav-link,div.autotoc-nav .nav-item.show a,div.autotoc-nav .nav-link.active,div.autotoc-nav a.active,div.autotoc-nav aside section nav.portletContent ul li.show .nav-link,div.autotoc-nav aside section nav.portletContent ul li.show a{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu,div.autotoc-nav .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link,.nav-pills aside section nav.portletContent ul li a,.nav-pills div.autotoc-nav a,aside section nav.portletContent ul li .nav-pills a,div.autotoc-nav .nav-pills a{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link,.nav-pills aside section nav.portletContent ul li .show>a,.nav-pills aside section nav.portletContent ul li a.active,.nav-pills div.autotoc-nav .show>a,.nav-pills div.autotoc-nav a.active,aside section nav.portletContent ul li .nav-pills .show>a,aside section nav.portletContent ul li .nav-pills a.active,div.autotoc-nav .nav-pills .show>a,div.autotoc-nav .nav-pills a.active{color:#fff;background-color:#428aaf}.nav-fill .nav-item,.nav-fill>.nav-link,.nav-fill aside section nav.portletContent ul li,aside section nav.portletContent ul .nav-fill li,aside section nav.portletContent ul li .nav-fill>a,div.autotoc-nav .nav-fill>a{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link,.nav-justified aside section nav.portletContent ul li,aside section nav.portletContent ul .nav-justified li,aside section nav.portletContent ul li .nav-justified>a,div.autotoc-nav .nav-justified>a{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;padding:.5rem 1rem}.navbar,.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl,.navbar .pb-ajax>div{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link,.navbar-nav aside section nav.portletContent ul li a,.navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-nav a,div.autotoc-nav .navbar-nav a{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media(max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl,.pb-ajax.navbar-expand-sm>div{padding-right:0;padding-left:0}}@media(min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link,.navbar-expand-sm .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-sm .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-sm .navbar-nav a,div.autotoc-nav .navbar-expand-sm .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl,.pb-ajax.navbar-expand-sm>div{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl,.pb-ajax.navbar-expand-md>div{padding-right:0;padding-left:0}}@media(min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link,.navbar-expand-md .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-md .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-md .navbar-nav a,div.autotoc-nav .navbar-expand-md .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl,.pb-ajax.navbar-expand-md>div{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl,.pb-ajax.navbar-expand-lg>div{padding-right:0;padding-left:0}}@media(min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link,.navbar-expand-lg .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-lg .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-lg .navbar-nav a,div.autotoc-nav .navbar-expand-lg .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl,.pb-ajax.navbar-expand-lg>div{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl,.pb-ajax.navbar-expand-xl>div{padding-right:0;padding-left:0}}@media(min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link,.navbar-expand-xl .navbar-nav aside section nav.portletContent ul li a,.navbar-expand-xl .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand-xl .navbar-nav a,div.autotoc-nav .navbar-expand-xl .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl,.pb-ajax.navbar-expand-xl>div{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl,.pb-ajax.navbar-expand>div{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link,.navbar-expand .navbar-nav aside section nav.portletContent ul li a,.navbar-expand .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-expand .navbar-nav a,div.autotoc-nav .navbar-expand .navbar-nav a{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl,.pb-ajax.navbar-expand>div{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand,.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link,.navbar-light .navbar-nav aside section nav.portletContent ul li a,.navbar-light .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-light .navbar-nav a,div.autotoc-nav .navbar-light .navbar-nav a{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav aside section nav.portletContent ul li a:focus,.navbar-light .navbar-nav aside section nav.portletContent ul li a:hover,.navbar-light .navbar-nav div.autotoc-nav a:focus,.navbar-light .navbar-nav div.autotoc-nav a:hover,aside section nav.portletContent ul li .navbar-light .navbar-nav a:focus,aside section nav.portletContent ul li .navbar-light .navbar-nav a:hover,div.autotoc-nav .navbar-light .navbar-nav a:focus,div.autotoc-nav .navbar-light .navbar-nav a:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled,.navbar-light .navbar-nav aside section nav.portletContent ul li a.disabled,.navbar-light .navbar-nav div.autotoc-nav a.disabled,aside section nav.portletContent ul li .navbar-light .navbar-nav a.disabled,div.autotoc-nav .navbar-light .navbar-nav a.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav aside section nav.portletContent ul li .active>a,.navbar-light .navbar-nav aside section nav.portletContent ul li .show>a,.navbar-light .navbar-nav aside section nav.portletContent ul li a.active,.navbar-light .navbar-nav aside section nav.portletContent ul li a.show,.navbar-light .navbar-nav div.autotoc-nav .active>a,.navbar-light .navbar-nav div.autotoc-nav .show>a,.navbar-light .navbar-nav div.autotoc-nav a.active,.navbar-light .navbar-nav div.autotoc-nav a.show,aside section nav.portletContent ul li .navbar-light .navbar-nav .active>a,aside section nav.portletContent ul li .navbar-light .navbar-nav .show>a,aside section nav.portletContent ul li .navbar-light .navbar-nav a.active,aside section nav.portletContent ul li .navbar-light .navbar-nav a.show,div.autotoc-nav .navbar-light .navbar-nav .active>a,div.autotoc-nav .navbar-light .navbar-nav .show>a,div.autotoc-nav .navbar-light .navbar-nav a.active,div.autotoc-nav .navbar-light .navbar-nav a.show{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand,.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link,.navbar-dark .navbar-nav aside section nav.portletContent ul li a,.navbar-dark .navbar-nav div.autotoc-nav a,aside section nav.portletContent ul li .navbar-dark .navbar-nav a,div.autotoc-nav .navbar-dark .navbar-nav a{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav aside section nav.portletContent ul li a:focus,.navbar-dark .navbar-nav aside section nav.portletContent ul li a:hover,.navbar-dark .navbar-nav div.autotoc-nav a:focus,.navbar-dark .navbar-nav div.autotoc-nav a:hover,aside section nav.portletContent ul li .navbar-dark .navbar-nav a:focus,aside section nav.portletContent ul li .navbar-dark .navbar-nav a:hover,div.autotoc-nav .navbar-dark .navbar-nav a:focus,div.autotoc-nav .navbar-dark .navbar-nav a:hover{color:hsla(0,0%,100%,.75)}.navbar-dark .navbar-nav .nav-link.disabled,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.disabled,.navbar-dark .navbar-nav div.autotoc-nav a.disabled,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.disabled,div.autotoc-nav .navbar-dark .navbar-nav a.disabled{color:hsla(0,0%,100%,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav aside section nav.portletContent ul li .active>a,.navbar-dark .navbar-nav aside section nav.portletContent ul li .show>a,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.active,.navbar-dark .navbar-nav aside section nav.portletContent ul li a.show,.navbar-dark .navbar-nav div.autotoc-nav .active>a,.navbar-dark .navbar-nav div.autotoc-nav .show>a,.navbar-dark .navbar-nav div.autotoc-nav a.active,.navbar-dark .navbar-nav div.autotoc-nav a.show,aside section nav.portletContent ul li .navbar-dark .navbar-nav .active>a,aside section nav.portletContent ul li .navbar-dark .navbar-nav .show>a,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.active,aside section nav.portletContent ul li .navbar-dark .navbar-nav a.show,div.autotoc-nav .navbar-dark .navbar-nav .active>a,div.autotoc-nav .navbar-dark .navbar-nav .show>a,div.autotoc-nav .navbar-dark .navbar-nav a.active,div.autotoc-nav .navbar-dark .navbar-nav a.show{color:#fff}.navbar-dark .navbar-toggler{color:hsla(0,0%,100%,.5);border-color:hsla(0,0%,100%,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:hsla(0,0%,100%,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.card,.portlet:not(.portletNavigationTree){position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}#panel-notification .error-notification-item>hr,#panel-notification .succeed-notification-item>hr,.card>hr,.portlet:not(.portletNavigationTree)>hr{margin-right:0;margin-left:0}#panel-notification .error-notification-item>.list-group,#panel-notification .succeed-notification-item>.list-group,#panel-notification section.error-notification-item>ol.configlets,#panel-notification section.error-notification-item>ul.configlets,#panel-notification section.succeed-notification-item>ol.configlets,#panel-notification section.succeed-notification-item>ul.configlets,.card>.list-group,.portlet:not(.portletNavigationTree)>.list-group,section.card>ol.configlets,section.card>ul.configlets,section.portlet:not(.portletNavigationTree)>ol.configlets,section.portlet:not(.portletNavigationTree)>ul.configlets{border-top:inherit;border-bottom:inherit}#panel-notification .error-notification-item>.list-group:first-child,#panel-notification .succeed-notification-item>.list-group:first-child,#panel-notification section.error-notification-item>ol.configlets:first-child,#panel-notification section.error-notification-item>ul.configlets:first-child,#panel-notification section.succeed-notification-item>ol.configlets:first-child,#panel-notification section.succeed-notification-item>ul.configlets:first-child,.card>.list-group:first-child,.portlet:not(.portletNavigationTree)>.list-group:first-child,section.card>ol.configlets:first-child,section.card>ul.configlets:first-child,section.portlet:not(.portletNavigationTree)>ol.configlets:first-child,section.portlet:not(.portletNavigationTree)>ul.configlets:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}#panel-notification .error-notification-item>.list-group:last-child,#panel-notification .succeed-notification-item>.list-group:last-child,#panel-notification section.error-notification-item>ol.configlets:last-child,#panel-notification section.error-notification-item>ul.configlets:last-child,#panel-notification section.succeed-notification-item>ol.configlets:last-child,#panel-notification section.succeed-notification-item>ul.configlets:last-child,.card>.list-group:last-child,.portlet:not(.portletNavigationTree)>.list-group:last-child,section.card>ol.configlets:last-child,section.card>ul.configlets:last-child,section.portlet:not(.portletNavigationTree)>ol.configlets:last-child,section.portlet:not(.portletNavigationTree)>ul.configlets:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}#panel-notification .error-notification-item>.card-header+.list-group,#panel-notification .error-notification-item>.list-group+.card-footer,#panel-notification .portlet:not(.portletNavigationTree) .error-notification-item>.list-group+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .error-notification-item>.portletHeader+.list-group,#panel-notification .portlet:not(.portletNavigationTree) .succeed-notification-item>.list-group+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .succeed-notification-item>.portletHeader+.list-group,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>.portletHeader+ol.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>.portletHeader+ul.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>ol.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.error-notification-item>ul.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>.portletHeader+ol.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>.portletHeader+ul.configlets,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>ol.configlets+.portletFooter,#panel-notification .portlet:not(.portletNavigationTree) section.succeed-notification-item>ul.configlets+.portletFooter,#panel-notification .succeed-notification-item>.card-header+.list-group,#panel-notification .succeed-notification-item>.list-group+.card-footer,#panel-notification section.error-notification-item>.card-header+ol.configlets,#panel-notification section.error-notification-item>.card-header+ul.configlets,#panel-notification section.error-notification-item>ol.configlets+.card-footer,#panel-notification section.error-notification-item>ul.configlets+.card-footer,#panel-notification section.succeed-notification-item>.card-header+ol.configlets,#panel-notification section.succeed-notification-item>.card-header+ul.configlets,#panel-notification section.succeed-notification-item>ol.configlets+.card-footer,#panel-notification section.succeed-notification-item>ul.configlets+.card-footer,.card>.card-header+.list-group,.card>.list-group+.card-footer,.portlet:not(.portletNavigationTree) #panel-notification .error-notification-item>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .error-notification-item>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) #panel-notification .succeed-notification-item>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .succeed-notification-item>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.error-notification-item>ul.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) #panel-notification section.succeed-notification-item>ul.configlets+.portletFooter,.portlet:not(.portletNavigationTree) .card>.list-group+.portletFooter,.portlet:not(.portletNavigationTree) .card>.portletHeader+.list-group,.portlet:not(.portletNavigationTree)>.card-header+.list-group,.portlet:not(.portletNavigationTree)>.list-group+.card-footer,.portlet:not(.portletNavigationTree)>.list-group+.portletFooter,.portlet:not(.portletNavigationTree)>.portletHeader+.list-group,.portlet:not(.portletNavigationTree) section.card>.portletHeader+ol.configlets,.portlet:not(.portletNavigationTree) section.card>.portletHeader+ul.configlets,.portlet:not(.portletNavigationTree) section.card>ol.configlets+.portletFooter,.portlet:not(.portletNavigationTree) section.card>ul.configlets+.portletFooter,section.card>.card-header+ol.configlets,section.card>.card-header+ul.configlets,section.card>ol.configlets+.card-footer,section.card>ul.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>.card-header+ol.configlets,section.portlet:not(.portletNavigationTree)>.card-header+ul.configlets,section.portlet:not(.portletNavigationTree)>.portletHeader+ol.configlets,section.portlet:not(.portletNavigationTree)>.portletHeader+ul.configlets,section.portlet:not(.portletNavigationTree)>ol.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>ol.configlets+.portletFooter,section.portlet:not(.portletNavigationTree)>ul.configlets+.card-footer,section.portlet:not(.portletNavigationTree)>ul.configlets+.portletFooter{border-top:0}.card-body,.portlet:not(.portletNavigationTree) .portletContent{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem}.card-subtitle,.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header,.portlet:not(.portletNavigationTree) .portletHeader{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child,.portlet:not(.portletNavigationTree) .portletHeader:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer,.portlet:not(.portletNavigationTree) .portletFooter{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child,.portlet:not(.portletNavigationTree) .portletFooter:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-bottom:-.75rem;border-bottom:0}.card-header-pills,.card-header-tabs{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}#panel-notification .card-deck .error-notification-item,#panel-notification .card-deck .succeed-notification-item,.card-deck #panel-notification .error-notification-item,.card-deck #panel-notification .succeed-notification-item,.card-deck .card,.card-deck .portlet:not(.portletNavigationTree){margin-bottom:15px}@media(min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}#panel-notification .card-deck .error-notification-item,#panel-notification .card-deck .succeed-notification-item,.card-deck #panel-notification .error-notification-item,.card-deck #panel-notification .succeed-notification-item,.card-deck .card,.card-deck .portlet:not(.portletNavigationTree){flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}#panel-notification .card-group>.error-notification-item,#panel-notification .card-group>.succeed-notification-item,.card-group>.card,.card-group>.portlet:not(.portletNavigationTree){margin-bottom:15px}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}#panel-notification .card-group>.error-notification-item,#panel-notification .card-group>.succeed-notification-item,.card-group>.card,.card-group>.portlet:not(.portletNavigationTree){flex:1 0 0%;margin-bottom:0}#panel-notification .card-group>.card+.error-notification-item,#panel-notification .card-group>.card+.succeed-notification-item,#panel-notification .card-group>.error-notification-item+.card,#panel-notification .card-group>.error-notification-item+.error-notification-item,#panel-notification .card-group>.error-notification-item+.portlet:not(.portletNavigationTree),#panel-notification .card-group>.error-notification-item+.succeed-notification-item,#panel-notification .card-group>.portlet:not(.portletNavigationTree)+.error-notification-item,#panel-notification .card-group>.portlet:not(.portletNavigationTree)+.succeed-notification-item,#panel-notification .card-group>.succeed-notification-item+.card,#panel-notification .card-group>.succeed-notification-item+.error-notification-item,#panel-notification .card-group>.succeed-notification-item+.portlet:not(.portletNavigationTree),#panel-notification .card-group>.succeed-notification-item+.succeed-notification-item,.card-group>.card+.card,.card-group>.card+.portlet:not(.portletNavigationTree),.card-group>.portlet:not(.portletNavigationTree)+.card,.card-group>.portlet:not(.portletNavigationTree)+.portlet:not(.portletNavigationTree){margin-left:0;border-left:0}#panel-notification .card-group>.error-notification-item:not(:last-child),#panel-notification .card-group>.succeed-notification-item:not(:last-child),.card-group>.card:not(:last-child),.card-group>.portlet:not(:last-child):not(.portletNavigationTree){border-top-right-radius:0;border-bottom-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:last-child) .card-header,#panel-notification .card-group>.error-notification-item:not(:last-child) .card-img-top,#panel-notification .card-group>.error-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-header,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-img-top,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:last-child) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:last-child) .portletHeader,.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .portlet:not(.portletNavigationTree) .portletHeader,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-header,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-img-top,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:last-child) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:last-child) .portletHeader,.portlet:not(.portletNavigationTree) .card-group>.card:not(:last-child) .portletHeader{border-top-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:last-child) .card-footer,#panel-notification .card-group>.error-notification-item:not(:last-child) .card-img-bottom,#panel-notification .card-group>.error-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-footer,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .card-img-bottom,#panel-notification .card-group>.succeed-notification-item:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:last-child) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:last-child) .portletFooter,.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .portlet:not(.portletNavigationTree) .portletFooter,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-footer,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .card-img-bottom,.card-group>.portlet:not(:last-child):not(.portletNavigationTree) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:last-child) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:last-child) .portletFooter,.portlet:not(.portletNavigationTree) .card-group>.card:not(:last-child) .portletFooter{border-bottom-right-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child),#panel-notification .card-group>.succeed-notification-item:not(:first-child),.card-group>.card:not(:first-child),.card-group>.portlet:not(:first-child):not(.portletNavigationTree){border-top-left-radius:0;border-bottom-left-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child) .card-header,#panel-notification .card-group>.error-notification-item:not(:first-child) .card-img-top,#panel-notification .card-group>.error-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-header,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-img-top,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:first-child) .portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:first-child) .portletHeader,.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .portlet:not(.portletNavigationTree) .portletHeader,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-header,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-img-top,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:first-child) .portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:first-child) .portletHeader,.portlet:not(.portletNavigationTree) .card-group>.card:not(:first-child) .portletHeader{border-top-left-radius:0}#panel-notification .card-group>.error-notification-item:not(:first-child) .card-footer,#panel-notification .card-group>.error-notification-item:not(:first-child) .card-img-bottom,#panel-notification .card-group>.error-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-footer,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .card-img-bottom,#panel-notification .card-group>.succeed-notification-item:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.error-notification-item:not(:first-child) .portletFooter,#panel-notification .portlet:not(.portletNavigationTree) .card-group>.succeed-notification-item:not(:first-child) .portletFooter,.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .portlet:not(.portletNavigationTree) .portletFooter,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-footer,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .card-img-bottom,.card-group>.portlet:not(:first-child):not(.portletNavigationTree) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.error-notification-item:not(:first-child) .portletFooter,.portlet:not(.portletNavigationTree) #panel-notification .card-group>.succeed-notification-item:not(:first-child) .portletFooter,.portlet:not(.portletNavigationTree) .card-group>.card:not(:first-child) .portletFooter{border-bottom-left-radius:0}}#panel-notification .card-columns .error-notification-item,#panel-notification .card-columns .succeed-notification-item,.card-columns #panel-notification .error-notification-item,.card-columns #panel-notification .succeed-notification-item,.card-columns .card,.card-columns .portlet:not(.portletNavigationTree){margin-bottom:.75rem}@media(min-width:576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}#panel-notification .card-columns .error-notification-item,#panel-notification .card-columns .succeed-notification-item,.card-columns #panel-notification .error-notification-item,.card-columns #panel-notification .succeed-notification-item,.card-columns .card,.card-columns .portlet:not(.portletNavigationTree){display:inline-block;width:100%}}.accordion{overflow-anchor:none}#panel-notification .accordion>.error-notification-item,#panel-notification .accordion>.succeed-notification-item,.accordion>.card,.accordion>.portlet:not(.portletNavigationTree){overflow:hidden}#panel-notification .accordion>.error-notification-item:not(:last-of-type),#panel-notification .accordion>.succeed-notification-item:not(:last-of-type),.accordion>.card:not(:last-of-type),.accordion>.portlet:not(:last-of-type):not(.portletNavigationTree){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}#panel-notification .accordion>.error-notification-item:not(:first-of-type),#panel-notification .accordion>.succeed-notification-item:not(:first-of-type),.accordion>.card:not(:first-of-type),.accordion>.portlet:not(:first-of-type):not(.portletNavigationTree){border-top-left-radius:0;border-top-right-radius:0}#panel-notification .accordion>.error-notification-item>.card-header,#panel-notification .accordion>.succeed-notification-item>.card-header,#panel-notification .portlet:not(.portletNavigationTree) .accordion>.error-notification-item>.portletHeader,#panel-notification .portlet:not(.portletNavigationTree) .accordion>.succeed-notification-item>.portletHeader,.accordion>.card>.card-header,.accordion>.portlet:not(.portletNavigationTree)>.card-header,.accordion>.portlet:not(.portletNavigationTree)>.portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .accordion>.error-notification-item>.portletHeader,.portlet:not(.portletNavigationTree) #panel-notification .accordion>.succeed-notification-item>.portletHeader,.portlet:not(.portletNavigationTree) .accordion>.card>.portletHeader{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item:before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover:before{text-decoration:underline;text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination,nav.pagination ul{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link,nav.pagination ul li a{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#428aaf;background-color:#fff;border:1px solid #dee2e6}.page-link:hover,nav.pagination ul li a:hover{z-index:2;color:#2d5e77;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus,nav.pagination ul li a:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.25)}.page-item:first-child .page-link,.page-item:first-child nav.pagination ul li a,nav.pagination ul li .page-item:first-child a,nav.pagination ul li:first-child .page-link,nav.pagination ul li:first-child a{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link,.page-item:last-child nav.pagination ul li a,nav.pagination ul li .page-item:last-child a,nav.pagination ul li:last-child .page-link,nav.pagination ul li:last-child a{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link,.page-item.active nav.pagination ul li a,nav.pagination ul li.active .page-link,nav.pagination ul li.active a,nav.pagination ul li .page-item.active a{z-index:3;color:#fff;background-color:#428aaf;border-color:#428aaf}.page-item.disabled .page-link,.page-item.disabled nav.pagination ul li a,nav.pagination ul li.disabled .page-link,nav.pagination ul li.disabled a,nav.pagination ul li .page-item.disabled a{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link,.pagination-lg nav.pagination ul li a,nav.pagination ul li .pagination-lg a{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link,.pagination-lg .page-item:first-child nav.pagination ul li a,.pagination-lg nav.pagination ul li:first-child .page-link,.pagination-lg nav.pagination ul li:first-child a,nav.pagination ul .pagination-lg li:first-child .page-link,nav.pagination ul .pagination-lg li:first-child a,nav.pagination ul li .pagination-lg .page-item:first-child a{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link,.pagination-lg .page-item:last-child nav.pagination ul li a,.pagination-lg nav.pagination ul li:last-child .page-link,.pagination-lg nav.pagination ul li:last-child a,nav.pagination ul .pagination-lg li:last-child .page-link,nav.pagination ul .pagination-lg li:last-child a,nav.pagination ul li .pagination-lg .page-item:last-child a{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link,.pagination-sm nav.pagination ul li a,nav.pagination ul li .pagination-sm a{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link,.pagination-sm .page-item:first-child nav.pagination ul li a,.pagination-sm nav.pagination ul li:first-child .page-link,.pagination-sm nav.pagination ul li:first-child a,nav.pagination ul .pagination-sm li:first-child .page-link,nav.pagination ul .pagination-sm li:first-child a,nav.pagination ul li .pagination-sm .page-item:first-child a{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link,.pagination-sm .page-item:last-child nav.pagination ul li a,.pagination-sm nav.pagination ul li:last-child .page-link,.pagination-sm nav.pagination ul li:last-child a,nav.pagination ul .pagination-sm li:last-child .page-link,nav.pagination ul .pagination-sm li:last-child a,nav.pagination ul li .pagination-sm .page-item:last-child a{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge,.formControls input[name*="form.button"] .badge,.portlet:not(.portletNavigationTree) input[name=submit] .badge,a#setup-link .badge,form.loginform input[type=button] .badge,form.rowlike input[type=button] .badge,form.senaite-form input[type=button] .badge,form[action*=-controlpanel] input[type=button] .badge,form[name=analysisrequest_add_form] input[type=button] .badge,form[name=edit_form] input[type=button] .badge,form[name=sampleheader_form] input[type=button] .badge,section>ol.configlets li input[type=submit] .badge,section>ul.configlets li input[type=submit] .badge,ul.configlets>li>form input[type=button] .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#428aaf}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#346d8a}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(66,138,175,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert,.portalMessage{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#22485b;background-color:#d9e8ef;border-color:#cadee9}.alert-primary hr{border-top-color:#b8d3e2}.alert-primary .alert-link{color:#142b36}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info,.portalMessage.info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr,.portalMessage.info hr{border-top-color:#abdde5}.alert-info .alert-link,.portalMessage.info .alert-link{color:#062c33}.alert-warning,.portalMessage.warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr,.portalMessage.warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link,.portalMessage.warning .alert-link{color:#533f03}.alert-danger,.portalMessage.error{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr,.portalMessage.error hr{border-top-color:#f1b0b7}.alert-danger .alert-link,.portalMessage.error .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{0%{background-position:1rem 0}to{background-position:0 0}}.progress{height:1rem;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress,.progress-bar{display:flex;overflow:hidden}.progress-bar{flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#428aaf;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,hsla(0,0%,100%,.15) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.15) 0,hsla(0,0%,100%,.15) 75%,transparent 0,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group,section>ol.configlets,section>ul.configlets{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#293333;background-color:#e9ecef}.list-group-item,section>ol.configlets li,section>ul.configlets li{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child,section>ol.configlets li:first-child,section>ul.configlets li:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child,section>ol.configlets li:last-child,section>ul.configlets li:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled,section>ol.configlets li.disabled,section>ol.configlets li:disabled,section>ul.configlets li.disabled,section>ul.configlets li:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active,section>ol.configlets li.active,section>ul.configlets li.active{z-index:2;color:#fff;background-color:#428aaf;border-color:#428aaf}.list-group-item+.list-group-item,section>ol.configlets .list-group-item+li,section>ol.configlets li+.list-group-item,section>ol.configlets li+li,section>ul.configlets .list-group-item+li,section>ul.configlets li+.list-group-item,section>ul.configlets li+li{border-top-width:0}.list-group-item+.list-group-item.active,section>ol.configlets .list-group-item+li.active,section>ol.configlets li+.list-group-item.active,section>ol.configlets li+li.active,section>ul.configlets .list-group-item+li.active,section>ul.configlets li+.list-group-item.active,section>ul.configlets li+li.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child,section>ol.configlets .list-group-horizontal>li:first-child,section>ul.configlets .list-group-horizontal>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child,section>ol.configlets .list-group-horizontal>li:last-child,section>ul.configlets .list-group-horizontal>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active,section>ol.configlets .list-group-horizontal>li.active,section>ul.configlets .list-group-horizontal>li.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal>.list-group-item+li,section>ol.configlets .list-group-horizontal>li+.list-group-item,section>ol.configlets .list-group-horizontal>li+li,section>ul.configlets .list-group-horizontal>.list-group-item+li,section>ul.configlets .list-group-horizontal>li+.list-group-item,section>ul.configlets .list-group-horizontal>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal>.list-group-item+li.active,section>ol.configlets .list-group-horizontal>li+.list-group-item.active,section>ol.configlets .list-group-horizontal>li+li.active,section>ul.configlets .list-group-horizontal>.list-group-item+li.active,section>ul.configlets .list-group-horizontal>li+.list-group-item.active,section>ul.configlets .list-group-horizontal>li+li.active{margin-left:-1px;border-left-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-sm>li:first-child,section>ul.configlets .list-group-horizontal-sm>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-sm>li:last-child,section>ul.configlets .list-group-horizontal-sm>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>li.active,section>ul.configlets .list-group-horizontal-sm>li.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-sm>.list-group-item+li,section>ol.configlets .list-group-horizontal-sm>li+.list-group-item,section>ol.configlets .list-group-horizontal-sm>li+li,section>ul.configlets .list-group-horizontal-sm>.list-group-item+li,section>ul.configlets .list-group-horizontal-sm>li+.list-group-item,section>ul.configlets .list-group-horizontal-sm>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-sm>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-sm>li+li.active,section>ul.configlets .list-group-horizontal-sm>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-sm>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-sm>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-md>li:first-child,section>ul.configlets .list-group-horizontal-md>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-md>li:last-child,section>ul.configlets .list-group-horizontal-md>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active,section>ol.configlets .list-group-horizontal-md>li.active,section>ul.configlets .list-group-horizontal-md>li.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-md>.list-group-item+li,section>ol.configlets .list-group-horizontal-md>li+.list-group-item,section>ol.configlets .list-group-horizontal-md>li+li,section>ul.configlets .list-group-horizontal-md>.list-group-item+li,section>ul.configlets .list-group-horizontal-md>li+.list-group-item,section>ul.configlets .list-group-horizontal-md>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-md>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-md>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-md>li+li.active,section>ul.configlets .list-group-horizontal-md>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-md>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-md>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-lg>li:first-child,section>ul.configlets .list-group-horizontal-lg>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-lg>li:last-child,section>ul.configlets .list-group-horizontal-lg>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>li.active,section>ul.configlets .list-group-horizontal-lg>li.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-lg>.list-group-item+li,section>ol.configlets .list-group-horizontal-lg>li+.list-group-item,section>ol.configlets .list-group-horizontal-lg>li+li,section>ul.configlets .list-group-horizontal-lg>.list-group-item+li,section>ul.configlets .list-group-horizontal-lg>li+.list-group-item,section>ul.configlets .list-group-horizontal-lg>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-lg>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-lg>li+li.active,section>ul.configlets .list-group-horizontal-lg>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-lg>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-lg>li+li.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child,section>ol.configlets .list-group-horizontal-xl>li:first-child,section>ul.configlets .list-group-horizontal-xl>li:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child,section>ol.configlets .list-group-horizontal-xl>li:last-child,section>ul.configlets .list-group-horizontal-xl>li:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>li.active,section>ul.configlets .list-group-horizontal-xl>li.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item,section>ol.configlets .list-group-horizontal-xl>.list-group-item+li,section>ol.configlets .list-group-horizontal-xl>li+.list-group-item,section>ol.configlets .list-group-horizontal-xl>li+li,section>ul.configlets .list-group-horizontal-xl>.list-group-item+li,section>ul.configlets .list-group-horizontal-xl>li+.list-group-item,section>ul.configlets .list-group-horizontal-xl>li+li{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>.list-group-item+li.active,section>ol.configlets .list-group-horizontal-xl>li+.list-group-item.active,section>ol.configlets .list-group-horizontal-xl>li+li.active,section>ul.configlets .list-group-horizontal-xl>.list-group-item+li.active,section>ul.configlets .list-group-horizontal-xl>li+.list-group-item.active,section>ul.configlets .list-group-horizontal-xl>li+li.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item,section>ol.configlets .list-group-flush>li,section>ul.configlets .list-group-flush>li{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child,section>ol.configlets .list-group-flush>li:last-child,section>ul.configlets .list-group-flush>li:last-child{border-bottom-width:0}.list-group-item-primary{color:#22485b;background-color:#cadee9}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#22485b;background-color:#b8d3e2}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#22485b;border-color:#22485b}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{flex-basis:350px;max-width:350px;font-size:.875rem;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:hsla(0,0%,100%,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translateY(-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable:before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow:before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow:before,.bs-tooltip-top .arrow:before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow:before,.bs-tooltip-right .arrow:before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow:before,.bs-tooltip-bottom .arrow:before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow:before,.bs-tooltip-left .arrow:before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{top:0;left:0;z-index:1060;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover,.popover .arrow{position:absolute;display:block}.popover .arrow{width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow:after,.popover .arrow:before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow:before,.bs-popover-top>.arrow:before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow:after,.bs-popover-top>.arrow:after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow:before,.bs-popover-right>.arrow:before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow:before,.bs-popover-bottom>.arrow:before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow:after,.bs-popover-bottom>.arrow:after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow:before,.bs-popover-left>.arrow:before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow:after,.bs-popover-left>.arrow:after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#293333}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner:after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(1turn)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid;border-right:.25em solid transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#428aaf!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#346d8a!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light,aside section nav.portletContent{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#428aaf!important}.border-secondary{border-color:#6c757d!important}#panel-notification .succeed-notification-item,.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}#panel-notification .error-notification-item,.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important}.rounded-right,.rounded-top{border-top-right-radius:.25rem!important}.rounded-bottom,.rounded-right{border-bottom-right-radius:.25rem!important}.rounded-bottom,.rounded-left{border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix:after{display:block;clear:both;content:""}.d-none,.hiddenStructure,.priority-ico span{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block,.formHelp{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex,aside section nav.portletContent ul{display:flex!important}.d-inline-flex{display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive:before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9:before{padding-top:42.85714286%}.embed-responsive-16by9:before{padding-top:56.25%}.embed-responsive-4by3:before{padding-top:75%}.embed-responsive-1by1:before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column,aside section nav.portletContent ul{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media(min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media(min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{user-select:all!important}.user-select-auto{user-select:auto!important}.user-select-none{user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden,.portlet:not(.portletNavigationTree){overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{top:0}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-bottom{bottom:0}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{white-space:nowrap}.sr-only-focusable:active,.sr-only-focusable:focus{white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1,a#setup-link:before,div.field.error>div.error:before{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2,.portlet:not(.portletNavigationTree) input[name=submit]{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3,.portlet:not(.portletNavigationTree){margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}#panel-notification .error-notification-item,#panel-notification .succeed-notification-item,.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.stretched-link:after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.portlet:not(.portletNavigationTree) .portletHeader,.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold,.formQuestion{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#428aaf!important}a.text-primary:focus,a.text-primary:hover{color:#2d5e77!important}.discreet,.documentDescription,.formHelp,.priority-ico.priority-3,.text-secondary{color:#6c757d!important}a.discreet:focus,a.discreet:hover,a.documentDescription:focus,a.documentDescription:hover,a.formHelp:focus,a.formHelp:hover,a.priority-ico.priority-3:focus,a.priority-ico.priority-3:hover,a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.priority-ico.priority-5,.text-success{color:#28a745!important}a.priority-ico.priority-5:focus,a.priority-ico.priority-5:hover,a.text-success:focus,a.text-success:hover{color:#19692c!important}.priority-ico.priority-4,.text-info{color:#17a2b8!important}a.priority-ico.priority-4:focus,a.priority-ico.priority-4:hover,a.text-info:focus,a.text-info:hover{color:#0f6674!important}.priority-ico.priority-2,.text-warning{color:#ffc107!important}a.priority-ico.priority-2:focus,a.priority-ico.priority-2:hover,a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.priority-ico.priority-1,.text-danger,div.field.error>div.error,form.loginform .fieldErrorBox,form.rowlike .fieldErrorBox,form.senaite-form .fieldErrorBox,form[action*=-controlpanel] .fieldErrorBox,form[name=analysisrequest_add_form] .fieldErrorBox,form[name=edit_form] .fieldErrorBox,form[name=sampleheader_form] .fieldErrorBox,ul.configlets>li>form .fieldErrorBox{color:#dc3545!important}a.priority-ico.priority-1:focus,a.priority-ico.priority-1:hover,a.text-danger:focus,a.text-danger:hover,form.loginform a.fieldErrorBox:focus,form.loginform a.fieldErrorBox:hover,form.rowlike a.fieldErrorBox:focus,form.rowlike a.fieldErrorBox:hover,form.senaite-form a.fieldErrorBox:focus,form.senaite-form a.fieldErrorBox:hover,form[action*=-controlpanel] a.fieldErrorBox:focus,form[action*=-controlpanel] a.fieldErrorBox:hover,form[name=analysisrequest_add_form] a.fieldErrorBox:focus,form[name=analysisrequest_add_form] a.fieldErrorBox:hover,form[name=edit_form] a.fieldErrorBox:focus,form[name=edit_form] a.fieldErrorBox:hover,form[name=sampleheader_form] a.fieldErrorBox:focus,form[name=sampleheader_form] a.fieldErrorBox:hover,ul.configlets>li>form a.fieldErrorBox:focus,ul.configlets>li>form a.fieldErrorBox:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#293333!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:hsla(0,0%,100%,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,:after,:before{text-shadow:none!important;box-shadow:none!important}a:not(.btn):not(a#setup-link){text-decoration:underline}abbr[title]:after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd}blockquote,img,pre,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}.container,body{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table,table.listing{border-collapse:collapse!important}.table td,.table th,table.listing td,table.listing th{background-color:#fff!important}.table-bordered td,.table-bordered th,table.listing td,table.listing th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th,table.listing .thead-dark th{color:inherit;border-color:#dee2e6}}#senaite-toolbar .tb-state:before,#sidebar.minimized .sidebar-toggle-icon,#sidebar .sidebar-toggle-icon,#sidebar.toggled .sidebar-toggle-icon,.fa,.fab,.fad,.fal,.far,.fas,.priority-ico,a#setup-link:before,div.field.error>div.error:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}#senaite-toolbar .fa-pull-left.tb-state:before,#sidebar .fa-pull-left.sidebar-toggle-icon,.fa-pull-left.priority-ico,.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left,a.fa-pull-left#setup-link:before,div.field.error>div.fa-pull-left.error:before{margin-right:.3em}#senaite-toolbar .fa-pull-right.tb-state:before,#sidebar .fa-pull-right.sidebar-toggle-icon,.fa-pull-right.priority-ico,.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right,a.fa-pull-right#setup-link:before,div.field.error>div.fa-pull-right.error:before{margin-left:.3em}.fa-spin{animation:fa-spin 2s linear infinite}.fa-pulse{animation:fa-spin 1s steps(8) infinite}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:""}.fa-accessible-icon:before{content:""}.fa-accusoft:before{content:""}.fa-acquisitions-incorporated:before{content:""}.fa-ad:before{content:""}.fa-address-book:before{content:""}.fa-address-card:before{content:""}.fa-adjust:before{content:""}.fa-adn:before{content:""}.fa-adversal:before{content:""}.fa-affiliatetheme:before{content:""}.fa-air-freshener:before{content:""}.fa-airbnb:before{content:""}.fa-algolia:before{content:""}.fa-align-center:before{content:""}.fa-align-justify:before{content:""}.fa-align-left:before{content:""}.fa-align-right:before{content:""}.fa-alipay:before{content:""}.fa-allergies:before{content:""}.fa-amazon:before{content:""}.fa-amazon-pay:before{content:""}.fa-ambulance:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-amilia:before{content:""}.fa-anchor:before{content:""}.fa-android:before{content:""}.fa-angellist:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angry:before{content:""}.fa-angrycreative:before{content:""}.fa-angular:before{content:""}.fa-ankh:before{content:""}.fa-app-store:before{content:""}.fa-app-store-ios:before{content:""}.fa-apper:before{content:""}.fa-apple:before{content:""}.fa-apple-alt:before{content:""}.fa-apple-pay:before{content:""}.fa-archive:before{content:""}.fa-archway:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-arrow-circle-left:before,a#setup-link:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-down:before,.priority-ico.priority-4:before,.priority-ico.priority-5:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before,.priority-ico.priority-1:before,.priority-ico.priority-2:before,.priority-ico.priority-3:before{content:""}.fa-arrows-alt:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-artstation:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asterisk:before{content:""}.fa-asymmetrik:before{content:""}.fa-at:before{content:""}.fa-atlas:before{content:""}.fa-atlassian:before{content:""}.fa-atom:before{content:""}.fa-audible:before{content:""}.fa-audio-description:before{content:""}.fa-autoprefixer:before{content:""}.fa-avianex:before{content:""}.fa-aviato:before{content:""}.fa-award:before{content:""}.fa-aws:before{content:""}.fa-baby:before{content:""}.fa-baby-carriage:before{content:""}.fa-backspace:before{content:""}.fa-backward:before{content:""}.fa-bacon:before{content:""}.fa-bacteria:before{content:""}.fa-bacterium:before{content:""}.fa-bahai:before{content:""}.fa-balance-scale:before{content:""}.fa-balance-scale-left:before{content:""}.fa-balance-scale-right:before{content:""}.fa-ban:before{content:""}.fa-band-aid:before{content:""}.fa-bandcamp:before{content:""}.fa-barcode:before{content:""}.fa-bars:before{content:""}.fa-baseball-ball:before{content:""}.fa-basketball-ball:before{content:""}.fa-bath:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-full:before{content:""}.fa-battery-half:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battle-net:before{content:""}.fa-bed:before{content:""}.fa-beer:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-bell:before{content:""}.fa-bell-slash:before{content:""}.fa-bezier-curve:before{content:""}.fa-bible:before{content:""}.fa-bicycle:before{content:""}.fa-biking:before{content:""}.fa-bimobject:before{content:""}.fa-binoculars:before{content:""}.fa-biohazard:before{content:""}.fa-birthday-cake:before{content:""}.fa-bitbucket:before{content:""}.fa-bitcoin:before{content:""}.fa-bity:before{content:""}.fa-black-tie:before{content:""}.fa-blackberry:before{content:""}.fa-blender:before{content:""}.fa-blender-phone:before{content:""}.fa-blind:before{content:""}.fa-blog:before{content:""}.fa-blogger:before{content:""}.fa-blogger-b:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-bold:before{content:""}#senaite-toolbar .tb-state:before,.fa-bolt:before{content:""}.fa-bomb:before{content:""}.fa-bone:before{content:""}.fa-bong:before{content:""}.fa-book:before{content:""}.fa-book-dead:before{content:""}.fa-book-medical:before{content:""}.fa-book-open:before{content:""}.fa-book-reader:before{content:""}.fa-bookmark:before{content:""}.fa-bootstrap:before{content:""}.fa-border-all:before{content:""}.fa-border-none:before{content:""}.fa-border-style:before{content:""}.fa-bowling-ball:before{content:""}.fa-box:before{content:""}.fa-box-open:before{content:""}.fa-box-tissue:before{content:""}.fa-boxes:before{content:""}.fa-braille:before{content:""}.fa-brain:before{content:""}.fa-bread-slice:before{content:""}.fa-briefcase:before{content:""}.fa-briefcase-medical:before{content:""}.fa-broadcast-tower:before{content:""}.fa-broom:before{content:""}.fa-brush:before{content:""}.fa-btc:before{content:""}.fa-buffer:before{content:""}.fa-bug:before{content:""}.fa-building:before{content:""}.fa-bullhorn:before{content:""}.fa-bullseye:before{content:""}.fa-burn:before{content:""}.fa-buromobelexperte:before{content:""}.fa-bus:before{content:""}.fa-bus-alt:before{content:""}.fa-business-time:before{content:""}.fa-buy-n-large:before{content:""}.fa-buysellads:before{content:""}.fa-calculator:before{content:""}.fa-calendar:before{content:""}.fa-calendar-alt:before{content:""}.fa-calendar-check:before{content:""}.fa-calendar-day:before{content:""}.fa-calendar-minus:before{content:""}.fa-calendar-plus:before{content:""}.fa-calendar-times:before{content:""}.fa-calendar-week:before{content:""}.fa-camera:before{content:""}.fa-camera-retro:before{content:""}.fa-campground:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-candy-cane:before{content:""}.fa-cannabis:before{content:""}.fa-capsules:before{content:""}.fa-car:before{content:""}.fa-car-alt:before{content:""}.fa-car-battery:before{content:""}.fa-car-crash:before{content:""}.fa-car-side:before{content:""}.fa-caravan:before{content:""}.fa-caret-down:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-caret-square-down:before{content:""}.fa-caret-square-left:before{content:""}.fa-caret-square-right:before{content:""}.fa-caret-square-up:before{content:""}.fa-caret-up:before{content:""}.fa-carrot:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-cart-plus:before{content:""}.fa-cash-register:before{content:""}.fa-cat:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-cc-diners-club:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-cc-visa:before{content:""}.fa-centercode:before{content:""}.fa-centos:before{content:""}.fa-certificate:before{content:""}.fa-chair:before{content:""}.fa-chalkboard:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-charging-station:before{content:""}.fa-chart-area:before{content:""}.fa-chart-bar:before{content:""}.fa-chart-line:before{content:""}.fa-chart-pie:before{content:""}.fa-check:before{content:""}.fa-check-circle:before{content:""}.fa-check-double:before{content:""}.fa-check-square:before{content:""}.fa-cheese:before{content:""}.fa-chess:before{content:""}.fa-chess-bishop:before{content:""}.fa-chess-board:before{content:""}.fa-chess-king:before{content:""}.fa-chess-knight:before{content:""}.fa-chess-pawn:before{content:""}.fa-chess-queen:before{content:""}.fa-chess-rook:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-down:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-chevron-up:before{content:""}.fa-child:before{content:""}.fa-chrome:before{content:""}.fa-chromecast:before{content:""}.fa-church:before{content:""}.fa-circle:before{content:""}.fa-circle-notch:before{content:""}.fa-city:before{content:""}.fa-clinic-medical:before{content:""}.fa-clipboard:before{content:""}.fa-clipboard-check:before{content:""}.fa-clipboard-list:before{content:""}.fa-clock:before{content:""}.fa-clone:before{content:""}.fa-closed-captioning:before{content:""}.fa-cloud:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-cloud-meatball:before{content:""}.fa-cloud-moon:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-cloud-rain:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-cloud-sun:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-cloudflare:before{content:""}.fa-cloudscale:before{content:""}.fa-cloudsmith:before{content:""}.fa-cloudversify:before{content:""}.fa-cocktail:before{content:""}.fa-code:before{content:""}.fa-code-branch:before{content:""}.fa-codepen:before{content:""}.fa-codiepie:before{content:""}.fa-coffee:before{content:""}.fa-cog:before{content:""}.fa-cogs:before{content:""}.fa-coins:before{content:""}.fa-columns:before{content:""}.fa-comment:before{content:""}.fa-comment-alt:before{content:""}.fa-comment-dollar:before{content:""}.fa-comment-dots:before{content:""}.fa-comment-medical:before{content:""}.fa-comment-slash:before{content:""}.fa-comments:before{content:""}.fa-comments-dollar:before{content:""}.fa-compact-disc:before{content:""}.fa-compass:before{content:""}.fa-compress:before{content:""}.fa-compress-alt:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-concierge-bell:before{content:""}.fa-confluence:before{content:""}.fa-connectdevelop:before{content:""}.fa-contao:before{content:""}.fa-cookie:before{content:""}.fa-cookie-bite:before{content:""}.fa-copy:before{content:""}.fa-copyright:before{content:""}.fa-cotton-bureau:before{content:""}.fa-couch:before{content:""}.fa-cpanel:before{content:""}.fa-creative-commons:before{content:""}.fa-creative-commons-by:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-creative-commons-share:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-credit-card:before{content:""}.fa-critical-role:before{content:""}.fa-crop:before{content:""}.fa-crop-alt:before{content:""}.fa-cross:before{content:""}.fa-crosshairs:before{content:""}.fa-crow:before{content:""}.fa-crown:before{content:""}.fa-crutch:before{content:""}.fa-css3:before{content:""}.fa-css3-alt:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-cut:before{content:""}.fa-cuttlefish:before{content:""}.fa-d-and-d:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-dailymotion:before{content:""}.fa-dashcube:before{content:""}.fa-database:before{content:""}.fa-deaf:before{content:""}.fa-deezer:before{content:""}.fa-delicious:before{content:""}.fa-democrat:before{content:""}.fa-deploydog:before{content:""}.fa-deskpro:before{content:""}.fa-desktop:before{content:""}.fa-dev:before{content:""}.fa-deviantart:before{content:""}.fa-dharmachakra:before{content:""}.fa-dhl:before{content:""}.fa-diagnoses:before{content:""}.fa-diaspora:before{content:""}.fa-dice:before{content:""}.fa-dice-d20:before{content:""}.fa-dice-d6:before{content:""}.fa-dice-five:before{content:""}.fa-dice-four:before{content:""}.fa-dice-one:before{content:""}.fa-dice-six:before{content:""}.fa-dice-three:before{content:""}.fa-dice-two:before{content:""}.fa-digg:before{content:""}.fa-digital-ocean:before{content:""}.fa-digital-tachograph:before{content:""}.fa-directions:before{content:""}.fa-discord:before{content:""}.fa-discourse:before{content:""}.fa-disease:before{content:""}.fa-divide:before{content:""}.fa-dizzy:before{content:""}.fa-dna:before{content:""}.fa-dochub:before{content:""}.fa-docker:before{content:""}.fa-dog:before{content:""}.fa-dollar-sign:before{content:""}.fa-dolly:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-donate:before{content:""}.fa-door-closed:before{content:""}.fa-door-open:before{content:""}.fa-dot-circle:before{content:""}.fa-dove:before{content:""}.fa-download:before{content:""}.fa-draft2digital:before{content:""}.fa-drafting-compass:before{content:""}.fa-dragon:before{content:""}.fa-draw-polygon:before{content:""}.fa-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-dropbox:before{content:""}.fa-drum:before{content:""}.fa-drum-steelpan:before{content:""}.fa-drumstick-bite:before{content:""}.fa-drupal:before{content:""}.fa-dumbbell:before{content:""}.fa-dumpster:before{content:""}.fa-dumpster-fire:before{content:""}.fa-dungeon:before{content:""}.fa-dyalog:before{content:""}.fa-earlybirds:before{content:""}.fa-ebay:before{content:""}.fa-edge:before{content:""}.fa-edge-legacy:before{content:""}.fa-edit:before{content:""}.fa-egg:before{content:""}.fa-eject:before{content:""}.fa-elementor:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ello:before{content:""}.fa-ember:before{content:""}.fa-empire:before{content:""}.fa-envelope:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-text:before{content:""}.fa-envelope-square:before{content:""}.fa-envira:before{content:""}.fa-equals:before{content:""}.fa-eraser:before{content:""}.fa-erlang:before{content:""}.fa-ethereum:before{content:""}.fa-ethernet:before{content:""}.fa-etsy:before{content:""}.fa-euro-sign:before{content:""}.fa-evernote:before{content:""}.fa-exchange-alt:before{content:""}.fa-exclamation:before{content:""}.fa-exclamation-circle:before,div.field.error>div.error:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-expand:before{content:""}.fa-expand-alt:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-expeditedssl:before{content:""}.fa-external-link-alt:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-eye:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-slash:before{content:""}.fa-facebook:before{content:""}.fa-facebook-f:before{content:""}.fa-facebook-messenger:before{content:""}.fa-facebook-square:before{content:""}.fa-fan:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-fast-backward:before{content:""}.fa-fast-forward:before{content:""}.fa-faucet:before{content:""}.fa-fax:before{content:""}.fa-feather:before{content:""}.fa-feather-alt:before{content:""}.fa-fedex:before{content:""}.fa-fedora:before{content:""}.fa-female:before{content:""}.fa-fighter-jet:before{content:""}.fa-figma:before{content:""}.fa-file:before{content:""}.fa-file-alt:before{content:""}.fa-file-archive:before{content:""}.fa-file-audio:before{content:""}.fa-file-code:before{content:""}.fa-file-contract:before{content:""}.fa-file-csv:before{content:""}.fa-file-download:before{content:""}.fa-file-excel:before{content:""}.fa-file-export:before{content:""}.fa-file-image:before{content:""}.fa-file-import:before{content:""}.fa-file-invoice:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-file-medical:before{content:""}.fa-file-medical-alt:before{content:""}.fa-file-pdf:before{content:""}.fa-file-powerpoint:before{content:""}.fa-file-prescription:before{content:""}.fa-file-signature:before{content:""}.fa-file-upload:before{content:""}.fa-file-video:before{content:""}.fa-file-word:before{content:""}.fa-fill:before{content:""}.fa-fill-drip:before{content:""}.fa-film:before{content:""}.fa-filter:before{content:""}.fa-fingerprint:before{content:""}.fa-fire:before{content:""}.fa-fire-alt:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-firefox:before{content:""}.fa-firefox-browser:before{content:""}.fa-first-aid:before{content:""}.fa-first-order:before{content:""}.fa-first-order-alt:before{content:""}.fa-firstdraft:before{content:""}.fa-fish:before{content:""}.fa-fist-raised:before{content:""}.fa-flag:before{content:""}.fa-flag-checkered:before{content:""}.fa-flag-usa:before{content:""}.fa-flask:before{content:""}.fa-flickr:before{content:""}.fa-flipboard:before{content:""}.fa-flushed:before{content:""}.fa-fly:before{content:""}.fa-folder:before{content:""}.fa-folder-minus:before{content:""}.fa-folder-open:before{content:""}.fa-folder-plus:before{content:""}.fa-font:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-fonticons:before{content:""}.fa-fonticons-fi:before{content:""}.fa-football-ball:before{content:""}.fa-fort-awesome:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-forumbee:before{content:""}.fa-forward:before{content:""}.fa-foursquare:before{content:""}.fa-free-code-camp:before{content:""}.fa-freebsd:before{content:""}.fa-frog:before{content:""}.fa-frown:before{content:""}.fa-frown-open:before{content:""}.fa-fulcrum:before{content:""}.fa-funnel-dollar:before{content:""}.fa-futbol:before{content:""}.fa-galactic-republic:before{content:""}.fa-galactic-senate:before{content:""}.fa-gamepad:before{content:""}.fa-gas-pump:before{content:""}.fa-gavel:before{content:""}.fa-gem:before{content:""}.fa-genderless:before{content:""}.fa-get-pocket:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-ghost:before{content:""}.fa-gift:before{content:""}.fa-gifts:before{content:""}.fa-git:before{content:""}.fa-git-alt:before{content:""}.fa-git-square:before{content:""}.fa-github:before{content:""}.fa-github-alt:before{content:""}.fa-github-square:before{content:""}.fa-gitkraken:before{content:""}.fa-gitlab:before{content:""}.fa-gitter:before{content:""}.fa-glass-cheers:before{content:""}.fa-glass-martini:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-glass-whiskey:before{content:""}.fa-glasses:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-globe:before{content:""}.fa-globe-africa:before{content:""}.fa-globe-americas:before{content:""}.fa-globe-asia:before{content:""}.fa-globe-europe:before{content:""}.fa-gofore:before{content:""}.fa-golf-ball:before{content:""}.fa-goodreads:before{content:""}.fa-goodreads-g:before{content:""}.fa-google:before{content:""}.fa-google-drive:before{content:""}.fa-google-pay:before{content:""}.fa-google-play:before{content:""}.fa-google-plus:before{content:""}.fa-google-plus-g:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-wallet:before{content:""}.fa-gopuram:before{content:""}.fa-graduation-cap:before{content:""}.fa-gratipay:before{content:""}.fa-grav:before{content:""}.fa-greater-than:before{content:""}.fa-greater-than-equal:before{content:""}.fa-grimace:before{content:""}.fa-grin:before{content:""}.fa-grin-alt:before{content:""}.fa-grin-beam:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-grin-hearts:before{content:""}.fa-grin-squint:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-grin-stars:before{content:""}.fa-grin-tears:before{content:""}.fa-grin-tongue:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-grip-horizontal:before{content:""}.fa-grip-lines:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-grip-vertical:before{content:""}.fa-gripfire:before{content:""}.fa-grunt:before{content:""}.fa-guilded:before{content:""}.fa-guitar:before{content:""}.fa-gulp:before{content:""}.fa-h-square:before{content:""}.fa-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-hackerrank:before{content:""}.fa-hamburger:before{content:""}.fa-hammer:before{content:""}.fa-hamsa:before{content:""}.fa-hand-holding:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-hand-holding-water:before{content:""}.fa-hand-lizard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-hand-paper:before{content:""}.fa-hand-peace:before{content:""}.fa-hand-point-down:before{content:""}.fa-hand-point-left:before{content:""}.fa-hand-point-right:before{content:""}.fa-hand-point-up:before{content:""}.fa-hand-pointer:before{content:""}.fa-hand-rock:before{content:""}.fa-hand-scissors:before{content:""}.fa-hand-sparkles:before{content:""}.fa-hand-spock:before{content:""}.fa-hands:before{content:""}.fa-hands-helping:before{content:""}.fa-hands-wash:before{content:""}.fa-handshake:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-handshake-slash:before{content:""}.fa-hanukiah:before{content:""}.fa-hard-hat:before{content:""}.fa-hashtag:before{content:""}.fa-hat-cowboy:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-hat-wizard:before{content:""}.fa-hdd:before{content:""}.fa-head-side-cough:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-head-side-mask:before{content:""}.fa-head-side-virus:before{content:""}.fa-heading:before{content:""}.fa-headphones:before{content:""}.fa-headphones-alt:before{content:""}.fa-headset:before{content:""}.fa-heart:before{content:""}.fa-heart-broken:before{content:""}.fa-heartbeat:before{content:""}.fa-helicopter:before{content:""}.fa-highlighter:before{content:""}.fa-hiking:before{content:""}.fa-hippo:before{content:""}.fa-hips:before{content:""}.fa-hire-a-helper:before{content:""}.fa-history:before{content:""}.fa-hive:before{content:""}.fa-hockey-puck:before{content:""}.fa-holly-berry:before{content:""}.fa-home:before{content:""}.fa-hooli:before{content:""}.fa-hornbill:before{content:""}.fa-horse:before{content:""}.fa-horse-head:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-symbol:before{content:""}.fa-hospital-user:before{content:""}.fa-hot-tub:before{content:""}.fa-hotdog:before{content:""}.fa-hotel:before{content:""}.fa-hotjar:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-start:before{content:""}.fa-house-damage:before{content:""}.fa-house-user:before{content:""}.fa-houzz:before{content:""}.fa-hryvnia:before{content:""}.fa-html5:before{content:""}.fa-hubspot:before{content:""}.fa-i-cursor:before{content:""}.fa-ice-cream:before{content:""}.fa-icicles:before{content:""}.fa-icons:before{content:""}.fa-id-badge:before{content:""}.fa-id-card:before{content:""}.fa-id-card-alt:before{content:""}.fa-ideal:before{content:""}.fa-igloo:before{content:""}.fa-image:before{content:""}.fa-images:before{content:""}.fa-imdb:before{content:""}.fa-inbox:before{content:""}.fa-indent:before{content:""}.fa-industry:before{content:""}.fa-infinity:before{content:""}.fa-info:before{content:""}.fa-info-circle:before{content:""}.fa-innosoft:before{content:""}.fa-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-instalod:before{content:""}.fa-intercom:before{content:""}.fa-internet-explorer:before{content:""}.fa-invision:before{content:""}.fa-ioxhost:before{content:""}.fa-italic:before{content:""}.fa-itch-io:before{content:""}.fa-itunes:before{content:""}.fa-itunes-note:before{content:""}.fa-java:before{content:""}.fa-jedi:before{content:""}.fa-jedi-order:before{content:""}.fa-jenkins:before{content:""}.fa-jira:before{content:""}.fa-joget:before{content:""}.fa-joint:before{content:""}.fa-joomla:before{content:""}.fa-journal-whills:before{content:""}.fa-js:before{content:""}.fa-js-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-kaaba:before{content:""}.fa-kaggle:before{content:""}.fa-key:before{content:""}.fa-keybase:before{content:""}.fa-keyboard:before{content:""}.fa-keycdn:before{content:""}.fa-khanda:before{content:""}.fa-kickstarter:before{content:""}.fa-kickstarter-k:before{content:""}.fa-kiss:before{content:""}.fa-kiss-beam:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-kiwi-bird:before{content:""}.fa-korvue:before{content:""}.fa-landmark:before{content:""}.fa-language:before{content:""}.fa-laptop:before{content:""}.fa-laptop-code:before{content:""}.fa-laptop-house:before{content:""}.fa-laptop-medical:before{content:""}.fa-laravel:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-laugh:before{content:""}.fa-laugh-beam:before{content:""}.fa-laugh-squint:before{content:""}.fa-laugh-wink:before{content:""}.fa-layer-group:before{content:""}.fa-leaf:before{content:""}.fa-leanpub:before{content:""}.fa-lemon:before{content:""}.fa-less:before{content:""}.fa-less-than:before{content:""}.fa-less-than-equal:before{content:""}.fa-level-down-alt:before{content:""}.fa-level-up-alt:before{content:""}.fa-life-ring:before{content:""}.fa-lightbulb:before{content:""}.fa-line:before{content:""}.fa-link:before{content:""}.fa-linkedin:before{content:""}.fa-linkedin-in:before{content:""}.fa-linode:before{content:""}.fa-linux:before{content:""}.fa-lira-sign:before{content:""}.fa-list:before{content:""}.fa-list-alt:before{content:""}.fa-list-ol:before{content:""}.fa-list-ul:before{content:""}.fa-location-arrow:before{content:""}.fa-lock:before{content:""}.fa-lock-open:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-low-vision:before{content:""}.fa-luggage-cart:before{content:""}.fa-lungs:before{content:""}.fa-lungs-virus:before{content:""}.fa-lyft:before{content:""}.fa-magento:before{content:""}.fa-magic:before{content:""}.fa-magnet:before{content:""}.fa-mail-bulk:before{content:""}.fa-mailchimp:before{content:""}.fa-male:before{content:""}.fa-mandalorian:before{content:""}.fa-map:before{content:""}.fa-map-marked:before{content:""}.fa-map-marked-alt:before{content:""}.fa-map-marker:before{content:""}.fa-map-marker-alt:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-markdown:before{content:""}.fa-marker:before{content:""}.fa-mars:before{content:""}.fa-mars-double:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mask:before{content:""}.fa-mastodon:before{content:""}.fa-maxcdn:before{content:""}.fa-mdb:before{content:""}.fa-medal:before{content:""}.fa-medapps:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-medkit:before{content:""}.fa-medrt:before{content:""}.fa-meetup:before{content:""}.fa-megaport:before{content:""}.fa-meh:before{content:""}.fa-meh-blank:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-memory:before{content:""}.fa-mendeley:before{content:""}.fa-menorah:before{content:""}.fa-mercury:before{content:""}.fa-meteor:before{content:""}.fa-microblog:before{content:""}.fa-microchip:before{content:""}.fa-microphone:before{content:""}.fa-microphone-alt:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-microphone-slash:before{content:""}.fa-microscope:before{content:""}.fa-microsoft:before{content:""}.fa-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-minus-square:before{content:""}.fa-mitten:before{content:""}.fa-mix:before{content:""}.fa-mixcloud:before{content:""}.fa-mixer:before{content:""}.fa-mizuni:before{content:""}.fa-mobile:before{content:""}.fa-mobile-alt:before{content:""}.fa-modx:before{content:""}.fa-monero:before{content:""}.fa-money-bill:before{content:""}.fa-money-bill-alt:before{content:""}.fa-money-bill-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-money-check:before{content:""}.fa-money-check-alt:before{content:""}.fa-monument:before{content:""}.fa-moon:before{content:""}.fa-mortar-pestle:before{content:""}.fa-mosque:before{content:""}.fa-motorcycle:before{content:""}.fa-mountain:before{content:""}.fa-mouse:before{content:""}.fa-mouse-pointer:before{content:""}.fa-mug-hot:before{content:""}.fa-music:before{content:""}.fa-napster:before{content:""}.fa-neos:before{content:""}.fa-network-wired:before{content:""}.fa-neuter:before{content:""}.fa-newspaper:before{content:""}.fa-nimblr:before{content:""}.fa-node:before{content:""}.fa-node-js:before{content:""}.fa-not-equal:before{content:""}.fa-notes-medical:before{content:""}.fa-npm:before{content:""}.fa-ns8:before{content:""}.fa-nutritionix:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-octopus-deploy:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-oil-can:before{content:""}.fa-old-republic:before{content:""}.fa-om:before{content:""}.fa-opencart:before{content:""}.fa-openid:before{content:""}.fa-opera:before{content:""}.fa-optin-monster:before{content:""}.fa-orcid:before{content:""}.fa-osi:before{content:""}.fa-otter:before{content:""}.fa-outdent:before{content:""}.fa-page4:before{content:""}.fa-pagelines:before{content:""}.fa-pager:before{content:""}.fa-paint-brush:before{content:""}.fa-paint-roller:before{content:""}.fa-palette:before{content:""}.fa-palfed:before{content:""}.fa-pallet:before{content:""}.fa-paper-plane:before{content:""}.fa-paperclip:before{content:""}.fa-parachute-box:before{content:""}.fa-paragraph:before{content:""}.fa-parking:before{content:""}.fa-passport:before{content:""}.fa-pastafarianism:before{content:""}.fa-paste:before{content:""}.fa-patreon:before{content:""}.fa-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-paw:before{content:""}.fa-paypal:before{content:""}.fa-peace:before{content:""}.fa-pen:before{content:""}.fa-pen-alt:before{content:""}.fa-pen-fancy:before{content:""}.fa-pen-nib:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-alt:before{content:""}.fa-pencil-ruler:before{content:""}.fa-penny-arcade:before{content:""}.fa-people-arrows:before{content:""}.fa-people-carry:before{content:""}.fa-pepper-hot:before{content:""}.fa-perbyte:before{content:""}.fa-percent:before{content:""}.fa-percentage:before{content:""}.fa-periscope:before{content:""}.fa-person-booth:before{content:""}.fa-phabricator:before{content:""}.fa-phoenix-framework:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-phone:before{content:""}.fa-phone-alt:before{content:""}.fa-phone-slash:before{content:""}.fa-phone-square:before{content:""}.fa-phone-square-alt:before{content:""}.fa-phone-volume:before{content:""}.fa-photo-video:before{content:""}.fa-php:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-square:before{content:""}.fa-piggy-bank:before{content:""}.fa-pills:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-p:before{content:""}.fa-pinterest-square:before{content:""}.fa-pizza-slice:before{content:""}.fa-place-of-worship:before{content:""}.fa-plane:before{content:""}.fa-plane-arrival:before{content:""}.fa-plane-departure:before{content:""}.fa-plane-slash:before{content:""}.fa-play:before{content:""}.fa-play-circle:before{content:""}.fa-playstation:before{content:""}.fa-plug:before{content:""}.fa-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-plus-square:before{content:""}.fa-podcast:before{content:""}.fa-poll:before{content:""}.fa-poll-h:before{content:""}.fa-poo:before{content:""}.fa-poo-storm:before{content:""}.fa-poop:before{content:""}.fa-portrait:before{content:""}.fa-pound-sign:before{content:""}.fa-power-off:before{content:""}.fa-pray:before{content:""}.fa-praying-hands:before{content:""}.fa-prescription:before{content:""}.fa-prescription-bottle:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-print:before{content:""}.fa-procedures:before{content:""}.fa-product-hunt:before{content:""}.fa-project-diagram:before{content:""}.fa-pump-medical:before{content:""}.fa-pump-soap:before{content:""}.fa-pushed:before{content:""}.fa-puzzle-piece:before{content:""}.fa-python:before{content:""}.fa-qq:before{content:""}.fa-qrcode:before{content:""}.fa-question:before{content:""}.fa-question-circle:before{content:""}.fa-quidditch:before{content:""}.fa-quinscape:before{content:""}.fa-quora:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-quran:before{content:""}.fa-r-project:before{content:""}.fa-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-rainbow:before{content:""}.fa-random:before{content:""}.fa-raspberry-pi:before{content:""}.fa-ravelry:before{content:""}.fa-react:before{content:""}.fa-reacteurope:before{content:""}.fa-readme:before{content:""}.fa-rebel:before{content:""}.fa-receipt:before{content:""}.fa-record-vinyl:before{content:""}.fa-recycle:before{content:""}.fa-red-river:before{content:""}.fa-reddit:before{content:""}.fa-reddit-alien:before{content:""}.fa-reddit-square:before{content:""}.fa-redhat:before{content:""}.fa-redo:before{content:""}.fa-redo-alt:before{content:""}.fa-registered:before{content:""}.fa-remove-format:before{content:""}.fa-renren:before{content:""}.fa-reply:before{content:""}.fa-reply-all:before{content:""}.fa-replyd:before{content:""}.fa-republican:before{content:""}.fa-researchgate:before{content:""}.fa-resolving:before{content:""}.fa-restroom:before{content:""}.fa-retweet:before{content:""}.fa-rev:before{content:""}.fa-ribbon:before{content:""}.fa-ring:before{content:""}.fa-road:before{content:""}.fa-robot:before{content:""}.fa-rocket:before{content:""}.fa-rocketchat:before{content:""}.fa-rockrms:before{content:""}.fa-route:before{content:""}.fa-rss:before{content:""}.fa-rss-square:before{content:""}.fa-ruble-sign:before{content:""}.fa-ruler:before{content:""}.fa-ruler-combined:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-ruler-vertical:before{content:""}.fa-running:before{content:""}.fa-rupee-sign:before{content:""}.fa-rust:before{content:""}.fa-sad-cry:before{content:""}.fa-sad-tear:before{content:""}.fa-safari:before{content:""}.fa-salesforce:before{content:""}.fa-sass:before{content:""}.fa-satellite:before{content:""}.fa-satellite-dish:before{content:""}.fa-save:before{content:""}.fa-schlix:before{content:""}.fa-school:before{content:""}.fa-screwdriver:before{content:""}.fa-scribd:before{content:""}.fa-scroll:before{content:""}.fa-sd-card:before{content:""}.fa-search:before{content:""}.fa-search-dollar:before{content:""}.fa-search-location:before{content:""}.fa-search-minus:before{content:""}.fa-search-plus:before{content:""}.fa-searchengin:before{content:""}.fa-seedling:before{content:""}.fa-sellcast:before{content:""}.fa-sellsy:before{content:""}.fa-server:before{content:""}.fa-servicestack:before{content:""}.fa-shapes:before{content:""}.fa-share:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-share-square:before{content:""}.fa-shekel-sign:before{content:""}.fa-shield-alt:before{content:""}.fa-shield-virus:before{content:""}.fa-ship:before{content:""}.fa-shipping-fast:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-shoe-prints:before{content:""}.fa-shopify:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-shopping-cart:before{content:""}.fa-shopware:before{content:""}.fa-shower:before{content:""}.fa-shuttle-van:before{content:""}.fa-sign:before{content:""}.fa-sign-in-alt:before{content:""}.fa-sign-language:before{content:""}.fa-sign-out-alt:before{content:""}.fa-signal:before{content:""}.fa-signature:before{content:""}.fa-sim-card:before{content:""}.fa-simplybuilt:before{content:""}.fa-sink:before{content:""}.fa-sistrix:before{content:""}.fa-sitemap:before{content:""}.fa-sith:before{content:""}.fa-skating:before{content:""}.fa-sketch:before{content:""}.fa-skiing:before{content:""}.fa-skiing-nordic:before{content:""}.fa-skull:before{content:""}.fa-skull-crossbones:before{content:""}.fa-skyatlas:before{content:""}.fa-skype:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-slash:before{content:""}.fa-sleigh:before{content:""}.fa-sliders-h:before{content:""}.fa-slideshare:before{content:""}.fa-smile:before{content:""}.fa-smile-beam:before{content:""}.fa-smile-wink:before{content:""}.fa-smog:before{content:""}.fa-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-sms:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-snowboarding:before{content:""}.fa-snowflake:before{content:""}.fa-snowman:before{content:""}.fa-snowplow:before{content:""}.fa-soap:before{content:""}.fa-socks:before{content:""}.fa-solar-panel:before{content:""}.fa-sort:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-sort-amount-down:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-sort-amount-up:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-sort-down:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-sort-up:before{content:""}.fa-soundcloud:before{content:""}.fa-sourcetree:before{content:""}.fa-spa:before{content:""}.fa-space-shuttle:before{content:""}.fa-speakap:before{content:""}.fa-speaker-deck:before{content:""}.fa-spell-check:before{content:""}.fa-spider:before{content:""}.fa-spinner:before{content:""}.fa-splotch:before{content:""}.fa-spotify:before{content:""}.fa-spray-can:before{content:""}.fa-square:before{content:""}.fa-square-full:before{content:""}.fa-square-root-alt:before{content:""}.fa-squarespace:before{content:""}.fa-stack-exchange:before{content:""}.fa-stack-overflow:before{content:""}.fa-stackpath:before{content:""}.fa-stamp:before{content:""}.fa-star:before{content:""}.fa-star-and-crescent:before{content:""}.fa-star-half:before{content:""}.fa-star-half-alt:before{content:""}.fa-star-of-david:before{content:""}.fa-star-of-life:before{content:""}.fa-staylinked:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-steam-symbol:before{content:""}.fa-step-backward:before{content:""}.fa-step-forward:before{content:""}.fa-stethoscope:before{content:""}.fa-sticker-mule:before{content:""}.fa-sticky-note:before{content:""}.fa-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-stopwatch:before{content:""}.fa-stopwatch-20:before{content:""}.fa-store:before{content:""}.fa-store-alt:before{content:""}.fa-store-alt-slash:before{content:""}.fa-store-slash:before{content:""}.fa-strava:before{content:""}.fa-stream:before{content:""}.fa-street-view:before{content:""}.fa-strikethrough:before{content:""}.fa-stripe:before{content:""}.fa-stripe-s:before{content:""}.fa-stroopwafel:before{content:""}.fa-studiovinari:before{content:""}.fa-stumbleupon:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-subscript:before{content:""}.fa-subway:before{content:""}.fa-suitcase:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-sun:before{content:""}.fa-superpowers:before{content:""}.fa-superscript:before{content:""}.fa-supple:before{content:""}.fa-surprise:before{content:""}.fa-suse:before{content:""}.fa-swatchbook:before{content:""}.fa-swift:before{content:""}.fa-swimmer:before{content:""}.fa-swimming-pool:before{content:""}.fa-symfony:before{content:""}.fa-synagogue:before{content:""}.fa-sync:before{content:""}.fa-sync-alt:before{content:""}.fa-syringe:before{content:""}.fa-table:before{content:""}.fa-table-tennis:before{content:""}.fa-tablet:before{content:""}.fa-tablet-alt:before{content:""}.fa-tablets:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-tape:before{content:""}.fa-tasks:before{content:""}.fa-taxi:before{content:""}.fa-teamspeak:before{content:""}.fa-teeth:before{content:""}.fa-teeth-open:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-temperature-high:before{content:""}.fa-temperature-low:before{content:""}.fa-tencent-weibo:before{content:""}.fa-tenge:before{content:""}.fa-terminal:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-th:before{content:""}.fa-th-large:before{content:""}.fa-th-list:before{content:""}.fa-the-red-yeti:before{content:""}.fa-theater-masks:before{content:""}.fa-themeco:before{content:""}.fa-themeisle:before{content:""}.fa-thermometer:before{content:""}.fa-thermometer-empty:before{content:""}.fa-thermometer-full:before{content:""}.fa-thermometer-half:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-think-peaks:before{content:""}.fa-thumbs-down:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbtack:before{content:""}.fa-ticket-alt:before{content:""}.fa-tiktok:before{content:""}.fa-times:before{content:""}.fa-times-circle:before{content:""}.fa-tint:before{content:""}.fa-tint-slash:before{content:""}.fa-tired:before{content:""}#sidebar.minimized .sidebar-toggle-icon:before,#sidebar .sidebar-toggle-icon:before,.fa-toggle-off:before{content:""}#sidebar.toggled .sidebar-toggle-icon:before,.fa-toggle-on:before{content:""}.fa-toilet:before{content:""}.fa-toilet-paper:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-toolbox:before{content:""}.fa-tools:before{content:""}.fa-tooth:before{content:""}.fa-torah:before{content:""}.fa-torii-gate:before{content:""}.fa-tractor:before{content:""}.fa-trade-federation:before{content:""}.fa-trademark:before{content:""}.fa-traffic-light:before{content:""}.fa-trailer:before{content:""}.fa-train:before{content:""}.fa-tram:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-trash:before{content:""}.fa-trash-alt:before{content:""}.fa-trash-restore:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-tree:before{content:""}.fa-trello:before{content:""}.fa-trophy:before{content:""}.fa-truck:before{content:""}.fa-truck-loading:before{content:""}.fa-truck-monster:before{content:""}.fa-truck-moving:before{content:""}.fa-truck-pickup:before{content:""}.fa-tshirt:before{content:""}.fa-tty:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-tv:before{content:""}.fa-twitch:before{content:""}.fa-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-typo3:before{content:""}.fa-uber:before{content:""}.fa-ubuntu:before{content:""}.fa-uikit:before{content:""}.fa-umbraco:before{content:""}.fa-umbrella:before{content:""}.fa-umbrella-beach:before{content:""}.fa-uncharted:before{content:""}.fa-underline:before{content:""}.fa-undo:before{content:""}.fa-undo-alt:before{content:""}.fa-uniregistry:before{content:""}.fa-unity:before{content:""}.fa-universal-access:before{content:""}.fa-university:before{content:""}.fa-unlink:before{content:""}.fa-unlock:before{content:""}.fa-unlock-alt:before{content:""}.fa-unsplash:before{content:""}.fa-untappd:before{content:""}.fa-upload:before{content:""}.fa-ups:before{content:""}.fa-usb:before{content:""}.fa-user:before{content:""}.fa-user-alt:before{content:""}.fa-user-alt-slash:before{content:""}.fa-user-astronaut:before{content:""}.fa-user-check:before{content:""}.fa-user-circle:before{content:""}.fa-user-clock:before{content:""}.fa-user-cog:before{content:""}.fa-user-edit:before{content:""}.fa-user-friends:before{content:""}.fa-user-graduate:before{content:""}.fa-user-injured:before{content:""}.fa-user-lock:before{content:""}.fa-user-md:before{content:""}.fa-user-minus:before{content:""}.fa-user-ninja:before{content:""}.fa-user-nurse:before{content:""}.fa-user-plus:before{content:""}.fa-user-secret:before{content:""}.fa-user-shield:before{content:""}.fa-user-slash:before{content:""}.fa-user-tag:before{content:""}.fa-user-tie:before{content:""}.fa-user-times:before{content:""}.fa-users:before{content:""}.fa-users-cog:before{content:""}.fa-users-slash:before{content:""}.fa-usps:before{content:""}.fa-ussunnah:before{content:""}.fa-utensil-spoon:before{content:""}.fa-utensils:before{content:""}.fa-vaadin:before{content:""}.fa-vector-square:before{content:""}.fa-venus:before{content:""}.fa-venus-double:before{content:""}.fa-venus-mars:before{content:""}.fa-vest:before{content:""}.fa-vest-patches:before{content:""}.fa-viacoin:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-vial:before{content:""}.fa-vials:before{content:""}.fa-viber:before{content:""}.fa-video:before{content:""}.fa-video-slash:before{content:""}.fa-vihara:before{content:""}.fa-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-vine:before{content:""}.fa-virus:before{content:""}.fa-virus-slash:before{content:""}.fa-viruses:before{content:""}.fa-vk:before{content:""}.fa-vnv:before{content:""}.fa-voicemail:before{content:""}.fa-volleyball-ball:before{content:""}.fa-volume-down:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-off:before{content:""}.fa-volume-up:before{content:""}.fa-vote-yea:before{content:""}.fa-vr-cardboard:before{content:""}.fa-vuejs:before{content:""}.fa-walking:before{content:""}.fa-wallet:before{content:""}.fa-warehouse:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-water:before{content:""}.fa-wave-square:before{content:""}.fa-waze:before{content:""}.fa-weebly:before{content:""}.fa-weibo:before{content:""}.fa-weight:before{content:""}.fa-weight-hanging:before{content:""}.fa-weixin:before{content:""}.fa-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-wheelchair:before{content:""}.fa-whmcs:before{content:""}.fa-wifi:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wind:before{content:""}.fa-window-close:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-windows:before{content:""}.fa-wine-bottle:before{content:""}.fa-wine-glass:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-wix:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-wodu:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-won-sign:before{content:""}.fa-wordpress:before{content:""}.fa-wordpress-simple:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpexplorer:before{content:""}.fa-wpforms:before{content:""}.fa-wpressr:before{content:""}.fa-wrench:before{content:""}.fa-x-ray:before{content:""}.fa-xbox:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-y-combinator:before{content:""}.fa-yahoo:before{content:""}.fa-yammer:before{content:""}.fa-yandex:before{content:""}.fa-yandex-international:before{content:""}.fa-yarn:before{content:""}.fa-yelp:before{content:""}.fa-yen-sign:before{content:""}.fa-yin-yang:before{content:""}.fa-yoast:before{content:""}.fa-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-zhihu:before{content:""}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;font-display:block;src:url(/++plone++senaite.core.static/fonts/fa-solid-900.eot);src:url(/++plone++senaite.core.static/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(/++plone++senaite.core.static/fonts/fa-solid-900.woff2) format("woff2"),url(/++plone++senaite.core.static/fonts/fa-solid-900.woff) format("woff"),url(/++plone++senaite.core.static/fonts/fa-solid-900.ttf) format("truetype"),url(/++plone++senaite.core.static/fonts/fa-solid-900.svg#fontawesome) format("svg")}#senaite-toolbar .tb-state:before,#sidebar.minimized .sidebar-toggle-icon,#sidebar .sidebar-toggle-icon,#sidebar.toggled .sidebar-toggle-icon,.fa,.fas,.priority-ico,a#setup-link:before,div.field.error>div.error:before{font-family:Font Awesome\ 5 Free;font-weight:900}.wrapper{display:flex;min-height:calc(100% - 64px)}.wrapper .pb-ajax>div,.wrapper div.container-fluid,.wrapper div.container-lg,.wrapper div.container-md,.wrapper div.container-sm,.wrapper div.container-xl{width:calc(100% - 50px)}#sidebar{min-width:200px;max-width:200px;transition:all .3s;overflow:hidden;white-space:nowrap;background-color:#f8f9fa!important}#sidebar #sidebar-header{text-align:right}#sidebar #sidebar-header button:focus{box-shadow:none}#sidebar:not(.minimized) ul li:hover{color:#000;transition:all .1s;opacity:1}#sidebar.minimized{min-width:50px;max-width:50px}#sidebar.minimized ul li a{padding:15px 0;text-align:center}#sidebar.minimized ul ul a{padding:15px 17px!important}#sidebar.minimized ul li a i{margin-right:0;margin-bottom:5px}#sidebar.minimized ul li a span.child-title,#sidebar.minimized ul li a span.node-title{display:none}#sidebar ul li.active>a{color:rgba(0,0,0,.9)}#sidebar ul li.active,#sidebar ul li.expanded{background:rgba(66,138,175,.25)}#sidebar.minimized #sidebar-header{text-align:center}#sidebar a{color:#293333}#sidebar a:hover{color:rgba(0,0,0,.7)}#sidebar ul li a{padding:15px 17px;display:block}#sidebar.minimized li a.senaite-state-inactive,#sidebar li a.senaite-state-inactive{display:none}#sidebar ul.submenu{max-width:200px}#sidebar ul.submenu li{width:200px}#sidebar.minimized ul.submenu li{padding:0;width:50px}#sidebar.minimized ul.nav-level-1 li.active,#sidebar.minimized ul.nav-level-1 li.expanded,#sidebar ul.nav-level-1 li.active,#sidebar ul.nav-level-1 li.expanded{background-:rgba(66,138,175,.4)}#sidebar.minimized ul.nav-level-1 li.active:hover,#sidebar.minimized ul.nav-level-1 li.expanded:hover,#sidebar ul.nav-level-1 li.active:hover,#sidebar ul.nav-level-1 li.expanded:hover{background:rgba(66,138,175,.4)}#sidebar.minimized ul.nav-level-2 li.active,#sidebar.minimized ul.nav-level-2 li.active:hover,#sidebar ul.nav-level-2 li.active,#sidebar ul.nav-level-2 li.active:hover{background:rgba(66,138,175,.55)}#setupview .vcenter{display:inline-block;vertical-align:middle;float:none}#setupview .tile{width:100%;height:6em;box-sizing:border-box;display:inline-block;padding:2em;margin:auto auto 1em;overflow:hidden;border:1px solid #dee2e6}#setupview .tile .title{text-transform:uppercase;font-weight:400;text-overflow:ellipsis;overflow:hidden;padding-left:15px}#setupview .tile:focus,#setupview .tile:hover{background-color:#e9ecef}#setupview .tile:focus{color:#2d5e77}#senaite-toolbar{background-color:#293333}#senaite-toolbar .content-views li a{padding-left:1rem;padding-right:1rem}#senaite-toolbar #plone-contentmenu-workflow{margin-left:1em}#senaite-toolbar a.active,#senaite-toolbar li.active a{color:#f2f2f2;background-color:#606969;border-radius:.2rem}#senaite-toolbar .dropdown-menu a,#senaite-toolbar .dropdown-menu a.active{color:#293333;background-color:transparent}#senaite-toolbar .dropdown-menu a.active:hover,#senaite-toolbar .dropdown-menu a:hover{color:#428aaf}#senaite-toolbar a{color:#d7dbdc}#senaite-toolbar a:hover{color:#f2f2f2}#senaite-toolbar .tb-state:before{padding-right:.4rem}#senaite-toolbar .tb-state.state-active,#senaite-toolbar .tb-state.state-open{color:#007bff}#senaite-toolbar .tb-state.state-cancelled,#senaite-toolbar .tb-state.state-closed,#senaite-toolbar .tb-state.state-inactive,#senaite-toolbar .tb-state.state-invalid{color:#dc3545}#senaite-toolbar .tb-state.state-sample_due{color:#ffff8d}#senaite-toolbar .tb-state.state-sample_received{color:#a1887f}#senaite-toolbar .tb-state.state-to_be_verified{color:#18ffff}#senaite-toolbar .tb-state.state-verified{color:#0091ea}#senaite-toolbar .tb-state.state-published{color:#00c853}.formQuestion{margin-bottom:0}form[name=edit_form] div.listing-container input,form[name=edit_form] div.listing-container select{width:100%!important}form.loginform input,form.loginform select,form.rowlike input,form.rowlike select,form.senaite-form input,form.senaite-form select,form[action*=-controlpanel] input,form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input,form[name=analysisrequest_add_form] select,form[name=edit_form] input,form[name=edit_form] select,form[name=sampleheader_form] input,form[name=sampleheader_form] select,ul.configlets>li>form input,ul.configlets>li>form select{width:auto}form.loginform input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.loginform select,form.rowlike input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.rowlike select,form.senaite-form input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form.senaite-form select,form[action*=-controlpanel] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[action*=-controlpanel] select,form[name=analysisrequest_add_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=analysisrequest_add_form] select,form[name=edit_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=edit_form] select,form[name=sampleheader_form] input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),form[name=sampleheader_form] select,ul.configlets>li>form input:not([type=button],[type=submit],[type=checkbox],[type=radio],[type=number],[name*=__ac]),ul.configlets>li>form select{width:250px!important;max-width:250px}form.loginform input[type=date],form.rowlike input[type=date],form.senaite-form input[type=date],form[action*=-controlpanel] input[type=date],form[name=analysisrequest_add_form] input[type=date],form[name=edit_form] input[type=date],form[name=sampleheader_form] input[type=date],ul.configlets>li>form input[type=date]{width:160px!important;max-width:160px}form.loginform input[type=time],form.rowlike input[type=time],form.senaite-form input[type=time],form[action*=-controlpanel] input[type=time],form[name=analysisrequest_add_form] input[type=time],form[name=edit_form] input[type=time],form[name=sampleheader_form] input[type=time],ul.configlets>li>form input[type=time]{width:90px!important;max-width:90px}form.loginform .fieldRequired:after,form.rowlike .fieldRequired:after,form.senaite-form .fieldRequired:after,form[action*=-controlpanel] .fieldRequired:after,form[name=analysisrequest_add_form] .fieldRequired:after,form[name=edit_form] .fieldRequired:after,form[name=sampleheader_form] .fieldRequired:after,ul.configlets>li>form .fieldRequired:after{color:#dc3545;content:"·"}form.loginform span.required:before,form.rowlike span.required:before,form.senaite-form span.required:before,form[action*=-controlpanel] span.required:before,form[name=analysisrequest_add_form] span.required:before,form[name=edit_form] span.required:before,form[name=sampleheader_form] span.required:before,ul.configlets>li>form span.required:before{color:#dc3545;content:"·";padding-right:.25em}.portaltype-analysisrequest form[name=header_form] td.label{background-color:#f8f9fa}.portaltype-analysisrequest form[name=header_form] .field,form[name=analysisrequest_add_form] .field{margin-bottom:0}input.num-positions{max-width:100px;margin-right:10px;border-radius:.2rem!important}input.button-num-positions{border:none;padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.breadcrumb{border-radius:0;background-color:#f8f9fa;padding:.5rem 1rem}div.autotoc-nav a.active{margin-bottom:-1px}.pb-ajax{border-radius:3px}.pb-ajax>div{width:100%!important}div.overlaybg div.close,div.overlay div.close{opacity:1}.portlet.portletNavigationTree.portletSiteSetup{margin:1.5rem 0}.portlet.portletNavigationTree.portletSiteSetup aside section nav.portletContent ul.nav-pills li,.portlet.portletNavigationTree.portletSiteSetup ul.nav-pills li.nav-item,aside section nav.portletContent .portlet.portletNavigationTree.portletSiteSetup ul.nav-pills li{padding-left:0}article#content header{margin-bottom:15px}.documentDescription{font-size:95%}body #loader{display:none}body.loading #loader{position:fixed;display:block;top:0;left:49%;width:7em;height:2em;z-index:1000;font-size:1em;color:#383d41;background-color:#e2e3e5;border-color:#d6d8db;border-style:none;text-align:center;border-bottom-left-radius:10px;border-bottom-right-radius:10px;opacity:.8}div.listing-container input[type=date]{min-width:125px}div.listing-container input[type=time]{min-width:75px}body,html{height:100%}.h1,.h2,.h3,h1,h2,h3{font-weight:300}.h1,h1{font-size:2rem}.h2,h2{font-size:1.85rem}.text-state-active{color:#007bff}.text-state-inactive{color:#dc3545}.text-state-sample_due{color:#ffff8d}.text-state-sample_received{color:#a1887f}.text-state-to_be_verified{color:#18ffff}.text-state-verified{color:#0091ea}.text-state-published{color:#00c853}.text-state-invalid{color:#e65100}.text-state-rejected{color:#6c757d}.text-state-unassigned{color:#f8f9fa}.text-state-retracted{color:#ff6f00}.text-state-cancelled{color:#000}.bg-state-active{background-color:#007bff!important}.bg-state-inactive{background-color:#dc3545!important}.bg-state-sample_due{background-color:#ffff8d!important}.bg-state-sample_received{background-color:#a1887f!important}.bg-state-to_be_verified{background-color:#18ffff!important}.bg-state-verified{background-color:#0091ea!important}.bg-state-published{background-color:#00c853!important}.bg-state-invalid{background-color:#e65100!important}.bg-state-rejected{background-color:#6c757d!important}.bg-state-unassigned{background-color:#f8f9fa!important}.bg-state-retracted{background-color:#ff6f00!important}.bg-state-cancelled{background-color:#000!important}.cursor-pointer{cursor:pointer}.cursor-crosshair{cursor:crosshair}.cursor-help{cursor:help}.cursor-progress{cursor:progress}.cursor-text{cursor:text}a{outline:0}i.hazardous-icon svg{fill:#dc3545}img.deleteAttachmentButton{cursor:pointer;width:16px}.pb-ajax>div,div.container-fluid,div.container-lg,div.container-md,div.container-sm,div.container-xl{padding-left:30px}#viewlet-listing-table-title{margin-bottom:10px}#viewlet-listing-table-title h1{margin:0 10px}#panel-notification{top:50%;left:50%;position:fixed;z-index:1000}#senaite-footer .nav-pills aside section nav.portletContent ul li a,#senaite-footer .nav-pills li a.nav-link,#senaite-footer .nav-pills li div.autotoc-nav a,aside section nav.portletContent ul #senaite-footer .nav-pills li a,div.autotoc-nav #senaite-footer .nav-pills li a{padding-top:0;padding-bottom:0}#senaite-colophon{font-size:.9rem} /*# sourceMappingURL=senaite.core.css.map*/ \ No newline at end of file diff --git a/src/senaite/core/browser/static/bundles/senaite.core.css.map b/src/senaite/core/browser/static/bundles/senaite.core.css.map index 10da145cf3..abea5cfaf7 100644 --- a/src/senaite/core/browser/static/bundles/senaite.core.css.map +++ b/src/senaite/core/browser/static/bundles/senaite.core.css.map @@ -1 +1 @@ -{"version":3,"file":"senaite.core.css","mappings":"AAAA,MCGI,8MAIA,yIAIA,2GAKF,sNACA,uGCCF,iBAGE,sBAGF,KACE,uBACA,iBACA,8BACA,0CAMF,sEACE,cAUF,KACE,SACA,wLCsO4B,CCjGxB,eFnIJ,eC+O4B,CD9O5B,eCmP4B,CDlP5B,aGlDmB,CHmDnB,gBACA,qBG1CQ,CHsDV,0CACE,oBASF,GACE,uBACA,SACA,iBAaF,kBACE,aACA,mBCiN4B,CD1M9B,EACE,aACA,kBCoF0B,CDzE5B,sCAEE,0BACA,iCACA,YACA,gBACA,8BAGF,QAEE,kBACA,oBAGF,iBALE,kBASA,CAJF,SAGE,YACA,CAGF,wBAIE,gBAGF,GACE,eCkJ4B,CD/I9B,GACE,oBACA,cAGF,WACE,gBAGF,SAEE,kBCqI4B,CDlI9B,MEII,cFKJ,QAEE,kBEPE,cFSF,cACA,wBAGF,kBACA,cAOA,EACE,aG7KW,CH8KX,oBCXwC,CDYxC,6BIhLA,QJmLE,aCdsC,CDetC,yBCdsC,CGtKxC,4DJkME,cACA,qBASJ,kBAIE,sFC0D4B,CClH1B,cF4DJ,IAEE,aAEA,mBAEA,cAGA,6BAQF,OAEE,gBAQF,IAEE,kBAGF,QAJE,qBAQA,CAJF,IAGE,eACA,CAQF,MACE,yBAGF,QACE,kBC8E4B,CD7E5B,qBC6E4B,CD5E5B,aCtQS,CDuQT,gBACA,oBAOF,GAEE,mBACA,gCAQF,MAEE,qBACA,mBC4JsC,CDtJxC,OAEE,gBAQF,iCACE,UAGF,sCAKE,SACA,oBEhKE,kBFkKF,oBAGF,aAEE,iBAGF,cAEE,oBAMF,cACE,eAMF,OACE,iBAOF,gDAIE,0BASE,4GACE,eAMN,wHAIE,UACA,kBAGF,uCAEE,sBACA,UAIF,SACE,cAEA,gBAGF,SAME,YAEA,UACA,SACA,SAKF,OACE,cACA,WACA,eACA,UACA,oBE9OI,iBFgPJ,oBACA,cACA,mBAGF,SACE,wBAIF,kFAEE,YAGF,cAKE,oBACA,wBAOF,yCACE,wBAQF,6BACE,aACA,0BAOF,OACE,qBAGF,QACE,kBACA,eAGF,SACE,aAKF,SACE,uBK5dF,0CAEE,mBJsS4B,CIpS5B,eJsS4B,CIrS5B,eJsS4B,CIlS9B,OHqKM,iBGpKN,OHoKM,eGnKN,OHmKM,kBGlKN,OHkKM,iBGjKN,OHiKM,kBGhKN,OHgKM,eG9JN,MH8JM,kBG5JJ,eJwS4B,CIpS9B,WHwJM,cD6HwB,CIhR9B,sBAHE,eJ2R4B,CI1R5B,eJkR4B,CIhR9B,WHmJM,gBD6HwB,CI3Q9B,WH8IM,gBD6HwB,CItQ9B,sBAHE,eJmR4B,CIlR5B,eJwQ4B,CItQ9B,WHyIM,gBD6HwB,CI3P9B,GACE,eJgFO,CI/EP,kBJ+EO,CI9EP,SACA,oCAQF,oWHkGI,iBG/FF,eJ2N4B,CIxN9B,WAEE,YJmQ4B,CIlQ5B,wBJ2Q4B,CI9P9B,4BCpFE,eACA,gBDsFF,kBACE,qBAEA,mCACE,kBJqP0B,CI3O9B,YH2DI,cGzDF,yBAIF,YACE,kBJuBO,CC6CH,kBGhEN,mBACE,cH+CE,iBG7CF,aJ1GS,CI4GT,0BACE,aE7GJ,0BCFE,eAGA,YDDF,eACE,cNqgCkC,CMpgClC,qBJJQ,CIKR,yBEEE,oBDJF,CDcF,QAEE,qBAGF,YACE,oBACA,cAGF,gBL8HI,cK5HF,aN3BS,CSZX,KRmKI,gBQjKF,aTmCQ,CSlCR,qBAGA,OACE,cAKJ,IACE,oBRsJE,gBQpJF,UTTS,CSUT,wBTDS,CQEP,oBCGF,QACE,UR8IA,eQ5IA,eTyQ0B,CSnQ9B,IACE,cRqIE,gBQnIF,aTjBS,CSoBT,SRgIE,kBQ9HA,cACA,kBAKJ,gBACE,gBTikCkC,CShkClC,kBCxCA,iGCDA,WACA,mBACA,kBACA,kBACA,iBCmDE,wBFzCE,yBACE,eV8Le,EYtJnB,wBFzCE,uCACE,eV8Le,EYtJnB,wBFzCE,qDACE,eV8Le,EYtJnB,yBFzCE,mEACE,gBV8Le,EUlKrB,KCnCA,aACA,eACA,mBACA,kBDsCA,YACE,eACA,cAEA,2CAEE,gBACA,eGtDJ,sqBACE,kBACA,WACA,mBACA,kBAsBE,KACE,aACA,YACA,eF4BN,cACE,cACA,eAFF,cACE,aACA,cAFF,cACE,wBACA,yBAFF,cACE,aACA,cAFF,cACE,aACA,cAFF,cACE,wBACA,yBEnBE,UFCJ,cACA,WACA,eEGQ,OFbR,qBAIA,sBESQ,OFbR,sBAIA,uBESQ,OFbR,aAIA,cESQ,OFbR,sBAIA,uBESQ,OFbR,sBAIA,uBESQ,OFbR,aAIA,cESQ,OFbR,sBAIA,uBESQ,OFbR,sBAIA,uBESQ,OFbR,aAIA,cESQ,QFbR,sBAIA,uBESQ,QFbR,sBAIA,uBESQ,QFbR,cAIA,eEeI,sBAEA,qBAGE,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,gBADW,CACX,kBADW,CACX,kBADW,CACX,kBADW,CAQP,UFhBV,wBEgBU,UFhBV,yBEgBU,UFhBV,gBEgBU,UFhBV,yBEgBU,UFhBV,yBEgBU,UFhBV,gBEgBU,UFhBV,yBEgBU,UFhBV,yBEgBU,UFhBV,gBEgBU,WFhBV,yBEgBU,WFhBV,yBCKE,wBC3BE,QACE,aACA,YACA,eF4BN,iBACE,cACA,eAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBAFF,iBACE,aACA,cAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBEnBE,aFCJ,cACA,WACA,eEGQ,UFbR,qBAIA,sBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,WFbR,sBAIA,uBESQ,WFbR,sBAIA,uBESQ,WFbR,cAIA,eEeI,yBAEA,wBAGE,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,qBADW,CACX,qBADW,CACX,qBADW,CAQP,aFhBV,cEgBU,aFhBV,wBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,cFhBV,yBEgBU,cFhBV,0BCKE,wBC3BE,QACE,aACA,YACA,eF4BN,iBACE,cACA,eAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBAFF,iBACE,aACA,cAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBEnBE,aFCJ,cACA,WACA,eEGQ,UFbR,qBAIA,sBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,WFbR,sBAIA,uBESQ,WFbR,sBAIA,uBESQ,WFbR,cAIA,eEeI,yBAEA,wBAGE,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,qBADW,CACX,qBADW,CACX,qBADW,CAQP,aFhBV,cEgBU,aFhBV,wBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,cFhBV,yBEgBU,cFhBV,0BCKE,wBC3BE,QACE,aACA,YACA,eF4BN,iBACE,cACA,eAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBAFF,iBACE,aACA,cAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBEnBE,aFCJ,cACA,WACA,eEGQ,UFbR,qBAIA,sBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,WFbR,sBAIA,uBESQ,WFbR,sBAIA,uBESQ,WFbR,cAIA,eEeI,yBAEA,wBAGE,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,qBADW,CACX,qBADW,CACX,qBADW,CAQP,aFhBV,cEgBU,aFhBV,wBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,cFhBV,yBEgBU,cFhBV,0BCKE,yBC3BE,QACE,aACA,YACA,eF4BN,iBACE,cACA,eAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBAFF,iBACE,aACA,cAFF,iBACE,aACA,cAFF,iBACE,wBACA,yBEnBE,aFCJ,cACA,WACA,eEGQ,UFbR,qBAIA,sBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,UFbR,sBAIA,uBESQ,UFbR,sBAIA,uBESQ,UFbR,aAIA,cESQ,WFbR,sBAIA,uBESQ,WFbR,sBAIA,uBESQ,WFbR,cAIA,eEeI,yBAEA,wBAGE,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,mBADW,CACX,qBADW,CACX,qBADW,CACX,qBADW,CAQP,aFhBV,cEgBU,aFhBV,wBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,aFhBV,yBEgBU,aFhBV,yBEgBU,aFhBV,gBEgBU,cFhBV,yBEgBU,cFhBV,0BGnDF,qBACE,WACA,kBdiIO,CchIP,aZNmB,CYSnB,sDAEE,cdmV0B,CclV1B,mBACA,6BAGF,uCACE,sBACA,gCAGF,6CACE,6BAUF,4DAEE,ad6T0B,CcjT5B,sGAEE,yBAIA,gGAEE,wBAMJ,mGAIE,SASF,yCACE,gCdyR0B,CGxV5B,yDW2EI,aZtFe,CYuFf,iCd8QwB,CehW1B,mDAGE,wBD2F+B,CCvF/B,uFAIE,oBDmFyE,CCrEzE,2NAEE,wBARa,CAnBnB,yDAGE,wBD2F+B,CCvF/B,+FAIE,oBDmFyE,CCrEzE,uOAEE,wBARa,CAnBnB,mDAGE,wBD2F+B,CCvF/B,uFAIE,oBDmFyE,CCrEzE,2NAEE,wBARa,CAnBnB,0CAGE,wBD2F+B,CCvF/B,2EAIE,oBDmFyE,CCrEzE,yMAEE,wBARa,CAnBnB,mDAGE,wBD2F+B,CCvF/B,uFAIE,oBDmFyE,CCrEzE,2NAEE,wBARa,CAnBnB,gDAGE,wBD2F+B,CCvF/B,mFAIE,oBDmFyE,CCrEzE,qNAEE,wBARa,CAnBnB,6CAGE,wBD2F+B,CCvF/B,+EAIE,oBDmFyE,CCrEzE,+MAEE,wBARa,CAnBnB,0CAGE,wBD2F+B,CCvF/B,2EAIE,oBDmFyE,CCrEzE,yMAEE,wBARa,CAMf,qQAEE,iCARa,CDwFnB,mDACE,Ud3GK,Cc4GL,wBdpGK,CcqGL,oBdiQwB,Cc5P1B,qDACE,ad5GK,Cc6GL,wBdlHK,CcmHL,oBdlHK,CcuHX,YACE,Ud3HS,Cc4HT,wBdpHS,CcsHT,mDAGE,oBd6O0B,Cc1O5B,oDACE,SAIA,oDACE,oCdiOwB,CGtW5B,+EW4IM,UdjJG,CckJH,qCd2NsB,CY3S1B,2BEiGA,qBAEI,cACA,WACA,gBACA,iCAGA,wEACE,UF1GN,2BEiGA,qBAEI,cACA,WACA,gBACA,iCAGA,wEACE,UF1GN,2BEiGA,qBAEI,cACA,WACA,gBACA,iCAGA,wEACE,UF1GN,4BEiGA,qBAEI,cACA,WACA,gBACA,iCAGA,wEACE,UATN,gCAEI,cACA,WACA,gBACA,iCAGA,4HACE,SE7KV,y9BACE,cACA,WACA,iChB2esC,CgB1etC,uBf0KI,eevKJ,ehBmR4B,CgBlR5B,ehBuR4B,CgBtR5B,ahBDS,CgBET,qBhBTS,CgBUT,4BACA,8CCFI,oEDQJ,CCJI,sCDdN,y9BCeQ,iBDMN,yyCACE,6BACA,SEhBF,ioCACE,cACA,qBlBRO,CkBSP,oBlBsdoC,CkBrdpC,UAKE,2ClBqXwB,CgBvW5B,q0CACE,ahBxBO,CgB0BP,UAQF,s8EAEE,wBhBxCO,CgB0CP,UAQF,61EACE,gBAMF,0cACE,kBACA,0BAGF,2ZAME,ahB/DO,CgBgEP,qBhBvEO,CgB4EX,uCAEE,cACA,WAUF,gBACE,gCACA,mCACA,gBfiEE,kBe/DF,ehBgM4B,CgB7L9B,mBACE,8BACA,iCf0EI,kBexEJ,ehB6H4B,CgB1H9B,mBACE,+BACA,kCfmEI,kBejEJ,ehBuH4B,CgB9G9B,wBACE,cACA,WACA,kBACA,gBfoDI,eelDJ,ehBmK4B,CgBlK5B,adlImB,CcmInB,6BAEA,4CAEA,ikCAEE,gBACA,eAYJ,2nBACE,gChB6VsC,CgB5VtC,qBf2BI,kBezBJ,ehB+E4B,CQxN1B,oBQ6IJ,iBACE,+BhBsVsC,CgBrVtC,mBfmBI,kBejBJ,ehBsE4B,CQvN1B,oBQ6JJ,4hCACE,YAQF,0PACE,kBhB2UsC,CgBxUxC,qBACE,cACA,iBhB4TsC,CgBpTxC,UACE,aACA,eACA,kBACA,iBAEA,uCAEE,kBACA,iBASJ,smCACE,kBACA,cACA,oBhBiSsC,CgB9RxC,omDACE,kBACA,gBhB6RsC,CgB5RtC,qBAGA,uiJAEE,ahBzNO,CgB6NX,kBACE,gBAGF,mBACE,oBACA,mBACA,eACA,mBhB8QsC,CgB3QtC,ylIACE,gBACA,aACA,qBhByQoC,CgBxQpC,cE7MF,gBACE,aACA,WACA,iBlB2coC,CCtVpC,iBiBnHA,aFqNqC,CElNvC,eACE,kBACA,SACA,OACA,UACA,aACA,eACA,qBACA,iBjBwHE,kBiBtHF,elBuO0B,CkBtO1B,WACA,oCV9CA,qBUmDA,qEAEE,SAKF,8HAEE,cA9CF,8mIAoDE,oBFkLmC,CE/KjC,6CACA,6QACA,4BACA,yDACA,4DAGF,mhJACE,oBFuKiC,CEtKjC,2CAhEJ,muCAyEI,6BACA,wCA1EJ,4tCAmFI,kClB6XgC,CkB5XhC,8EApFJ,4DA2FE,oBF2ImC,CExIjC,gDACA,yiBAGF,wEACE,oBFmIiC,CElIjC,2CAOF,ozOACE,aF0HiC,CEvHnC,svcAEE,cAOF,sHACE,aF6GiC,CE3GjC,oIACE,oBF0G+B,CErGjC,oJACE,qBC5JN,wBD6J2B,CAKvB,gJACE,2CAaJ,sRACE,oBF+EiC,CE3EjC,sHACE,oBF0E+B,CEzE/B,2CAjJR,kBACE,aACA,WACA,iBlB2coC,CCtVpC,iBiBnHA,aFqNqC,CElNvC,iBACE,kBACA,SACA,OACA,UACA,aACA,eACA,qBACA,iBjBwHE,kBiBtHF,elBuO0B,CkBtO1B,WACA,oCV9CA,qBUmDA,yEAEE,SAKF,0+FAEE,cA9CF,4ljCAoDE,oBFkLmC,CE/KjC,6CACA,sUACA,4BACA,yDACA,4DAGF,6omCACE,oBFuKiC,CEtKjC,2CAhEJ,ugVAyEI,6BACA,wCA1EJ,48SAmFI,kClB6XgC,CkB5XhC,8EApFJ,05CA2FE,oBF2ImC,CExIjC,gDACA,kmBAGF,sjDACE,oBFmIiC,CElIjC,2CAOF,sprDACE,aF0HiC,CEvHnC,001GAEE,cAOF,4oEACE,aF6GiC,CE3GjC,k0EACE,oBF0G+B,CErGjC,khFACE,qBC5JN,wBD6J2B,CAKvB,89EACE,2CAaJ,0zJACE,oBF+EiC,CE3EjC,4oEACE,oBF0E+B,CEzE/B,2CFqFV,aACE,aACA,mBACA,mBAKA,6zFACE,WJ/NA,wBIoOA,mBACE,aACA,mBACA,uBACA,gBAIF,qsBACE,aACA,cACA,mBACA,mBACA,gBAIF,+mFACE,qBACA,WACA,sBAIF,qCACE,qBAGF,sDAEE,WAKF,6zFACE,aACA,mBACA,uBACA,WACA,eAEF,mzHACE,kBACA,cACA,aACA,mBhBgLkC,CgB/KlC,cAGF,6BACE,mBACA,uBAEF,mCACE,iBIjVN,yhBACE,qBAEA,epBuR4B,CoBtR5B,alBTmB,CkBUnB,kBAGA,sBACA,iBACA,6BACA,6BCuFA,uBpB4EI,eoB1EJ,erB2L4B,CQnR1B,qBSFE,6HGGJ,CHCI,sCGdN,yhBHeQ,iBdTN,6mBiBUE,alBrBiB,CkBsBjB,qBAGF,0tCAEE,UACA,2CpB8W0B,CoB1W5B,8yCAEE,WpBkZ0B,CoB9Y5B,67BACE,eAcJ,4FAEE,oBASA,0MC3DA,mCrBsEa,CqBpEb,oBrBoEa,CGhEb,6OgBNE,wBED2D,CAS3D,oBATqG,CAYvG,ocAEE,WFbA,wBED2D,CAgB3D,oBAhBqG,CAqBnG,2CAKJ,4dAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,89BAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,siCAKI,2CDQN,wDC3DA,mCrBsEa,CqBpEb,oBrBoEa,CGhEb,+EgBNE,wBED2D,CAS3D,oBATqG,CAYvG,wIAEE,WFbA,wBED2D,CAgB3D,oBAhBqG,CAqBnG,4CAKJ,oJAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,wWAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,4YAKI,4CDQN,aC3DA,mCrBsEa,CqBpEb,oBrBoEa,CqB3Db,yDlBLA,WgBNE,wBED2D,CAS3D,oBAYE,CATJ,sCASI,0CAKJ,4CAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,uIAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,yJAKI,0CDQN,UC3DA,mCrBsEa,CqBpEb,oBrBoEa,CqB3Db,gDlBLA,WgBNE,wBED2D,CAS3D,oBAYE,CATJ,gCASI,2CAKJ,sCAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,8HAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,gJAKI,2CDQN,aC3DA,sCrBsEa,CqBpEb,oBrBoEa,CqB3Db,yDlBLA,cgBNE,wBED2D,CAS3D,oBAYE,CATJ,sCASI,2CAKJ,4CAEE,cACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,uIAGE,cACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,yJAKI,2CDQN,YC3DA,mCrBsEa,CqBpEb,oBrBoEa,CqB3Db,sDlBLA,WgBNE,wBED2D,CAS3D,oBAYE,CATJ,oCASI,0CAKJ,0CAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,oIAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,sJAKI,0CDQN,WC3DA,sCrBsEa,CqBpEb,oBrBoEa,CqB3Db,mDlBLA,cgBNE,wBED2D,CAS3D,oBAYE,CATJ,kCASI,4CAKJ,wCAEE,cACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,iIAGE,cACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,mJAKI,4CDQN,UC3DA,mCrBsEa,CqBpEb,oBrBoEa,CqB3Db,gDlBLA,WgBNE,wBED2D,CAS3D,oBAYE,CATJ,gCASI,yCAKJ,sCAEE,WACA,wBrB0CW,CqBzCX,oBrByCW,CqBlCb,8HAGE,WACA,wBAzC+I,CA6C/I,oBA7CyL,CA+CzL,gJAKI,yCDcN,qBCPA,arBYa,CqBXb,oBrBWa,CGhEb,2BkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,sDAEE,2CAGF,4DAEE,arBJW,CqBKX,6BAGF,+JAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,iLAKI,2CDzBN,0cCPA,arBYa,CqBXb,oBrBWa,CGhEb,khBkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,oiCAEE,4CAGF,4mCAEE,arBJW,CqBKX,6BAGF,89EAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,srFAKI,4CDzBN,qBCPA,arBYa,CqBXb,oBrBWa,CGhEb,2BkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,sDAEE,0CAGF,4DAEE,arBJW,CqBKX,6BAGF,+JAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,iLAKI,0CDzBN,kBCPA,arBYa,CqBXb,oBrBWa,CGhEb,wBkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,gDAEE,2CAGF,sDAEE,arBJW,CqBKX,6BAGF,sJAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,wKAKI,2CDzBN,qBCPA,arBYa,CqBXb,oBrBWa,CGhEb,2BkBwDE,aALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,sDAEE,0CAGF,4DAEE,arBJW,CqBKX,6BAGF,+JAGE,cACA,wBrBZW,CqBaX,oBrBbW,CqBeX,iLAKI,0CDzBN,oBCPA,arBYa,CqBXb,oBrBWa,CGhEb,0BkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,oDAEE,0CAGF,0DAEE,arBJW,CqBKX,6BAGF,4JAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,8KAKI,0CDzBN,mBCPA,arBYa,CqBXb,oBrBWa,CGhEb,yBkBwDE,aALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,kDAEE,4CAGF,wDAEE,arBJW,CqBKX,6BAGF,yJAGE,cACA,wBrBZW,CqBaX,oBrBbW,CqBeX,2KAKI,4CDzBN,kBCPA,arBYa,CqBXb,oBrBWa,CGhEb,wBkBwDE,UALgD,CAMhD,wBrBOW,CqBNX,oBrBMW,CqBHb,gDAEE,yCAGF,sDAEE,arBJW,CqBKX,6BAGF,sJAGE,WACA,wBrBZW,CqBaX,oBrBbW,CqBeX,wKAKI,yCDdR,UACE,epB6M4B,CoB5M5B,alBvEW,CkBwEX,oBpB2FwC,CGpKxC,gBiB4EE,apB0FsC,CoBtFxC,gDAHE,yBpByFsC,CoBjFxC,sCAEE,apBtFO,CoBuFP,oBAWJ,quBCPE,mBpB4EI,kBoB1EJ,erB+H4B,CQvN1B,oBYiGJ,o8BCXE,qBpB4EI,kBoB1EJ,erBgI4B,CQxN1B,oBY0GJ,WACE,cACA,WAGA,sBACE,gBpBwT0B,CoBhT5B,sFACE,WE3IJ,MLgBM,8BKfJ,CLmBI,sCKpBN,MLqBQ,iBKlBN,iBACE,UAKF,qBACE,aAIJ,YACE,kBACA,SACA,gBLDI,2BKEJ,CLEI,sCKNN,YLOQ,iBKDN,kBACE,QACA,YLNE,0BKOF,CLHE,wDACE,iBMpBR,uCAIE,kBAGF,iBACE,mBCoBE,uBACE,qBACA,kBxB+NwB,CwB9NxB,qBxB6NwB,CwB5NxB,WAhCJ,sBACA,oCACA,gBACA,mCAqDE,6BACE,cD1CN,eACE,kBACA,SACA,OACA,YvBypBkC,CuBxpBlC,aACA,WACA,evBiuBkC,CuBhuBlC,gBACA,mBtB2JI,esBzJJ,arB1BmB,CqB2BnB,gBACA,gBACA,qBvBvBS,CuBwBT,4BACA,iCfdE,qBeuBA,oBACE,WACA,OAGF,qBACE,QACA,UXYF,wBWnBA,uBACE,WACA,OAGF,wBACE,QACA,WXYF,wBWnBA,uBACE,WACA,OAGF,wBACE,QACA,WXYF,wBWnBA,uBACE,WACA,OAGF,wBACE,QACA,WXYF,yBWnBA,uBACE,WACA,OAGF,wBACE,QACA,WAQJ,uBACE,SACA,YACA,aACA,qBvB+rBgC,CwB9tBhC,+BACE,qBACA,kBxB+NwB,CwB9NxB,qBxB6NwB,CwB5NxB,WAzBJ,aACA,oCACA,yBACA,mCA8CE,qCACE,cDWJ,0BACE,MACA,WACA,UACA,aACA,mBvBirBgC,CwB9tBhC,kCACE,qBACA,kBxB+NwB,CwB9NxB,qBxB6NwB,CwB5NxB,WAlBJ,kCACA,eACA,qCACA,uBAuCE,wCACE,cDqBF,kCACE,iBAMJ,yBACE,MACA,WACA,UACA,aACA,oBvBgqBgC,CwB9tBhC,iCACE,qBACA,kBxB+NwB,CwB9NxB,qBxB6NwB,CwB5NxB,WAYE,YAZF,CAeA,kCACE,qBACA,mBxB4MsB,CwB3MtB,qBxB0MsB,CwBzMtB,WA9BN,kCACA,wBACA,qCAiCE,uCACE,cDsCF,kCACE,iBAQJ,0IAIE,WACA,YAKJ,kBE9GE,SACA,eACA,gBACA,6BFkHF,eACE,cACA,WACA,sBACA,WACA,evBiK4B,CuBhK5B,avBhHS,CuBiHT,mBAEA,mBACA,6BACA,SpBrHA,0CoBoIE,avBonBgC,CuBnnBhC,qBJ/IA,wBnBGO,CuBgJT,4CAEE,UvBpJO,CuBqJP,qBJtJA,wBnBoP0B,CuB1F5B,gDAEE,avBtJO,CuBuJP,oBACA,6BAQJ,oBACE,cAIF,iBACE,cACA,oBvBimBkC,CuBhmBlC,kCAEA,avBzKS,CuB0KT,mBAIF,oBACE,cACA,sBACA,avB9KS,C0BbX,+BAEE,kBACA,oBACA,sBAEA,o+CACE,kBACA,cAOA,wmNAGE,UAMN,aACE,aACA,eACA,2BAEA,0BACE,WAMF,u9BAEE,iBAIF,gxElBXE,0BACA,6BkBeF,w/DlBFE,yBACA,4BkBmBJ,uBACE,uBACA,sBAEA,0GAGE,cAGF,wCACE,eAIJ,s5BACE,sBACA,qBAGF,8jCACE,qBACA,oBAoBF,oBACE,sBACA,uBACA,uBAEA,g1BAEE,WAGF,8lCAEE,gBAIF,4gFlBrFE,6BACA,4BkByFF,ovElBxGE,yBACA,0BkB2HF,osDAEE,gBAEA,48IAEE,kBACA,mBACA,oBCzJN,aACE,kBACA,aACA,eACA,oBACA,WAEA,g6CAIE,kBACA,cACA,SACA,YACA,gBAEA,4wlFAGE,iBAKJ,ghDAGE,UAIF,mDACE,UAKA,0xDnBIA,yBACA,sDmBCA,aACA,mBAEA,kInBnBA,0BACA,6BmBoBA,+DnBPA,yBACA,4BmBmBA,k5JnBlCA,0BACA,6BmBiDJ,yCAEE,aAKA,0mGACE,kBACA,UAEA,k6GACE,UAIJ,mn3HAIE,iBAIJ,uCACA,qCAQA,kBACE,aACA,mBACA,uBACA,gB1B2DI,e0BzDJ,e3BqK4B,C2BpK5B,e3ByK4B,C2BxK5B,a3B/GS,C2BgHT,kBACA,mBACA,wB3BvHS,C2BwHT,yBnB/GE,qBmBmHF,2EAEE,aAUJ,gvDAEE,+B3BmWsC,C2BhWxC,qlHAME,mB1BwBI,kB0BtBJ,e3B2E4B,CQvN1B,oBmBgJJ,gvDAEE,gC3BiVsC,C2B9UxC,qlHAME,qB1BOI,kB0BLJ,e3B2D4B,CQxN1B,oBmBiKJ,8DAEE,sBAWF,s5LnB9JI,0BACA,6BmBwKJ,4zHnB3JI,yBACA,4BoBxCJ,gBACE,kBACA,UACA,cACA,kBACA,oBACA,yBAGF,uBACE,oBACA,iB5ByfsC,C4BtfxC,sBACE,kBACA,OACA,WACA,U5BqfsC,C4BpftC,eACA,UAEA,2DACE,U5BzBO,C4B0BP,oB5ByN0B,CmBpP1B,wBnBoP0B,C4BpN5B,yDAKI,2C5BgWwB,C4B5V5B,uEACE,oB5BsboC,C4BnbtC,yEACE,U5B7CO,C4B8CP,wB5Bkf4C,C4Bjf5C,oB5Bif4C,C4B1e5C,2GACE,a5BjDK,C4BmDL,yHACE,wB5BxDG,C4BkEX,sBACE,kBACA,gBAEA,mBAIA,6BAOE,oBAEA,qB5BrFO,C4BsFP,yBAKF,yDAdE,kBACA,WACA,aACA,cACA,U5BwboC,C4BvbpC,W5BuboC,C4BrbpC,UAeA,CARF,4BAQE,iCAUF,8CpBlGE,qBoBuGA,2EACE,8NAKF,kFACE,oB5B0HwB,CmBpP1B,wBnBoP0B,C4BtH1B,iFACE,2KAKF,qFTpIA,oCnByhB4C,C4BlZ5C,2FTvIA,oCnByhB4C,C4BvY9C,2CAEE,iB5B0Z4C,C4BtZ5C,wEACE,4LAKF,kFT9JA,oCnByhB4C,C4BhXhD,eACE,qBAGE,4CACE,cACA,a5BkY0C,C4BjY1C,mBAEA,mB5BgY0C,C4B7X5C,2CACE,uBACA,0BACA,sB5B2X0C,C4B1X1C,uB5B0X0C,C4BzX1C,wB5BpLK,C4BsLL,mB5BsX0C,CiBxiB1C,iIWmLA,CX/KA,sCWuKF,2CXtKI,iBWmLJ,yEACE,qB5BlMK,C4BmML,6BAKF,mFTzMA,oCnByhB4C,C4BnUhD,eACE,qBACA,WACA,iC5BqRsC,C4BpRtC,uC3B5CI,e2B+CJ,e5B6D4B,C4B5D5B,e5BiE4B,C4BhE5B,a5BvNS,C4BwNT,sBACA,kOACA,yBpBtNE,qBoByNF,gBAEA,qBACE,oB5BwPoC,C4BvPpC,UAKE,2C5BmW8B,C4BhWhC,gCAME,a5B/OK,C4BgPL,qB5BvPK,C4B2PT,8DAEE,YACA,oB5B+H0B,C4B9H1B,sBAGF,wBACE,a5B7PO,C4B8PP,wB5BlQO,C4BsQT,2BACE,aAIF,8BACE,kBACA,0BAIJ,kBACE,gC5B0NsC,C4BzNtC,kB5BiH4B,C4BhH5B,qB5BgH4B,C4B/G5B,kB5BgH4B,CC1NxB,kB2B8GN,kBACE,+B5BmNsC,C4BlNtC,iB5B8G4B,C4B7G5B,oB5B6G4B,C4B5G5B,iB5B6G4B,CC/NxB,kB2B2HN,aAEE,qBAGA,gBAGF,gCAPE,kBAEA,WACA,iCAWA,CAPF,mBAEE,UAGA,SACA,gBACA,UAEA,4CACE,oB5BqKoC,C4BpKpC,2C5ByE0B,C4BrE5B,+FAEE,wB5B/TO,C4BmUP,qDACE,gB5B2Ta,C4BvTjB,yDACE,0BAIJ,mBAIE,OACA,UACA,iC5BwJsC,C4BtJtC,gBAEA,e5BhE4B,C4BmE5B,qB5B5VS,C4B6VT,yBpBlVE,qBoBsVF,4CAjBA,kBACA,MACA,QAIA,uBAIA,e5B5D4B,C4B6D5B,apBhVE,CoBsVF,yBAIE,SACA,UACA,cACA,2B5BiIoC,C4B7HpC,iBT7WA,wBnBGO,C4B4WP,oBpBnWA,gCoB8WJ,cACE,WACA,cACA,UACA,6BACA,gBAEA,oBACE,UAIA,oG5BoOyC,C4BnOzC,gG5BmOyC,C4BlOzC,yF5BkOyC,C4B/N3C,gCACE,SAGF,oCACE,U5BoNyC,C4BnNzC,W5BmNyC,C4BlNzC,mBTlZA,wBnBoP0B,C4BgK1B,Q5BmNyC,CQ3lBzC,mBSFE,sGW6YF,CACA,gBX1YE,sCWiYJ,oCXhYM,iBW2YJ,2CT1ZA,wBnB4mByC,C4B7M3C,6CACE,U5B6LgC,C4B5LhC,Y5B6LgC,C4B5LhC,kBACA,c5B4LgC,C4B3LhC,wB5BhaO,C4BiaP,yBpBzZA,mBoB8ZF,gCACE,U5ByLyC,C4BxLzC,W5BwLyC,CmBpmBzC,wBnBoP0B,C4B0L1B,Q5ByLyC,CQ3lBzC,mBSFE,sGWuaF,CACA,gBXpaE,sCW4ZJ,gCX3ZM,iBWqaJ,uCTpbA,wBnB4mByC,C4BnL3C,gCACE,U5BmKgC,C4BlKhC,Y5BmKgC,C4BlKhC,kBACA,c5BkKgC,C4BjKhC,wB5B1bO,C4B2bP,yBpBnbA,mBoBwbF,yBACE,U5B+JyC,C4B9JzC,W5B8JyC,C4B7JzC,aACA,kB5BrE0B,C4BsE1B,iB5BtE0B,CmBnY1B,wBnBoP0B,C4BuN1B,Q5B4JyC,CQ3lBzC,mBSFE,sGWocF,CACA,gBXjcE,sCWsbJ,yBXrbM,iBWkcJ,gCTjdA,wBnB4mByC,C4BtJ3C,yBACE,U5BsIgC,C4BrIhC,Y5BsIgC,C4BrIhC,kBACA,c5BqIgC,C4BpIhC,6BACA,yBACA,mBASF,4DAJE,wB5B9dO,CQQP,mBoB0dF,8BACE,iBpB3dA,CoBieA,6CACE,wB5BxeK,C4B2eP,sDACE,eAGF,yCACE,wB5BhfK,C4BmfP,yCACE,eAGF,kCACE,wB5BxfK,C4B6fX,+DXzfM,sGW4fJ,CXxfI,sCWqfN,+DXpfQ,iBYhBR,yDACE,aACA,eACA,eACA,gBACA,gBAGF,qEACE,cACA,mB1BCA,8K0BGE,qBAIF,gGACE,a7BXO,C6BYP,oBACA,eAQJ,0BACE,gCAEA,wRACE,mBACA,6BACA,6BrBbA,8BACA,+BLZF,wY0B6BI,kBACA,oC7BipB8B,C6B9oBhC,mNACE,a7BrCK,C6BsCL,6BACA,yBAIJ,69BAEE,a7B5CO,C6B6CP,qB3BhDM,C2BiDN,iC7BsoBgC,C6BnoBlC,wDAEE,gBrBtCA,yBACA,0BqBiDF,uLACE,gBACA,SrB7DA,qBqBiEF,+aAEE,U7B9EO,C6B+EP,wB7BoK0B,C6B1J5B,yNAEE,cACA,kBAKF,uPAEE,aACA,YACA,kBAUF,uBACE,aAEF,qBACE,cCzGJ,QACE,kBAKA,mBAIA,iKARA,aACA,eACA,mBACA,6BASE,CAoBJ,cACE,qBACA,oB9BkqBkC,C8BjqBlC,uB9BiqBkC,C8BhqBlC,iB9BgFO,CC6CH,kB6B3HJ,oBACA,mB3B1CA,wC2B6CE,qBASJ,YACE,aACA,sBACA,eACA,gBACA,gBAEA,4LACE,gBACA,eAGF,2BACE,gBACA,WASJ,aACE,qBACA,iB9BylBkC,C8BxlBlC,oB9BwlBkC,C8B5kBpC,iBACE,gBACA,YAGA,mBAIF,gBACE,sB7B8DI,kB6B5DJ,cACA,6BACA,6BtBxGE,qBLFF,4C2B8GE,qBAMJ,qBACE,qBACA,YACA,aACA,sBACA,WACA,mCAGF,mBACE,e9BglBkC,C8B/kBlC,gBlBtEE,2BkBkFI,8NACE,gBACA,gBlBjGN,wBkB6FA,kBAoBI,qBACA,2BAEA,8BACE,mBAEA,6CACE,kBAGF,sRACE,mB9ByhBwB,C8BxhBxB,kB9BwhBwB,C8BnhB5B,8NACE,iBAcF,qCACE,iBAGF,mCACE,uBAGA,gBAGF,kCACE,clBhJN,2BkBkFI,8NACE,gBACA,gBlBjGN,wBkB6FA,kBAoBI,qBACA,2BAEA,8BACE,mBAEA,6CACE,kBAGF,sRACE,mB9ByhBwB,C8BxhBxB,kB9BwhBwB,C8BnhB5B,8NACE,iBAcF,qCACE,iBAGF,mCACE,uBAGA,gBAGF,kCACE,clBhJN,2BkBkFI,8NACE,gBACA,gBlBjGN,wBkB6FA,kBAoBI,qBACA,2BAEA,8BACE,mBAEA,6CACE,kBAGF,sRACE,mB9ByhBwB,C8BxhBxB,kB9BwhBwB,C8BnhB5B,8NACE,iBAcF,qCACE,iBAGF,mCACE,uBAGA,gBAGF,kCACE,clBhJN,4BkBkFI,8NACE,gBACA,gBlBjGN,yBkB6FA,kBAoBI,qBACA,2BAEA,8BACE,mBAEA,6CACE,kBAGF,sRACE,mB9ByhBwB,C8BxhBxB,kB9BwhBwB,C8BnhB5B,8NACE,iBAcF,qCACE,iBAGF,mCACE,uBAGA,gBAGF,kCACE,cAhEN,eAoBI,qBACA,2BAnBA,yMACE,gBACA,eAmBF,2BACE,mBAEA,0CACE,kBAGF,uQACE,mB9ByhBwB,C8BxhBxB,kB9BwhBwB,C8BnhB5B,yMACE,iBAcF,kCACE,iBAGF,gCACE,uBAGA,gBAGF,+BACE,a3BzMR,gG2B2NI,oB9B8f8B,C8BzfhC,kQACE,oB9Bsf8B,CGvtBlC,gkB2BoOM,oB9Bof4B,C8Bjf9B,+SACE,oB9Bkf4B,C8B9ehC,0oCAIE,oB9Bye8B,C8BrelC,8BACE,oB9BkegC,C8BjehC,2B9BsegC,C8BnelC,mCACE,yQAGF,2BACE,oB9BydgC,CGvtBlC,mG2BmQM,oB9Bsd4B,CGztBlC,6F2B+QI,U9BxRK,C8B6RP,6PACE,wB9B2b8B,CGhtBlC,sjB2BwRM,yB9Byb4B,C8Btb9B,0SACE,yB9Bub4B,C8BnbhC,snCAIE,U9B7SK,C8BiTT,6BACE,wB9BuagC,C8BtahC,+B9B2agC,C8BxalC,kCACE,+QAGF,0BACE,wB9B8ZgC,CGhtBlC,gG2BuTM,U9BhUG,C+BHX,uIACE,kBACA,aACA,sBACA,YAEA,qBACA,qB/BJS,C+BKT,2BACA,kCvBKE,qBuBFF,mJACE,eACA,cAGF,6mBACE,mBACA,sBAEA,6vBACE,mBvBCF,0CACA,2CuBEA,ivBACE,sBvBUF,8CACA,6CuBJF,8lKAEE,aAIJ,gEAGE,cAGA,eACA,e/BgxBkC,C+B5wBpC,YACE,oB/B0wBkC,C+BvwBpC,eACE,mBACA,CAGF,qCAHE,eAIA,C5BrDA,iB4B0DE,qBAGF,sBACE,mB/ByvBgC,C+BjvBpC,iEACE,uBACA,gBAEA,gC/BkvBkC,C+BjvBlC,yCAEA,yFvBvEE,wDuB4EJ,iEACE,uBAEA,gC/BuuBkC,C+BtuBlC,sCAEA,uFvBlFE,wDuB4FJ,kBAEE,sBAEA,gBAGF,qCANE,sBAEA,oBAMA,CAIF,kBACE,kBACA,MACA,QACA,SACA,OACA,e/B6sBkC,CQ5zBhC,iCuBmHJ,yCAGE,cACA,WAGF,wBvBjHI,0CACA,2CuBqHJ,2BvBxGI,8CACA,6CuBgHF,qSACE,kB/BqrBgC,CYpxBhC,wBmB6FJ,WAMI,aACA,mBACA,mBACA,kBAEA,qSAEE,YACA,iB/ByqB8B,C+BxqB9B,gBACA,gB/BuqB8B,E+B1pBlC,uLACE,kB/BypBgC,CYpxBhC,wBmBuHJ,YAQI,aACA,mBAGA,uLAEE,YACA,gBAEA,wqCACE,cACA,cAKA,2PvBzKJ,0BACA,6BuB2KM,2lDAGE,0BAEF,umDAGE,6BAIJ,+PvB1KJ,yBACA,4BuB4KM,4mDAGE,yBAEF,wnDAGE,6BAcV,uTACE,oB/B8kBgC,CYtwBhC,wBmBsLJ,cAMI,c/B2lBgC,C+B1lBhC,kB/B2lBgC,C+B1lBhC,UACA,SAEA,uTACE,qBACA,YAUN,WACE,qBAEA,mLACE,gBAEA,+PACE,gBvBvOF,6BACA,4BuB0OA,mQvBzPA,yBACA,0BuB4PA,+xBvBtQA,gBuBwQE,mBC1RN,YACE,aACA,eACA,oBACA,kBhCqiCkC,CgCniClC,gBACA,wBhCES,CQSP,qBwBLF,kCACE,kBhCyhCgC,CgCvhChC,yCACE,WACA,mBhCqhC8B,CgCphC9B,ahCNK,CgCOL,YAUJ,+CACE,0BAIA,oBAJA,CAOF,wBACE,ahC1BO,CiCbX,8BACE,a5BGA,eACA,gBGaE,qByBZJ,kCACE,kBACA,cACA,qBACA,iBACA,gBjCoxBkC,CiCnxBlC,a/BCW,C+BCX,qBjCPS,CiCQT,yBAEA,8CACE,UACA,ajC8JsC,CiC7JtC,qBACA,wBjCZO,CiCaP,oBjCZO,CiCeT,8CACE,UACA,SjC4wBgC,CiC3wBhC,2CjC+W0B,CiCzW1B,6MACE,czBaF,8BACA,iCyBTA,wMzBNA,+BACA,kCyBUF,oLACE,UACA,UjCxCO,CiCyCP,wBjC0M0B,CiCzM1B,oBjCyM0B,CiCtM5B,8LACE,ajCxCO,CiCyCP,oBAEA,YACA,qBjClDO,CiCmDP,oBjChDO,CkCPT,sGACE,sBjCgLE,kBiC9KF,elCmO0B,CkC9NxB,qY1BqCF,6BACA,gC0BjCE,8X1BkBF,8BACA,iC0BhCF,sGACE,qBjCgLE,kBiC9KF,elCoO0B,CkC/NxB,qY1BqCF,6BACA,gC0BjCE,8X1BkBF,8BACA,iC2B9BJ,OACE,qBACA,mBlC6JE,ckC3JF,enCwR4B,CmCvR5B,cACA,kBACA,mBACA,wB3BKE,qBSFE,6HkBDJ,ClBKI,sCkBfN,OlBgBQ,iBdLN,4BgCGI,qBAKJ,aACE,aAKJ,2nBACE,kBACA,SAOF,YACE,kBnCi4BkC,CmCh4BlC,iBnCg4BkC,CQv5BhC,oB2BgCF,eCjDA,WACA,wBpC0Ea,CG5Db,4CiCVI,WACA,yBAGF,4CAEE,UACA,2CDqCJ,iBCjDA,WACA,wBpC0Ea,CG5Db,gDiCVI,WACA,yBAGF,gDAEE,UACA,4CDqCJ,eCjDA,WACA,wBpC0Ea,CG5Db,4CiCVI,WACA,yBAGF,4CAEE,UACA,0CDqCJ,YCjDA,WACA,wBpC0Ea,CG5Db,sCiCVI,WACA,yBAGF,sCAEE,UACA,2CDqCJ,eCjDA,cACA,wBpC0Ea,CG5Db,4CiCVI,cACA,yBAGF,4CAEE,UACA,0CDqCJ,cCjDA,WACA,wBpC0Ea,CG5Db,0CiCVI,WACA,yBAGF,0CAEE,UACA,0CDqCJ,aCjDA,cACA,wBpC0Ea,CG5Db,wCiCVI,cACA,yBAGF,wCAEE,UACA,4CDqCJ,YCjDA,WACA,wBpC0Ea,CG5Db,sCiCVI,WACA,yBAGF,sCAEE,UACA,yCCbN,WACE,kBACA,kBrCyzBkC,CqCvzBlC,wBrCKS,CQSP,oBI0CA,wByB5DJ,WAQI,mBAIJ,iBACE,gBACA,e7BIE,gB8BdJ,sBACE,kBACA,uBACA,kBtCy9BkC,CsCx9BlC,6B9BUE,qB8BLJ,eAEE,cAIF,YACE,etC6Q4B,CsCrQ9B,mBACE,mBAGA,0BACE,kBACA,MACA,QACA,UACA,uBACA,cAUF,eC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,kBACE,yBAGF,2BACE,cDsCF,iBC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,oBACE,yBAGF,6BACE,cDsCF,eC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,kBACE,yBAGF,2BACE,cDsCF,gCC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,sCACE,yBAGF,wDACE,cDsCF,sCC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,4CACE,yBAGF,8DACE,cDsCF,mCC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,yCACE,yBAGF,2DACE,cDsCF,aC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,gBACE,yBAGF,yBACE,cDsCF,YC/CA,aDgDqH,CnB3CnH,wBmB2CuB,CC9CzB,oBD8CqE,CC5CrE,eACE,yBAGF,wBACE,cCRF,gCACE,8BACA,4BAIJ,UAEE,WxCk+BkC,CwCh+BlC,cvCwKI,iBuCtKJ,wBxCLS,CQSP,qBgCCJ,wBAVE,aAEA,eAiBA,CATF,cAEE,sBACA,uBAEA,UxCjBS,CwCkBT,kBACA,mBACA,wBxCu9BkC,CiBl+B9B,yBuBYJ,CvBRI,sCuBDN,cvBEQ,iBuBUR,sBrBYE,sKqBVA,0BAIA,uBACE,kDAGE,sCAJJ,uBAKM,gBC1CR,OACE,aACA,uBAGF,YACE,OCFF,wDACE,aACA,sBAGA,eACA,gBlCQE,qBkCEJ,wBACE,WACA,a1CRS,C0CST,mBvCPA,4DuCWE,UACA,a1CdO,C0CeP,qBACA,wB1CtBO,C0CyBT,+BACE,axCjCiB,CwCkCjB,wB1C1BO,C0CmCX,mEACE,kBACA,cACA,uBAGA,qB1C3CS,C0C4CT,kCAEA,uGlC1BE,+BACA,gCkC6BF,oGlChBE,mCACA,kCkCmBF,4LAEE,a1ClDO,C0CmDP,oBACA,qB1C1DO,C0C8DT,wFACE,UACA,U1ChEO,C0CiEP,wB1CkL0B,C0CjL1B,oB1CiL0B,C0C9K5B,kQACE,mBAEA,mTACE,gBACA,oB1C2JwB,C0C7I1B,uBACE,mBAGE,4KlC1BJ,iCAZA,0BkC2CI,yKlC3CJ,+BAYA,4BkCoCI,6JACE,aAGF,maACE,oB1C0HoB,C0CzHpB,oBAEA,odACE,iBACA,qB1CqHkB,CYhL1B,wB8BmCA,0BACE,mBAGE,qLlC1BJ,iCAZA,0BkC2CI,kLlC3CJ,+BAYA,4BkCoCI,sKACE,aAGF,wbACE,oB1C0HoB,C0CzHpB,oBAEA,yeACE,iBACA,qB1CqHkB,EYhL1B,wB8BmCA,0BACE,mBAGE,qLlC1BJ,iCAZA,0BkC2CI,kLlC3CJ,+BAYA,4BkCoCI,sKACE,aAGF,wbACE,oB1C0HoB,C0CzHpB,oBAEA,yeACE,iBACA,qB1CqHkB,EYhL1B,wB8BmCA,0BACE,mBAGE,qLlC1BJ,iCAZA,0BkC2CI,kLlC3CJ,+BAYA,4BkCoCI,sKACE,aAGF,wbACE,oB1C0HoB,C0CzHpB,oBAEA,yeACE,iBACA,qB1CqHkB,EYhL1B,yB8BmCA,0BACE,mBAGE,qLlC1BJ,iCAZA,0BkC2CI,kLlC3CJ,+BAYA,4BkCoCI,sKACE,aAGF,wbACE,oB1C0HoB,C0CzHpB,oBAEA,yeACE,iBACA,qB1CqHkB,E0CvG9B,kBlCnHI,gBkCsHF,yHACE,qBAEA,0JACE,sBCzIJ,yBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,4GwCPM,aD+IkE,CC9IlE,yBAGF,uDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,2BACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,gHwCPM,aD+IkE,CC9IlE,yBAGF,yDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,yBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,4GwCPM,aD+IkE,CC9IlE,yBAGF,uDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,sBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,sGwCPM,aD+IkE,CC9IlE,yBAGF,oDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,yBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,4GwCPM,aD+IkE,CC9IlE,yBAGF,uDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,wBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,0GwCPM,aD+IkE,CC9IlE,yBAGF,sDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,uBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,wGwCPM,aD+IkE,CC9IlE,yBAGF,qDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CCrJxE,sBACE,aDoJsE,CCnJtE,wBDmJuC,CvCxIzC,sGwCPM,aD+IkE,CC9IlE,yBAGF,oDACE,U3CPG,C2CQH,wBDyIkE,CCxIlE,oBDwIkE,CExJ1E,OACE,Y3CmLI,iB2CjLJ,e5C8R4B,C4C7R5B,cACA,U5CYS,C4CXT,wB5CylCkC,C4CxlClC,WzCKA,ayCDE,U5CMO,C4CLP,qBzCIF,sFyCCI,YAWN,aACE,UACA,6BACA,SAMF,iBACE,oBCtCF,OAGE,gB7C24BkC,C6C14BlC,e7C04BkC,CC1tB9B,kB4C7KJ,oC7C44BkC,C6C34BlC,4BACA,gCACA,yC7C64BkC,C6C54BlC,UrCOE,qBqCJF,wBACE,oB7Cg4BgC,C6C73BlC,eACE,UAGF,YACE,cACA,UAGF,YACE,aAIJ,cACE,aACA,mBACA,sBACA,a7CvBS,C6CwBT,oC7Cq3BkC,C6Cp3BlC,4BACA,wCrCZE,0CACA,2CqCeJ,YACE,c7Cm2BkC,C8Cz4BpC,YAEE,gBAEA,mBACE,kBACA,gBAKJ,OACE,eACA,MACA,OACA,Y9C4pBkC,C8C3pBlC,aACA,WACA,YACA,gBAGA,UAOF,cACE,kBACA,WACA,Y9Ci5BkC,C8C/4BlC,oBAGA,0B7B3BI,iC6B4BF,CACA,2B9Cu6BgC,CiBh8B9B,sC6BuBJ,0B7BtBM,iB6B0BN,0BACE,c9Cq6BgC,C8Cj6BlC,kCACE,qB9Ck6BgC,C8C95BpC,yBACE,aACA,6BAEA,wCACE,8BACA,gBAGF,8EAEE,cAGF,qCACE,gBAIJ,uBACE,aACA,mBACA,6BAGA,8BACE,cACA,0BACA,mBACA,WAIF,+CACE,sBACA,uBACA,YAEA,8DACE,gBAGF,sDACE,aAMN,eACE,kBACA,aACA,sBACA,WAGA,oBACA,qB9C3GS,C8C4GT,4BACA,gCtClGE,oBsCsGF,UAIF,gBACE,eACA,MACA,OACA,Y9CgjBkC,C8C/iBlC,YACA,aACA,qB9ClHS,C8CqHT,+BACA,+B9C+zBkC,C8C1zBpC,cACE,aACA,uBACA,8BACA,Y9C6zBkC,C8C5zBlC,gCtCtHE,yCACA,0CsCwHF,qBACE,Y9CwzBgC,C8CtzBhC,8BAKJ,aACE,gBACA,e9CuI4B,C8ClI9B,YACE,kBAGA,cACA,Y9C0wBkC,C8CtwBpC,cACE,aACA,eACA,mBACA,yBACA,eACA,6BtCzIE,6CACA,4CsC8IF,gBACE,cAKJ,yBACE,kBACA,YACA,WACA,YACA,gBlCvIE,wBkC6IF,cACE,e9CuwBgC,C8CtwBhC,oBAGF,yBACE,+BAEA,wCACE,gCAIJ,uBACE,+BAEA,8BACE,4BACA,mBAQJ,yB9C+uBkC,EYt5BhC,wBkC2KF,oBAEE,e9CuuBgC,EYp5BhC,yBkCkLF,0B9CiuBkC,E+C98BpC,SACE,kBACA,Y/CgrBkC,C+C/qBlC,cACA,Q/C61BkC,CgDj2BlC,wLhDoR4B,CgDlR5B,kBACA,ehD4R4B,CgD3R5B,ehDgS4B,CgD/R5B,gBACA,iBACA,qBACA,iBACA,oBACA,sBACA,kBACA,mBACA,oBACA,gB/CqKI,kB8CzKJ,qBACA,UAEA,wB/Ci1BkC,C+C/0BlC,gBACE,kBACA,cACA,W/Ci1BgC,C+Ch1BhC,Y/Ci1BgC,C+C/0BhC,uBACE,kBACA,WACA,yBACA,mBAKN,mDACE,gBAEA,iEACE,SAEA,+EACE,MACA,2BACA,qB/CvBK,C+C4BX,uDACE,gBAEA,qEACE,OACA,W/CmzBgC,C+ClzBhC,Y/CizBgC,C+C/yBhC,mFACE,QACA,iCACA,uB/CvCK,C+C4CX,yDACE,gBAEA,uEACE,MAEA,qFACE,SACA,2BACA,wB/CrDK,C+C0DX,qDACE,gBAEA,mEACE,QACA,W/CqxBgC,C+CpxBhC,Y/CmxBgC,C+CjxBhC,iFACE,OACA,iCACA,sB/CrEK,C+C0FX,eACE,e/C+uBkC,C+C9uBlC,qBACA,U/CvGS,C+CwGT,kBACA,qB/C/FS,CQCP,qByClBJ,SAEE,MACA,OACA,YjD8qBkC,CiD5qBlC,ejD+2BkC,CgDp3BlC,wLhDoR4B,CgDlR5B,kBACA,ehD4R4B,CgD3R5B,ehDgS4B,CgD/R5B,gBACA,iBACA,qBACA,iBACA,oBACA,sBACA,kBACA,mBACA,oBACA,gB/CqKI,kBgDxKJ,qBACA,qBjDNS,CiDOT,4BACA,gCzCGE,oByCCF,yBAlBA,kBAIA,aAmBE,CALF,gBAGE,UjD+2BgC,CiD92BhC,YjD+2BgC,CiD92BhC,eAEA,6CAEE,kBACA,cACA,WACA,yBACA,mBAKN,mDACE,mBjDg2BkC,CiD91BlC,iEACE,0BAEA,+EACE,SACA,2BACA,gCjD21B8B,CiDx1BhC,6EACE,UjD0LwB,CiDzLxB,2BACA,qBjD7CK,CiDkDX,uDACE,iBjD40BkC,CiD10BlC,qEACE,wBACA,WjDw0BgC,CiDv0BhC,WjDs0BgC,CiDr0BhC,eAEA,mFACE,OACA,iCACA,kCjDo0B8B,CiDj0BhC,iFACE,QjDmKwB,CiDlKxB,iCACA,uBjDpEK,CiDyEX,yDACE,gBjDqzBkC,CiDnzBlC,uEACE,uBAEA,qFACE,MACA,2BACA,mCjDgzB8B,CiD7yBhC,mFACE,OjD+IwB,CiD9IxB,2BACA,wBjDxFK,CiD6FT,uGACE,kBACA,MACA,SACA,cACA,UjD4xBgC,CiD3xBhC,mBACA,WACA,gCAIJ,qDACE,kBjDqxBkC,CiDnxBlC,mEACE,yBACA,WjDixBgC,CiDhxBhC,WjD+wBgC,CiD9wBhC,eAEA,iFACE,QACA,iCACA,iCjD6wB8B,CiD1wBhC,+EACE,SjD4GwB,CiD3GxB,iCACA,sBjD3HK,CiDiJX,gBACE,qBACA,gBhD0BI,egDvBJ,wBjD+tBkC,CiD9tBlC,gCzCnIE,yCACA,0CyCqIF,sBACE,aAIJ,cACE,qBACA,a/CvKmB,CgDYrB,UACE,kBAGF,wBACE,mBAGF,gBACE,kBACA,WACA,gBCvBA,sBACE,cACA,WACA,WDwBJ,eACE,kBACA,aACA,WACA,WACA,mBACA,2BjClBI,oCiCmBJ,CjCfI,sCiCQN,ejCPQ,iBiCiBR,8DAGE,cAGF,yEAEE,2BAGF,yEAEE,4BASA,8BACE,UACA,4BACA,eAGF,kJAGE,UACA,UAGF,qFAEE,UACA,UjC5DE,yBiC6DF,CjCzDE,sCiCqDJ,qFjCpDM,iBiCiER,8CAEE,kBACA,MACA,SACA,UAEA,aACA,mBACA,uBACA,SlDs9BmC,CkDr9BnC,UACA,UlD3FS,CkD4FT,kBACA,gBACA,SACA,UlDi9BmC,CiBviC/B,4BiCuFJ,CjCnFI,sCiCkEN,8CjCjEQ,iBdLN,oH+C2FE,UlDpGO,CkDqGP,qBACA,UACA,UlD08BiC,CkDv8BrC,uBACE,OAKF,uBACE,QAOF,wDAEE,qBACA,UlDm8BmC,CkDl8BnC,WlDk8BmC,CkDj8BnC,mCAEF,4BACE,kNAEF,4BACE,mNASF,qBACE,kBACA,QACA,SACA,OACA,WACA,aACA,uBACA,eAEA,gBlDy5BmC,CkDx5BnC,elDw5BmC,CkDv5BnC,gBAEA,wBACE,uBACA,cACA,UlDu5BiC,CkDt5BjC,UlDu5BiC,CkDt5BjC,gBlDw5BiC,CkDv5BjC,elDu5BiC,CkDt5BjC,mBACA,eACA,qBlDnKO,CkDoKP,4BAEA,kCACA,qCACA,WjC/JE,2BiCgKF,CjC5JE,sCiC6IJ,wBjC5IM,iBiC8JN,6BACE,UASJ,kBACE,kBACA,UACA,YACA,SACA,WACA,iBACA,oBACA,UlD9LS,CkD+LT,kBElMF,0BACE,4BAGF,gBACE,qBACA,UpDskCwB,CoDrkCxB,WpDqkCwB,CoDpkCxB,sBpDskCwB,CoDpkCxB,wDAEA,kBACA,8CAGF,mBACE,UpDgkCwB,CoD/jCxB,WpD+jCwB,CoD9jCxB,iBpDgkCwB,CoDzjC1B,wBACE,GACE,mBAEF,IACE,UACA,gBAIJ,cACE,qBACA,UpDsiCwB,CoDriCxB,WpDqiCwB,CoDpiCxB,sBpDsiCwB,CoDriCxB,8BAEA,kBACA,UACA,4CAGF,iBACE,UpDgiCwB,CoD/hCxB,WpD+hCwB,CoD3hCxB,sCACE,8BAEE,yBC3DN,kDACA,wCACA,8CACA,8CACA,wDACA,kDCFE,YACE,mCnDUF,sFmDLI,mCANJ,cACE,mCnDUF,8FmDLI,mCANJ,YACE,mCnDUF,sFmDLI,mCANJ,SACE,mCnDUF,0EmDLI,mCANJ,YACE,mCnDUF,sFmDLI,mCANJ,WACE,mCnDUF,kFmDLI,mCANJ,2CACE,mCnDUF,8EmDLI,mCANJ,SACE,mCnDUF,0EmDLI,mCCCN,UACE,gCAGF,gBACE,uCCXF,uIACA,mDACA,uDACA,yDACA,qDAEA,6BACA,qCACA,yCACA,2CACA,uCAGE,gBACE,+BADF,kBACE,+BADF,+DACE,+BADF,aACE,+BADF,6DACE,+BADF,eACE,+BADF,cACE,+BADF,aACE,+BAIJ,cACE,4BAOF,YACE,8BAGF,SACE,+BAGF,aACE,uCACA,CAGF,4BAHE,wCAKA,CAGF,+BAHE,2CAKA,CAGF,8BAHE,0CAKA,CAFF,cACE,uCACA,CAGF,YACE,8BAGF,gBACE,4BAGF,cACE,8BAGF,WACE,0BLxEA,gBACE,cACA,WACA,WMOE,qa7CiDF,wB6CjDE,+W7CiDF,wB6CjDE,+W7CiDF,wB6CjDE,+W7CiDF,yB6CjDE,+WAUN,aAEI,0YCrBJ,kBACE,kBACA,cACA,WACA,UACA,gBAEA,yBACE,cACA,WAGF,2IAKE,kBACA,MACA,SACA,OACA,WACA,YACA,SASA,+BACE,yBADF,+BACE,mBADF,8BACE,gBADF,8BACE,iBCzBF,uCACA,iFACA,uDACA,6DAEA,oCACA,wCACA,oDACA,mCACA,mCACA,mCACA,uCACA,uCAEA,4DACA,wDACA,yDACA,iEACA,+DAEA,oDACA,gDACA,iDACA,qDACA,mDAEA,wDACA,oDACA,qDACA,6DACA,2DACA,uDAEA,2CACA,kDACA,8CACA,+CACA,mDACA,iD/CYA,wB+ClDA,0CACA,gDACA,0DACA,gEAEA,uCACA,2CACA,uDACA,sCACA,sCACA,sCACA,0CACA,0CAEA,+DACA,2DACA,4DACA,oEACA,kEAEA,uDACA,mDACA,oDACA,wDACA,sDAEA,2DACA,uDACA,wDACA,gEACA,8DACA,0DAEA,8CACA,qDACA,iDACA,kDACA,sDACA,qD/CYA,wB+ClDA,0CACA,gDACA,0DACA,gEAEA,uCACA,2CACA,uDACA,sCACA,sCACA,sCACA,0CACA,0CAEA,+DACA,2DACA,4DACA,oEACA,kEAEA,uDACA,mDACA,oDACA,wDACA,sDAEA,2DACA,uDACA,wDACA,gEACA,8DACA,0DAEA,8CACA,qDACA,iDACA,kDACA,sDACA,qD/CYA,wB+ClDA,0CACA,gDACA,0DACA,gEAEA,uCACA,2CACA,uDACA,sCACA,sCACA,sCACA,0CACA,0CAEA,+DACA,2DACA,4DACA,oEACA,kEAEA,uDACA,mDACA,oDACA,wDACA,sDAEA,2DACA,uDACA,wDACA,gEACA,8DACA,0DAEA,8CACA,qDACA,iDACA,kDACA,sDACA,qD/CYA,yB+ClDA,0CACA,gDACA,0DACA,gEAEA,uCACA,2CACA,uDACA,sCACA,sCACA,sCACA,0CACA,0CAEA,+DACA,2DACA,4DACA,oEACA,kEAEA,uDACA,mDACA,oDACA,wDACA,sDAEA,2DACA,uDACA,wDACA,gEACA,8DACA,0DAEA,8CACA,qDACA,iDACA,kDACA,sDACA,qDC1CA,iCACA,mCACA,iChDoDA,wBgDtDA,oCACA,sCACA,qChDoDA,wBgDtDA,oCACA,sCACA,qChDoDA,wBgDtDA,oCACA,sCACA,qChDoDA,yBgDtDA,oCACA,sCACA,qCCLF,4PCCA,6NAKF,WAEE,K9DoqBkC,C8D9pBpC,yBAPE,eAEA,QACA,OACA,Y9DiqBkC,C8D9pBpC,cAGE,Q9D2pBkC,C8DrpBlC,2BADF,YAEI,gBACA,MACA,Y9DipBgC,E+D1qBpC,SCSE,kBACA,CAUA,mDAOE,mBC7BJ,kEACA,0DACA,6DACA,uCCCI,mRAIJ,iCACA,kCAIA,sCACA,uCAEA,8BACA,+BCTQ,wBACA,YAEE,uBAEF,YAEE,yBAEF,YAEE,0BAEF,YAEE,wBAfF,6BACA,YAEE,4BAEF,iEAEE,8BAEF,YAEE,+BAEF,YAEE,6BAfF,4BACA,oEAEE,2BAEF,YAEE,6BAEF,YAEE,8BAEF,YAEE,4BAfF,2BACA,YAEE,0BAEF,YAEE,4BAEF,iDAEE,6BAEF,YAEE,2BAfF,6BACA,YAEE,4BAEF,YAEE,8BAEF,YAEE,+BAEF,YAEE,6BAfF,2BACA,YAEE,0BAEF,YAEE,4BAEF,YAEE,6BAEF,YAEE,2BAfF,yBACA,YAEE,wBAEF,YAEE,0BAEF,YAEE,2BAEF,YAEE,yBAfF,8BACA,YAEE,6BAEF,YAEE,+BAEF,YAEE,gCAEF,YAEE,8BAfF,6BACA,YAEE,4BAEF,YAEE,8BAEF,YAEE,+BAEF,YAEE,6BAfF,4BACA,wGAEE,2BAEF,YAEE,6BAEF,wGAEE,8BAEF,YAEE,4BAfF,8BACA,YAEE,6BAEF,wGAEE,+BAEF,YAEE,gCAEF,wGAEE,8BAfF,4BACA,YAEE,2BAEF,YAEE,6BAEF,YAEE,8BAEF,YAEE,4BAQF,+BACA,cAEE,6BAEF,cAEE,+BAEF,cAEE,gCAEF,cAEE,8BAfF,8BACA,cAEE,4BAEF,cAEE,8BAEF,cAEE,+BAEF,cAEE,6BAfF,6BACA,cAEE,2BAEF,cAEE,6BAEF,cAEE,8BAEF,cAEE,4BAfF,+BACA,cAEE,6BAEF,cAEE,+BAEF,cAEE,gCAEF,cAEE,8BAfF,6BACA,cAEE,2BAEF,cAEE,6BAEF,cAEE,8BAEF,cAEE,4BAMN,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BvDTF,wBuDlDI,2BACA,kBAEE,uBAEF,kBAEE,yBAEF,kBAEE,0BAEF,kBAEE,wBAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,4BACA,kBAEE,wBAEF,kBAEE,0BAEF,kBAEE,2BAEF,kBAEE,yBAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAQF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,iCACA,oBAEE,4BAEF,oBAEE,8BAEF,oBAEE,+BAEF,oBAEE,6BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAfF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAMN,iCACA,wBAEE,0BAEF,wBAEE,4BAEF,wBAEE,6BAEF,wBAEE,4BvDTF,wBuDlDI,2BACA,kBAEE,uBAEF,kBAEE,yBAEF,kBAEE,0BAEF,kBAEE,wBAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,4BACA,kBAEE,wBAEF,kBAEE,0BAEF,kBAEE,2BAEF,kBAEE,yBAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAQF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,iCACA,oBAEE,4BAEF,oBAEE,8BAEF,oBAEE,+BAEF,oBAEE,6BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAfF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAMN,iCACA,wBAEE,0BAEF,wBAEE,4BAEF,wBAEE,6BAEF,wBAEE,4BvDTF,wBuDlDI,2BACA,kBAEE,uBAEF,kBAEE,yBAEF,kBAEE,0BAEF,kBAEE,wBAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,4BACA,kBAEE,wBAEF,kBAEE,0BAEF,kBAEE,2BAEF,kBAEE,yBAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAQF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,iCACA,oBAEE,4BAEF,oBAEE,8BAEF,oBAEE,+BAEF,oBAEE,6BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAfF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAMN,iCACA,wBAEE,0BAEF,wBAEE,4BAEF,wBAEE,6BAEF,wBAEE,4BvDTF,yBuDlDI,2BACA,kBAEE,uBAEF,kBAEE,yBAEF,kBAEE,0BAEF,kBAEE,wBAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,8BACA,kBAEE,0BAEF,kBAEE,4BAEF,kBAEE,6BAEF,kBAEE,2BAfF,4BACA,kBAEE,wBAEF,kBAEE,0BAEF,kBAEE,2BAEF,kBAEE,yBAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,gCACA,kBAEE,4BAEF,kBAEE,8BAEF,kBAEE,+BAEF,kBAEE,6BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAfF,iCACA,kBAEE,6BAEF,kBAEE,+BAEF,kBAEE,gCAEF,kBAEE,8BAfF,+BACA,kBAEE,2BAEF,kBAEE,6BAEF,kBAEE,8BAEF,kBAEE,4BAQF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,iCACA,oBAEE,4BAEF,oBAEE,8BAEF,oBAEE,+BAEF,oBAEE,6BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAfF,kCACA,oBAEE,6BAEF,oBAEE,+BAEF,oBAEE,gCAEF,oBAEE,8BAfF,gCACA,oBAEE,2BAEF,oBAEE,6BAEF,oBAEE,8BAEF,oBAEE,4BAMN,iCACA,wBAEE,0BAEF,wBAEE,4BAEF,wBAEE,6BAEF,wBAEE,4BChEJ,sBACE,kBACA,MACA,QACA,SACA,OACA,UAEA,oBACA,WAEA,6BCVJ,iHAIA,2CACA,wCACA,0CACA,eCTE,gBACA,uBACA,mBDeE,qCACA,uCACA,6FzDqCA,wByDvCA,wCACA,0CACA,6CzDqCA,wByDvCA,wCACA,0CACA,6CzDqCA,wByDvCA,wCACA,0CACA,6CzDqCA,yByDvCA,wCACA,0CACA,6CAMJ,mDACA,mDACA,qDAIA,6CACA,mDACA,8CACA,0DACA,iDACA,yCAIA,iCEvCE,cACE,wBpEUF,0CoELM,wBANN,kFACE,wBpEUF,0OoELM,wBANN,uCACE,wBpEUF,0GoELM,wBANN,oCACE,wBpEUF,oGoELM,wBANN,uCACE,wBpEUF,0GoELM,wBANN,8WACE,wBpEUF,ozBoELM,wBANN,YACE,wBpEUF,sCoELM,wBANN,WACE,wBpEUF,oCoELM,wBFuCR,mCACA,oCAEA,8CACA,kDAIA,WGvDE,WACA,kBACA,iBACA,6BACA,SHuDF,qDAEA,YACE,gCACA,+BAKF,oCIjEA,SACE,6BAGF,WACE,yCCCE,iBAKE,2BAEA,0BAIA,8BACE,0BASJ,kBACE,6BAcF,IACE,+BAEF,eAEE,wBACA,CAGF,sBAHE,uBAKA,CAGF,QAGE,UACA,SAGF,MAEE,uBAQF,MACE,O1E2iC8B,C0EtiChC,gBACE,0BAIF,QACE,aAEF,OACE,sBAGF,qBACE,mCAEA,sDAEE,gCAKF,wEAEE,mCAIJ,YACE,cAEA,2EAIE,oB1E9GG,C0EkHP,mDACE,cACA,oB1EpHK,E2EPX,8OAME,kCACA,mCACA,qBACA,kBACA,oBACA,oBACA,cCXF,OACE,yBACA,kBACA,wBAGF,OACE,gBAGF,OACE,iBAIA,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,OACE,cADF,QACE,eClBJ,OACE,kBACA,YCOqB,CCRvB,OACE,qBACA,kBACA,eAEA,4BAGF,OACE,UACA,kBACA,kBACA,SDLqB,CCMrB,oBCbF,WACE,wBACA,mBACA,yBAGF,yBACA,2BAOE,+SACA,wTCfF,SACE,qCAGF,UACE,uCAGF,mBACE,GACE,uBAGF,GACE,yBCdJ,cCWE,sEACA,wBDXF,eCUE,sEACA,yBDVF,eCSE,sEACA,yBDRF,oBCYE,gFACA,qBDZF,kBCYE,qBDXF,qECUE,+EACA,CDXF,mDCWE,oBDLA,oIAME,YElBJ,UACE,qBACA,WACA,gBACA,kBACA,sBACA,YAGF,0BAEE,OACA,kBACA,kBACA,WAGF,aACE,oBAGF,aACE,cAGF,YACE,UNpBqB,CONvB,6BACA,uCACA,gCACA,iDACA,0BACA,oCACA,oCACA,8BACA,2BACA,gCACA,sCACA,qCACA,8BACA,+BACA,oCACA,qCACA,kCACA,mCACA,8BACA,iCACA,8BACA,kCACA,iCACA,2DACA,8BACA,8BACA,+BACA,iCACA,yCACA,yCACA,0CACA,uCACA,kCACA,kCACA,mCACA,gCACA,6BACA,qCACA,+BACA,4BACA,iCACA,qCACA,6BACA,6BACA,iCACA,iCACA,+BACA,+BACA,6CACA,6CACA,8CACA,2CACA,yCACA,6DACA,0CACA,uCACA,kGACA,kCACA,mCACA,gIACA,kCACA,oCACA,oCACA,kCACA,mDACA,gCACA,kCACA,0BACA,6BACA,iCACA,4BACA,+BACA,yCACA,oCACA,+BACA,8BACA,6BACA,2BACA,4BACA,qCACA,iCACA,gCACA,6BACA,gCACA,iCACA,6BACA,qCACA,0CACA,2CACA,2BACA,gCACA,gCACA,+BACA,4BACA,qCACA,uCACA,4BACA,qCACA,oCACA,oCACA,uCACA,8CACA,kCACA,2BACA,4BACA,+BACA,sCACA,4BACA,kCACA,oCACA,6BACA,+BACA,8BACA,iCACA,kCACA,iCACA,qCACA,iCACA,+BACA,4BACA,iCACA,kCACA,+BACA,qCACA,6BACA,4BACA,+BACA,iCACA,iCACA,mCACA,4BACA,8DACA,4BACA,4BACA,4BACA,4BACA,iCACA,oCACA,iCACA,mCACA,gCACA,iCACA,kCACA,mCACA,oCACA,oCACA,2BACA,gCACA,kCACA,6BACA,+BACA,6BACA,mCACA,iCACA,yCACA,uCACA,6BACA,6BACA,2BACA,8BACA,2BACA,gCACA,gCACA,gCACA,4BACA,wCACA,2BACA,+BACA,qCACA,mCACA,kCACA,kCACA,gCACA,oCACA,sCACA,oCACA,sCACA,qCACA,sCACA,qCACA,8BACA,oCACA,kCACA,2CACA,kCACA,gCACA,gCACA,2BACA,+BACA,mCACA,iCACA,gCACA,+BACA,kCACA,kCACA,mCACA,yCACA,yCACA,0CACA,uCACA,gCACA,8BACA,uCACA,iCACA,qCACA,2BACA,qCACA,+BACA,oCACA,sCACA,mCACA,8BACA,qCACA,iCACA,iCACA,+BACA,kCACA,8BACA,mCACA,6BACA,kCACA,0CACA,wCACA,kCACA,iCACA,kCACA,iCACA,6BACA,oCACA,oCACA,oCACA,8BACA,6BACA,oCACA,mCACA,kCACA,oCACA,kCACA,mCACA,kCACA,2CACA,2CACA,4CACA,yCACA,oCACA,oCACA,qCACA,kCACA,6BACA,8BACA,kCACA,8BACA,8BACA,oCACA,4BACA,sCACA,iCACA,uCACA,sCACA,6BACA,6BACA,yCACA,6BACA,0CACA,sCACA,kCACA,uCACA,kCACA,2CACA,iCACA,sCACA,wCACA,kCACA,kCACA,kCACA,oCACA,gCACA,4BACA,mCACA,+BACA,gCACA,8BACA,2BACA,4BACA,6BACA,+BACA,+BACA,mCACA,sCACA,oCACA,uCACA,qCACA,gCACA,uCACA,oCACA,+BACA,gCACA,oCACA,2CACA,sCACA,kCACA,sCACA,8BACA,8BACA,mCACA,4BACA,iCACA,qCACA,6BACA,8BACA,wCACA,2CACA,2CACA,8CACA,8CACA,2CACA,2CACA,+CACA,8CACA,2CACA,iDACA,sDACA,8CACA,6CACA,mCACA,qCACA,4BACA,gCACA,6BACA,kCACA,4BACA,6BACA,8BACA,4BACA,gCACA,4BACA,6BACA,2BACA,kCACA,+BACA,sCACA,mCACA,gCACA,gCACA,4BACA,8BACA,iCACA,gCACA,iCACA,+BACA,+BACA,2BACA,kCACA,oCACA,2BACA,iCACA,gCACA,4BACA,gCACA,+BACA,iCACA,iCACA,gCACA,gCACA,kCACA,gCACA,4BACA,qCACA,0CACA,kCACA,+BACA,iCACA,+BACA,8BACA,6BACA,2BACA,8BACA,8BACA,2BACA,mCACA,6BACA,qCACA,8BACA,mCACA,iCACA,kCACA,4BACA,gCACA,qCACA,wCACA,8BACA,oCACA,gCACA,uCACA,+BACA,4BACA,qCACA,sCACA,8BACA,gCACA,gCACA,qCACA,+BACA,8BACA,kCACA,4BACA,4BACA,mCACA,4BACA,2BACA,6BACA,iCACA,kCACA,kCACA,4BACA,6BACA,8BACA,gCACA,qCACA,0CACA,uCACA,8BACA,8BACA,8BACA,8BACA,gCACA,gCACA,4BACA,iCACA,gCACA,oCACA,mCACA,2EACA,4CACA,8BACA,kCACA,yCACA,oCACA,yCACA,gDACA,2BACA,mCACA,iCACA,gCACA,kCACA,0CACA,uCACA,2BACA,4CACA,qCACA,oCACA,8BACA,2BACA,+BACA,mCACA,6BACA,8BACA,8BACA,mCACA,6BACA,4BACA,gCACA,oCACA,kCACA,iCACA,qCACA,gCACA,qCACA,kCACA,mCACA,kCACA,mCACA,oCACA,2CACA,oCACA,wCACA,gCACA,uCACA,yCACA,sCACA,mCACA,kCACA,iCACA,4BACA,iCACA,4BACA,8BACA,mCACA,4BACA,gCACA,yCACA,+BACA,uCACA,iCACA,mCACA,uCACA,kCACA,4BACA,mCACA,4BACA,sCACA,gCACA,6BACA,8BACA,iCACA,+BACA,2BACA,8BACA,oCACA,mCACA,mCACA,4BACA,oCACA,wCACA,yCACA,8CACA,iCACA,oCACA,qCACA,oCACA,wCACA,gCACA,+BACA,kCACA,sCACA,+BACA,4BACA,6BACA,kCACA,+BACA,qCACA,8BACA,yCACA,uCACA,+BACA,gCACA,6BACA,2BACA,kCACA,kCACA,0BACA,iCACA,6BACA,4BACA,6BACA,2BACA,+BACA,kCACA,8BACA,kCACA,qCACA,iCACA,8BACA,8BACA,oCACA,qCACA,yCACA,qCACA,+BACA,6BACA,+BACA,6BACA,oCACA,sCACA,kCACA,oCACA,8BACA,iCACA,iCACA,mCACA,8BACA,oCACA,kCACA,mCACA,mCACA,qCACA,0CACA,qCACA,+BACA,sCACA,gCACA,4BACA,oCACA,0CACA,+BACA,4BACA,gCACA,iCACA,uCACA,mCACA,mCACA,yCACA,kCACA,kCACA,mCACA,0CACA,wCACA,iCACA,uCACA,kCACA,2CACA,qCACA,gCACA,6BACA,+BACA,8BACA,4BACA,gCACA,mCACA,0CACA,kCACA,iCACA,8BACA,6BACA,oCACA,0CACA,4CACA,wCACA,0CACA,mCACA,0CACA,kCACA,kCACA,uCACA,uCACA,wCACA,qCACA,oCACA,iCACA,qCACA,qCACA,kCACA,6BACA,qCACA,kCACA,iCACA,2CACA,uCACA,gCACA,gCACA,+BACA,kCACA,uCACA,kCACA,2BACA,uCACA,6CACA,sCACA,uCACA,+BACA,kCACA,sCACA,+BACA,6BACA,oCACA,iCACA,kCACA,mCACA,8BACA,6BACA,4BACA,qCACA,+BACA,4BACA,mCACA,mCACA,4BACA,6BACA,gCACA,6BACA,kCACA,gCACA,oCACA,uCACA,qCACA,+BACA,8BACA,6BACA,8BACA,iCACA,qCACA,sCACA,uCACA,oCACA,kCACA,6BACA,+BACA,6BACA,+BACA,gCACA,iCACA,+BACA,6BACA,gCACA,+BACA,mCACA,6BACA,6BACA,6BACA,8BACA,4BACA,6BACA,8BACA,gCACA,gCACA,4BACA,mCACA,gCACA,iCACA,wCACA,gCACA,gCACA,yCACA,gCACA,+BACA,8BACA,+BACA,8BACA,mCACA,4BACA,4BACA,kCACA,+BACA,4BACA,6BACA,6BACA,8BACA,sCACA,0BACA,iCACA,gCACA,6BACA,8BACA,2BACA,+BACA,gCACA,8BACA,8BACA,mCACA,qCACA,4BACA,iCACA,uCACA,iCACA,8BACA,gCACA,gCACA,8BACA,mCACA,oCACA,sCACA,+BACA,8BACA,qCACA,6BACA,kCACA,oCACA,kCACA,mCACA,4BACA,+BACA,6BACA,4BACA,iCACA,uCACA,sCACA,oCACA,iCACA,iCACA,4BACA,4BACA,gCACA,mCACA,8BACA,6BACA,iCACA,4BACA,gCACA,+BACA,+BACA,sCACA,4BACA,iCACA,2CACA,2CACA,4CACA,yCACA,kCACA,oCACA,6BACA,mCACA,4BACA,+BACA,6BACA,8BACA,iCACA,iCACA,4BACA,mCACA,2BACA,kCACA,sCACA,kCACA,sCACA,+BACA,iCACA,gCACA,8BACA,4BACA,mCACA,mCACA,qCACA,qCACA,4BACA,gCACA,8BACA,2BACA,6BACA,+BACA,8BACA,gCACA,8BACA,6BACA,8BACA,gCACA,2BACA,iCACA,wCACA,8BACA,gCACA,+BACA,+BACA,8BACA,iCACA,iCACA,kCACA,sCACA,4CACA,wCACA,kCACA,iCACA,6BACA,oCACA,oCACA,8BACA,2BACA,gCACA,6BACA,8BACA,8BACA,kCACA,4BACA,8BACA,kCACA,sCACA,uCACA,2CACA,mCACA,uCACA,gCACA,4BACA,qCACA,8BACA,kCACA,gCACA,6BACA,qCACA,+BACA,6BACA,+BACA,4BACA,qCACA,8BACA,iCACA,8BACA,4BACA,+BACA,iCACA,qCACA,2BACA,2BACA,mCACA,oCACA,sCACA,sCACA,qCACA,4CACA,+BACA,oCACA,0BACA,gCACA,8BACA,6BACA,qCACA,6BACA,2BACA,6BACA,+BACA,6BACA,iCACA,6BACA,mCACA,oCACA,+BACA,8BACA,8BACA,mCACA,iCACA,qCACA,iCACA,+BACA,gCACA,sCACA,6BACA,+BACA,6BACA,oCACA,2BACA,8BACA,6BACA,2BACA,+BACA,iCACA,+BACA,kCACA,kCACA,oCACA,oCACA,qCACA,oCACA,kCACA,+BACA,+BACA,kCACA,iCACA,oCACA,mCACA,yCACA,wCACA,6BACA,iCACA,mCACA,oCACA,wCACA,oCACA,mCACA,2BACA,kCACA,sCACA,sCACA,qCACA,yCACA,kCACA,6BACA,iCACA,mCACA,wCACA,mCACA,wCACA,6BACA,qCACA,uCACA,mCACA,4BACA,mCACA,mCACA,4BACA,4BACA,mCACA,mCACA,+BACA,4BACA,8BACA,2BACA,iCACA,4BACA,gCACA,kCACA,iCACA,4BACA,qCACA,oCACA,2CACA,+CACA,6BACA,kCACA,oCACA,uCACA,oCACA,iCACA,8BACA,oCACA,8BACA,0BACA,8BACA,gCACA,uCACA,iCACA,iCACA,6BACA,kCACA,mCACA,6BACA,iCACA,iCACA,qCACA,+BACA,8BACA,oCACA,+BACA,6BACA,mCACA,8BACA,6BACA,+BACA,oCACA,+BACA,iCACA,8BACA,oCACA,qCACA,8BACA,4BACA,gCACA,kCACA,qCACA,8BACA,6BACA,iCACA,8BACA,kCACA,oCACA,iCACA,gCACA,+BACA,2BACA,8BACA,4BACA,4BACA,6BACA,8BACA,kCACA,+BACA,6BACA,2BACA,kCACA,kCACA,6BACA,sCACA,wCACA,sCACA,+BACA,kCACA,4BACA,+BACA,gCACA,8BACA,kCACA,4BACA,iCACA,sCACA,4BACA,8BACA,8BACA,mCACA,8BACA,8BACA,+BACA,8BACA,qCACA,uCACA,oCACA,mCACA,mCACA,gCACA,gCACA,8BACA,8BACA,oCACA,8BACA,6BACA,iCACA,wCACA,oCACA,mCACA,kCACA,oCACA,4BACA,qCACA,oCACA,mCACA,+BACA,oCACA,uCACA,qCACA,gCACA,8BACA,mCACA,4BACA,mCACA,qCACA,oCACA,8BACA,iCACA,gCACA,mCACA,4BACA,+BACA,+BACA,4BACA,+BACA,8BACA,8BACA,qCACA,6BACA,wCACA,gCACA,6BACA,6BACA,kCACA,6BACA,8BACA,iCACA,kCACA,6BACA,kCACA,kCACA,4BACA,+BACA,mCACA,2BACA,gCACA,sCACA,uCACA,oCACA,iCACA,+BACA,gCACA,4BACA,6BACA,mCACA,4BACA,uCACA,2CACA,qCACA,yCACA,wCACA,4CACA,sCACA,0CACA,iCACA,yCACA,6CACA,uCACA,2CACA,+BACA,kCACA,kCACA,2BACA,qCACA,+BACA,oCACA,mCACA,8BACA,+BACA,+BACA,+BACA,iCACA,8BACA,mCACA,uCACA,mCACA,sCACA,sCACA,iCACA,6BACA,4BACA,yCACA,iCACA,qCACA,qCACA,oCACA,kCACA,6BACA,oCACA,oCACA,qCACA,oCACA,mCACA,oCACA,mCACA,4BACA,mCACA,iCACA,oCACA,6BACA,iCACA,uCACA,mCACA,8BACA,8BACA,mCACA,qCACA,8BACA,gCACA,mCACA,oCACA,mCACA,0CACA,iCACA,8BACA,gCACA,wCACA,2BACA,mCACA,mCACA,8BACA,gCACA,4BACA,kCACA,6BACA,+BACA,qCACA,+BACA,iCACA,4BACA,gCACA,+BACA,6BACA,oCACA,8BACA,kCACA,+BACA,sCACA,2BACA,4BACA,4BACA,6BACA,4BACA,iCACA,6BACA,kCACA,gCACA,sCACA,wCACA,uCACA,qCACA,6BACA,gCACA,mCACA,kCACA,0BACA,gCACA,+BACA,oCACA,qCACA,+BACA,iCACA,mCACA,yCACA,wCACA,wCACA,2CACA,kDACA,mCACA,mCACA,iCACA,iCACA,kCACA,8BACA,6BACA,oCACA,4BACA,kCACA,6BACA,sHACA,8EACA,8BACA,oCACA,0CACA,+BACA,6BACA,6BACA,6BACA,kCACA,+BACA,wCACA,iCACA,qCACA,+BACA,6BACA,4BACA,mCACA,uCACA,6BACA,iCACA,qCACA,yCACA,4BACA,8BACA,8BACA,6BACA,qCACA,qCACA,oCACA,oCACA,8BACA,2BACA,8BACA,qCACA,0BACA,8BACA,+BACA,sCACA,6BACA,4BACA,8BACA,6BACA,+BACA,gCACA,sCACA,iCACA,iCACA,4BACA,gCACA,mCACA,6BACA,wCACA,kCACA,8BACA,8BACA,kCACA,gCACA,+BACA,8BACA,2BACA,2BACA,4BACA,gCACA,sCACA,sCACA,kCACA,mCACA,kCACA,gCACA,iCACA,oCACA,qCACA,oCACA,iCACA,+BACA,kCACA,kCACA,kCACA,iCACA,mCACA,mCACA,kCACA,gCACA,gCACA,kCACA,6BACA,iCACA,mCACA,4BACA,gCACA,qCACA,gCACA,8BACA,qCACA,6BACA,oCACA,kCACA,4BACA,oCACA,+BACA,8BACA,qCACA,4BACA,6BACA,6BACA,6BACA,mCACA,8BACA,6BACA,oCACA,+BACA,4BACA,6BACA,mCACA,+BACA,0BACA,2BACA,iCACA,uCACA,mCACA,mCACA,kCACA,iCACA,gCACA,oCACA,6BACA,+BACA,8BACA,iCACA,2CACA,6BACA,mCACA,4BACA,8BACA,6BACA,8BACA,sCACA,8BACA,gCACA,uCACA,kCACA,6BACA,4BACA,mCACA,4BACA,oCACA,uCACA,uCACA,sCACA,+BACA,mCACA,kCACA,sCACA,2BACA,4CACA,4BACA,2CACA,gCACA,iCACA,wCACA,kCACA,kCACA,+BACA,+BACA,8BACA,6BACA,4BACA,4BACA,mCACA,oCACA,6BACA,8BACA,8BACA,4CACA,4BACA,4BACA,gCACA,gCACA,6BACA,+BACA,sCACA,6BCj7CA,SH0BE,SACA,mBACA,WACA,YACA,gBACA,UACA,kBACA,UAUA,mDAEE,UACA,YACA,SACA,iBACA,gBACA,WI/CJ,WACE,iCACA,kBACA,gBACA,kBTLqB,CSMrB,6DACA,wZAOF,2NCfI,+PAWA,iCAEJ,+BACI,mBACA,mCACI,mCAGR,0BAEI,gBACA,uCAIA,eAUJ,sCACI,UACA,mBAEJ,8BACI,6BAEJ,4BACI,cACA,kBAEJ,qFAEI,cAEJ,kBACI,wFAIA,YAIJ,6CACI,+CAUA,+BAEJ,oCAMA,kGAMA,+BACI,qFAOA,YAEJ,8RAKI,wNAMA,8BACA,CC7GJ,wKAOI,+BAEA,qBACA,oBAEA,iCACA,kBACA,qBAGJ,sBACI,qBACA,iCACA,gBACA,yBAIJ,yBACI,wBAGJ,gBACI,uBzFvBO,CyFwBP,eC/BJ,kBACI,CAGA,sEAMA,CANA,uBAMA,uDACI,sCAGJ,oCxFZsB,CwFclB,6CAIA,oFACI,yBACA,oBACA,yFACI,6BAKR,wFAWA,aAGJ,2GAGA,sRAMA,aACA,0DACA,+DACA,iDCnDJ,aAEI,2CAqBA,sEAEI,8BAYJ,6kBAGA,uqCAWA,oWAIA,oWASI,kYAMA,wXA+CJ,aAEF,6FAMA,wBACE,CChHA,qGAsBA,eAyEA,4BAIA,yBAEJ,6CAEI,kBAIJ,yCACI,oBAEA,oYChIJ,cACI,wBAEA,kBAEA,sBAEA,aACA,cACA,YACA,oCACA,cACA,eACA,qBACA,2BACA,uCACA,qBCdA,oCAGA,+DCEJ,mDAIA,uDAKA,yBACA,iC7FsCuB,e6FrCvB,sB7FyCyB,C6FxCzB,4CACA,gDACA,qCACA,6BACA,yCACA,mCACA,oCACA,kCACA,mCAGA,kDACA,2DACA,8DACA,sDACA,wDACA,6DACA,4DACA,sDACA,uDACA,qDACA,sDACA,wDAGA,qBACA,kCACA,qBACA,+BACA,+BAGA,CAGA,kCAIA,2CAEI,eAIJ,mGACE,eAIF,gHAeA,iBAEI,8BAEA,kBAiDJ,iYAOI","sources":["webpack:///./node_modules/bootstrap/scss/bootstrap.scss","webpack:///./node_modules/bootstrap/scss/_root.scss","webpack:///./node_modules/bootstrap/scss/_reboot.scss","webpack:///./node_modules/bootstrap/scss/_variables.scss","webpack:///./node_modules/bootstrap/scss/vendor/_rfs.scss","webpack:///./scss/base.scss","webpack:///./node_modules/bootstrap/scss/mixins/_hover.scss","webpack:///./node_modules/bootstrap/scss/_type.scss","webpack:///./node_modules/bootstrap/scss/mixins/_lists.scss","webpack:///./node_modules/bootstrap/scss/_images.scss","webpack:///./node_modules/bootstrap/scss/mixins/_image.scss","webpack:///./node_modules/bootstrap/scss/mixins/_border-radius.scss","webpack:///./node_modules/bootstrap/scss/_code.scss","webpack:///./node_modules/bootstrap/scss/_grid.scss","webpack:///./node_modules/bootstrap/scss/mixins/_grid.scss","webpack:///./node_modules/bootstrap/scss/mixins/_breakpoints.scss","webpack:///./node_modules/bootstrap/scss/mixins/_grid-framework.scss","webpack:///./node_modules/bootstrap/scss/_tables.scss","webpack:///./node_modules/bootstrap/scss/mixins/_table-row.scss","webpack:///./node_modules/bootstrap/scss/_forms.scss","webpack:///./node_modules/bootstrap/scss/mixins/_transition.scss","webpack:///./node_modules/bootstrap/scss/mixins/_forms.scss","webpack:///./node_modules/bootstrap/scss/mixins/_gradients.scss","webpack:///./node_modules/bootstrap/scss/_buttons.scss","webpack:///./node_modules/bootstrap/scss/mixins/_buttons.scss","webpack:///./node_modules/bootstrap/scss/_transitions.scss","webpack:///./node_modules/bootstrap/scss/_dropdown.scss","webpack:///./node_modules/bootstrap/scss/mixins/_caret.scss","webpack:///./node_modules/bootstrap/scss/mixins/_nav-divider.scss","webpack:///./node_modules/bootstrap/scss/_button-group.scss","webpack:///./node_modules/bootstrap/scss/_input-group.scss","webpack:///./node_modules/bootstrap/scss/_custom-forms.scss","webpack:///./node_modules/bootstrap/scss/_nav.scss","webpack:///./node_modules/bootstrap/scss/_navbar.scss","webpack:///./node_modules/bootstrap/scss/_card.scss","webpack:///./node_modules/bootstrap/scss/_breadcrumb.scss","webpack:///./node_modules/bootstrap/scss/_pagination.scss","webpack:///./node_modules/bootstrap/scss/mixins/_pagination.scss","webpack:///./node_modules/bootstrap/scss/_badge.scss","webpack:///./node_modules/bootstrap/scss/mixins/_badge.scss","webpack:///./node_modules/bootstrap/scss/_jumbotron.scss","webpack:///./node_modules/bootstrap/scss/_alert.scss","webpack:///./node_modules/bootstrap/scss/mixins/_alert.scss","webpack:///./node_modules/bootstrap/scss/_progress.scss","webpack:///./node_modules/bootstrap/scss/_media.scss","webpack:///./node_modules/bootstrap/scss/_list-group.scss","webpack:///./node_modules/bootstrap/scss/mixins/_list-group.scss","webpack:///./node_modules/bootstrap/scss/_close.scss","webpack:///./node_modules/bootstrap/scss/_toasts.scss","webpack:///./node_modules/bootstrap/scss/_modal.scss","webpack:///./node_modules/bootstrap/scss/_tooltip.scss","webpack:///./node_modules/bootstrap/scss/mixins/_reset-text.scss","webpack:///./node_modules/bootstrap/scss/_popover.scss","webpack:///./node_modules/bootstrap/scss/_carousel.scss","webpack:///./node_modules/bootstrap/scss/mixins/_clearfix.scss","webpack:///./node_modules/bootstrap/scss/_spinners.scss","webpack:///./node_modules/bootstrap/scss/utilities/_align.scss","webpack:///./node_modules/bootstrap/scss/mixins/_background-variant.scss","webpack:///./node_modules/bootstrap/scss/utilities/_background.scss","webpack:///./node_modules/bootstrap/scss/utilities/_borders.scss","webpack:///./node_modules/bootstrap/scss/utilities/_display.scss","webpack:///./node_modules/bootstrap/scss/utilities/_embed.scss","webpack:///./node_modules/bootstrap/scss/utilities/_flex.scss","webpack:///./node_modules/bootstrap/scss/utilities/_float.scss","webpack:///./node_modules/bootstrap/scss/utilities/_interactions.scss","webpack:///./node_modules/bootstrap/scss/utilities/_position.scss","webpack:///./node_modules/bootstrap/scss/utilities/_screenreaders.scss","webpack:///./node_modules/bootstrap/scss/mixins/_screen-reader.scss","webpack:///./node_modules/bootstrap/scss/utilities/_shadows.scss","webpack:///./node_modules/bootstrap/scss/utilities/_sizing.scss","webpack:///./node_modules/bootstrap/scss/utilities/_spacing.scss","webpack:///./node_modules/bootstrap/scss/utilities/_stretched-link.scss","webpack:///./node_modules/bootstrap/scss/utilities/_text.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-truncate.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-emphasis.scss","webpack:///./node_modules/bootstrap/scss/mixins/_text-hide.scss","webpack:///./node_modules/bootstrap/scss/utilities/_visibility.scss","webpack:///./node_modules/bootstrap/scss/_print.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_core.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_larger.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_fixed-width.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_variables.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_list.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_bordered-pulled.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_animated.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_rotated-flipped.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_mixins.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_stacked.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_icons.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/_screen-reader.scss","webpack:///./node_modules/@fortawesome/fontawesome-free/scss/solid.scss","webpack:///./scss/sidebar.scss","webpack:///./scss/setupview.scss","webpack:///./scss/toolbar.scss","webpack:///./scss/forms.scss","webpack:///./scss/plone.scss","webpack:///./scss/loader.scss","webpack:///./scss/listings.scss","webpack:///./scss/senaite.core.scss"],"sourcesContent":["/*!\n * Bootstrap v4.6.2 (https://getbootstrap.com/)\n * Copyright 2011-2022 The Bootstrap Authors\n * Copyright 2011-2022 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`