@CHARSET "UTF-8";
/* Generally GWT styling */

/* remove ms pseudo-element (non-standard) */
INPUT::-ms-clear {
	width : 0;
	height: 0;
}

/* Variables for theme colours of webmap application */
:root {
	/* dp blue */
	--primarycolor:56,128,224;
	/* dp orange */
	--secondarycolor:251,200,6;
	/* top level header background, blackish */
	--toplevelheaderbackground:61,61,61;
	/* top level header color, white */
	--toplevelheadercolor:255,255,255;
	/* grouping panel background, gray */
	--groupingpanel:237,237,237;
	/* grouping panel input background, white */
	--groupingpanelinput:255,255,255;
	/* standard text color */
	--standardtextcolor:61,61,61;
	/* table row background */
	--tablebackground:255,255,255;

	/* md components primary color */
	--md-sys-color-primary: rgb(var(--primarycolor));
	/* md components secondary color */
	--md-sys-color-secondary: rgb(var(--secondarycolor));
	/* md components md-icon font */
	--md-icon-font: 'Material Icons';
	/* md components surface color, hue is same as dp blue */
	--md-sys-color-surface-container-lowest: hsl(214, 100%, 97%);
	--md-sys-color-surface-container-low: hsl(214, 85%, 97%);
	--md-sys-color-surface-container-high: hsl(214, 100%, 95%);
	--md-sys-color-surface-container-highest: hsl(214, 50%, 97%);
	--md-sys-color-secondary-container: var(--md-sys-color-surface-container-high);
}

.noneOutlinedPager {
	outline: none;
}

/* Splitters */
.gwt-SplitLayoutPanel-HDragger, .gwt-SplitLayoutPanel-VDragger {
	background-color: rgb(255,255,255);
}

.gwt-SplitLayoutPanel-HDragger {
	cursor: col-resize;
	background-image: none;
}

.gwt-SplitLayoutPanel-VDragger {
	cursor: row-resize;
}

.dp-GlassPanel {
	background-color: rgba(0,0,0,0.3);
}

.dp-LoadingIndicator {
	cursor: wait;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.dp-LoadingIndicator span {
	color: rgb(255,167,38);
	color: rgb(var(--secondarycolor));
	font-size: 48px;
}

.dp-ShowFormButton {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
}

.dp-NoSelect {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.dp-MapWidgetContainer {
}

.dp-MapWidgetContainer {
       box-sizing: border-box;
       border-width: 2px;
       border-style: solid;
       border-color: rgba(204,204,204,0.5);
}

.dp-MapWidgetContainer:focus-within {
       border-style: solid;
       border-color: blue;
}

/* Popup dialog */

.dp-popupServiceGridPopupFrame {
	max-height: 90vh;
	overflow: hidden;
}

.dp-PopupDialog {
    width: 15vw;
	max-width: 600px;
	min-width: 200px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1em;
	font-size: 14px;
}

.dp-PopupTitle {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.dp-PopupText {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	padding: 10px;
}

.dp-PopupFooterButton {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
}

.floatRight {
	float: right;
}

/* Suggest box */

.gwt-SuggestBox {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 300;
}

.gwt-SuggestBoxPopup {
	margin-left: 0px;
	margin-top: 1px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 5px;
	/* Need to use important here since gwt sets overflow visible on a element level and this blocks border radius. */
	overflow: hidden !important;
}

.gwt-SuggestBoxPopup .item {
	padding: 0px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 300;
}

.gwt-SuggestBoxPopup .suggestPopupTopLeft {
	background: rgb(255,255,255);
}

.gwt-SuggestBoxPopup .suggestPopupTopCenter {
	background-color: rgb(255,255,255);
	border-style: none;
}

.gwt-SuggestBoxPopup .suggestPopupTopRight {
	background: rgb(255,255,255);
}

.gwt-SuggestBoxPopup .suggestPopupMiddleLeft {
	background: rgb(255,255,255);
	border-style: none;
}

.gwt-SuggestBoxPopup .suggestPopupMiddleRight {
	background: rgb(255,255,255);
	border-style: none;
}

.gwt-SuggestBoxPopup .suggestPopupBottomLeft {
	background: rgb(255,255,255);
}

.gwt-SuggestBoxPopup .suggestPopupBottomCenter {
	background-color: rgb(255,255,255);
	border-style: none;
}

.gwt-SuggestBoxPopup .suggestPopupBottomRight {
	background: rgb(255,255,255);
}

.gwt-DatePicker {
	font-family: 'Open Sans', Arial, sans-serif;
}

.dp-MapSearchButton {
	border-style: none;
	background: transparent;
	z-index: 100000000;
	position: absolute;
	top: 10px;
	right: 20px;
}

.dp-MapUserDataPanel {
	border-style: none;
	background: transparent;
	z-index: 100000000;
	position: absolute;
	top: 10px;
	right: 50px;
}

.dp-MapUserDataLabel {
	border-style: none;
	background: transparent;
	font-size: 15px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;	 /* Firefox all */
	-ms-user-select: none;	  /* IE 10+ */
	user-select: none;
}

.dp-MapUserDataImage {
	border-style: none;
	background: transparent;
}

.dp-MapUserDataPopup {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border: none;
	padding: 0px;
	border-top: 1px solid rgb(217,217,217);
}

.dp-MapUserDataPopupMainPanel {

}

.dp-MapUserDataPopupContentPanel {
	background-color: rgb(0,91,130);
	background-color: rgb(var(--primarycolor));
	color: rgb(255,255,255);
}

.dp-MapUserDataPopupButtonPanel {

}

.dp-LegalPopup, .dp-ConfirmDialog {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border: none;
	padding: 12px 12px 12px 12px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
	z-index: 100000002;
}

.dp-PopupTitle .dp-LegalPopup  {
	padding: 5px;
}

.dp-LegalPopup .gwt-Frame {
	border: none;
}

.dp-LegalPopupIframe {
	width: 340px;
	height: 330px;
	border: none;
}

.dp-LegalPopupHTML {
	width: 400px;
}

.dp-LegalPopupContent {
	width: auto;
}

.dp-LegalPopupButtonPanel {
	width: 100%;
	height: 52px;
	float: right;
}

.dp-LegalPopupButtonPanel .gwt-Button {
	border: none;
	background: none;
	text-transform: uppercase;
	color: rgb(255,167,38);
	color: rgb(var(--secondarycolor));
	font-weight: 600;
	font-size: 14px;
	padding: 8px;
	height: 36px;
	float: right;
	border-radius: 2px;
}

.dp-LegalPopupButtonPanel .gwt-Button:hover {
	background: rgba(255,168,38,0.12);
	background: rgba(var(--secondarycolor),0.12);
}

.dp-LegalPopupButtonPanel .gwt-Button:focus {
	background: rgba(255,168,38,0.4);
	background: rgba(var(--secondarycolor),0.4);
	outline: none;
}

.dp-LegalPopupScollPanel {
	padding: 10px;
}

.dp-MessagePopup {
	background-color: rgb(255,255,255);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.dp-MessagePopupPanel {
	padding: 10px;
	overflow-y: auto;
	max-height: 400px;
}

.dp-MessageHeader {
	font-size: 20px;
	font-family: 'Open Sans', Arial, sans-serif;
	color: rgba(64,64,64, 0.75);
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
}

.dp-MessageContent {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.25em;
}


.dp-MessageContent.dp-urgentMessage {
	background-color: rgba(255, 0, 0, 0.25)
}

.dp-MessageDate {
	font-size: 9px;
	color: rgba(64,64,64, 0.75);
}



.dp-ChangePasswordPopup, .dp-MessagePopup {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border: none;
	padding: 0px;
	border-top: 1px solid rgb(217,217,217);
	width: 360px;
	z-index: 100000010;
}

.dp-ChangePasswordPopupMainPanel {
	padding: 40px 40px 28px 40px;
	display: flex;
	flex-direction: column;
}

#confirmPWchange {
	margin-left: 0;
	margin-right: 0;
}

.dp-ChangePasswordPopupContentPanel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	display: flex;
	flex-direction: column;
}

.dp-ChangePasswordPopupButtonPanel {
	width: 100%;
	margin-top: 20px;
}

.dp-ChangePasswordOkButton {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
}

.dp-ChangePasswordCancelButton {
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 600;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
}

.dp-ClearSecretPopup {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border: none;
	padding: 4px 0px;
	border-top: 1px solid rgb(217,217,217);
	width: 350px;
}

.dp-ClearSecretPopupMainPanel {
	padding: 8px;
}

.dp-ClearSecretPopupMainPanel .dp-Title {
	text-align: initial;
}

.dp-ClearSecretPopupContentPanel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 13px;
	padding: 10px;
	margin-bottom: 15px;
}

.dp-ClearSecretPopupButtonPanel {
	float: right;
}

.dp-ClearSecretOkButton {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
}

.dp-ClearSecretCancelButton {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
}

.dp-MapSearchFieldClearButton, .dp-MapSearchFieldSearchIcon {
	color: rgb(211,211,211);
	cursor: pointer;
}

.dp-MapSearchFieldClearButton:active {
	border-style: none;
	color: rgb(0,0,0);
}

.dp-MapSearchFieldClearButton:focus {
	outline: none;
	color: rgb(0,0,0);
}

.dp-MapSearchFieldClearButton:hover {
	color: rgb(0,0,0);
}


.dp-MapSearchFieldButtonIcon {
	color: rgb(211,211,211);
	cursor: pointer;
}

.dp-MapSearchFieldButtonIcon:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	cursor: pointer;
}

.dp-SearchFieldIcon {
	padding: 5px;
}

.dp-SearchFieldIcon:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	cursor: pointer;
}	

.dp-SearchFieldIconContainer {
	display: flex;
	margin-left: 10px;
	padding-left: 5px;
	border-left: 1px solid rgb(211, 211, 211);;
}

.dp-SearchFieldMultiIconContainer {
	display: flex;
}

.dp-MapSearchFieldPanel {
	display: flex;
	width: 350px;
	justify-content: center;
	align-items: center;
}

.dp-MapSearchFieldContainer {
	flex-grow: 1;
}

.hasNavPanelButton .dp-MapSearchFieldContainer {
	border-left: 1px solid rgb(211, 211, 211);
	padding-left: 5px;
	margin-left: 5px;
}

.dp-MapSearchField {
	width: 100%;
	font-size: 14px;
	border-style: none;
}

.dp-MapSearchField:focus {
	outline: none;
}

.dp-MapSearchFieldPopup {
	z-index: 100000001;
	border-radius: 4px;
	margin-top: 2px;
	/* Needs to be !important since PopupPanel sets overflow visible on element level */
	overflow: hidden !important;
}

.dp-MapSearchFieldPopup .item {
	width: 351px;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.dp-MapSearchFieldPopup .item div {
	max-width: 305px;
	overflow: hidden;
    	text-overflow: ellipsis;
}

.dp-MapSearchFieldPopup.wide .item {
	width: 386px;
	padding: 2px 0;
}

.dp-MapSearchFieldPopup.wide .item div {
	max-width: 340px;
}

.dp-MapSearchFieldPopup .item-selected {
	background: rgba(0,91,130,0.25);
	background: rgba(var(--primarycolor),0.25);
}

.dp-MapSearchFieldPopup .dp-SearchPopupIcon {
	height: 100%;
	padding-right: 15px;
	width: 30px;
	display: flex;
	justify-content: center;
}

.dp-MapSearchFieldPopup .subitem {
	font-size: 12px;
	color: rgb(128,128,128);
}

.dp-MapSearchFieldPopup .mdi {
	padding-left: 5px;
	padding-right: 10px !important;
}


.dp-FeatureCardPanelContainer {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 4px;
	margin-top: 1px;
}

.dp-FeatureCardPanel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	display: flex;
    	flex-direction: column;
}

.dp-FeatureCardPanel .gwt-Label {
	padding-right: 5px;
	max-width: 95%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	font-size: 14px;
	font-weight: 600;
}

.dp-FeatureCardPanel .gwt-Label, .dp-FeatureCardPanel .gwt-InlineLabel  {
	vertical-align: baseline;
}

.dp-FeatureCardPanel .dp-FeatureCardButtonGroupRowPanel .gwt-Label, 
.dp-FeatureCardPanel .dp-FeatureCardButtonGroupRowPanel .gwt-InlineLabel {
	display: inline;
}

.dp-FeatureCardPanel .gwt-InlineLabel {
	padding-right: 4px;
}

.dp-FeatureCardDivider {
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: rgb(211,211,211);
}

.dp-FeatureCardActionsPanel {
	display: flex;
    	flex-direction: column;
    	background-color: rgb(255,255,255);
}

.dp-FeatureCardContent {
	text-align: center;
	padding: 5px 10px;
	max-height: 50vh;
	overflow: auto;
}

.dp-FeatureCardTitle {
	color: rgba(var(--toplevelheadercolor),0.95) !important;
    	background-color: rgb(var(--toplevelheaderbackground)) !important;
}

.dp-FeatureCardTitleContainer {
	background-color: rgb(255,255,255);
}

.dp-FeatureCardTitle a {
	color: rgb(128,159,255);
}

#titleLabel {
	font-weight: 600;
}

.dp-FeatureCardDescriptionContainer {
	background-color: rgb(255,255,255);
}

.dp-FeatureCardContent.attention {
	font-size: 13px;
	font-weight: 700;
	color: #ce1400;
}

.dp-FeatureCardButtonPanel {
	width: 100%;
	min-height: 38px;
}

.dp-FeatureCardButtonGroupPanel {
	min-height: 38px;
	background-color: rgb(var(--groupingpanel));
	margin-left: 10px;
    	margin-right: 10px;
}

.dp-FeatureCardButtonRowPanel {
	display: flex;
    	flex-wrap: wrap;
}

.dp-FeatureCardButtonGroupRowPanel {
	display: flex;
    	flex-direction: column;	
}

.dp-FeatureCardButtonGroupRowPanel .dp-FeatureCardButtonCellPanel {
	flex-basis: auto;
	text-align: left;
	flex-direction: row;
	justify-content: left;
	padding: 0px;
	padding-left: 2em;
}

.dp-FeatureCardButtonCellPanel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1 0;
	box-sizing: border-box;
	min-height: 38px;
	color: rgb(var(--primarycolor));
}

.dp-FeatureCardButtonCellPanel {
	cursor: pointer;
}

.dp-FeatureCardButtonCellPanel * {
	cursor: pointer;
}

.dp-FeatureCardButtonCellPanel.disabled {
	color: rgb(211,211,211);
}

.dp-FeatureCardButtonCellPanel.disabled:hover {
	color: rgb(211,211,211);
	cursor: not-allowed;
}

.dp-FeatureCardButtonCellPanel.disabled * {
	cursor: not-allowed;
}

.dp-FeatureCardGroupCellPanel {
	vertical-align: middle;
	display: flex;
    	justify-content: center;
    	align-items: start;
    	margin-left: 10px;
    	margin-right: 10px;
    	background-color: rgb(var(--groupingpanel));
    	color: black;
}

.dp-FeatureCardGroupCellPanel.closed {
	margin-bottom: 10px;
}

.dp-FeatureCardGroupCellPanel:first-child {
	margin-top: 10px;
}

.dp-FeatureCardGroupCellPanel.open + .dp-FeatureCardButtonGroupPanel {
	margin-bottom: 10px;
}

.dp-FeatureCardButtonRowPanel:not(.dp-FeatureCardNearbyPanel) .dp-FeatureCardButtonCellPanel:hover:not(.disabled) {
	background-color: rgb(var(--primarycolor), 0.1);
}

.dp-FeatureCardButtonGroupRowPanel .dp-FeatureCardButtonCellPanel:hover:not(.disabled) {
	background-color: rgb(var(--primarycolor), 0.1);
}

.dp-FeatureCardGroupCellPanel:hover {
	background-color: rgb(var(--groupingpanel));
}

.dp-FeatureCardGroupCellPanel .gwt-Label, .dp-FeatureCardGroupCellPanel .gwt-InlineLabel {
	display: inline-block;
	vertical-align: baseline;
}

.dp-FeatureCardButtonCellPanel .gwt-InlineLabel {
	padding-right: 4px;
}

.dp-FeatureCardButtonCellPanel .fa-arrow-right {
	padding-left: 4px;
}

.dp-FeatureCardGroupIcon {
	padding-left: 15px;
}

.dp-FeatureCardTitleIcon {
	right: 0px;
	position: absolute;
	padding-right: 15px !Important;
	top: 5px;
}

.fa-chevron-up:before, .fa-chevron-down:before {
	cursor: pointer;
}

.fa-edit:before,.fa-pencil-square-o:before {
	cursor: pointer;
}

.open .fa-chevron-down, .closed .fa-chevron-up {
	display: none;
}

.closed .fa-chevron-down, .open .fa-chevron-up {
	display: inline-block;
}

.fa-share-square-o:before {
	cursor: pointer;
}

.fa-trash-o:before {
	cursor: pointer;
}

.dp-FeatureCardNearbyPanelContainer {
	order: -1;
	margin-bottom: 5px;
	background-color: rgb(255,255,255);
}

.dp-FeatureCardNearbyPanel {
	background-color: rgba(var(--primarycolor), 0.1);
}

.dp-FeatureCardNearbyPanel .dp-FeatureCardButtonCellPanel:not(.disabled) {
	color: black;
}

.dp-FeatureCardNearbyInfoPanel {
	text-align: center;
	vertical-align: middle;
	padding: 8px;
}

.dp-FeatureCardNearbyPanel .gwt-Label, .dp-FeatureCardNearbyPanel .gwt-InlineLabel {
	display: inline-block;
	vertical-align: baseline;
}

.dp-EastPanel {
	border-left: 1px solid rgba(0,0,0,0.12);
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
}

.scrollable-x {
	overflow-x: auto;
}

.dp-EastPanelLayout {
	width: 100%;
	height: 100%;
}

.gwt-StackLayoutPanel {
	height: 100%;
}

.gwt-StackLayoutPanel .gwt-StackLayoutPanelContent {
	border: solid 3px rgb(231,231,231);
}

.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader {
	padding: 10px;
	border-style: none;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	background: rgb(255,255,255);
	font-size: 14px;
	font-weight: bold;
	width: 100%;
	height: 100%;
}

.dp-Frame {
	width: 100%;
	height: 100%;
}

.dp-ScrollPanel {
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}

/* Search */

.dp-QueryPanelHeader {
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.12);
	background: rgb(255,255,255);
	color: rgba(0,0,0,0.84);
	font-size: 18px;
	font-weight: bold;
	width: 100%;
	cursor: pointer;
	font-family: 'Open Sans', Arial, sans-serif;
	box-sizing: border-box;
	-moz-user-select: none;
  	-webkit-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}

.dp-QueryPanelHeader.panelHeader {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
}

.dp-QueryPanelHeader .gwt-Label {
	overflow: hidden;
	max-width: 100%;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex-grow: 1;
}

.dp-QueryPanelHeader .gwt-Label.disabled {
	color: rgb(136,136,136);
}

/* Make the text take up 100% of the toolbar */
.dp-QueryPanelHeader > tbody > tr > td > table {
	width: 100%;
	table-layout: fixed;
}

/* Stop the forward-arrow to taking up 50% width */
.dp-QueryPanelHeader > tbody > tr > td {
	width: 100%;
}

/* Make sure that the back-arrow always stays intact */
.dp-QueryPanelHeader > tbody > tr > td > table > tbody > tr > td {
	width: 15px;
}

/* Overwrite so that the back-arrow styling does not apply to the text */
.dp-QueryPanelHeader > tbody > tr > td > table > tbody > tr > td + td {
	width: 100%;
}

.dp-QueryPanelHeaderActive {
	background-color: rgb(61,61,61);
	background-color: rgb(var(--toplevelheaderbackground));
	color: rgba(255,255,255,.95);
	color: rgba(var(--toplevelheadercolor),0.95);
}

.dp-QueryPanelHeader:hover {
	color: rgb(56,128,224);
	color: rgb(var(--primarycolor));
}

.dp-QueryPanelHeaderActive:hover {
	color: rgba(255,255,255,1) !Important;
}

.dp-QueryPanelHeaderIcon {
	font-size: 18px;
	padding-right: 4px;
	flex-grow: 0;
}

.dp-QueryPanelHeaderIcon .material-icon {
	font-size: 28px;
}

.dp-SearchPanel {
	padding: 1em;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 1fr;
	grid-gap: 1em;
	font-size: 13px;
}

.dp-SearchPanel.groupingPanel {
	background-color: rgb(237,237,237);
	background-color: rgb(var(--groupingpanel));
}

.dp-SearchPanel .dp-FormLabel{
	padding: 0;
	font-size: 14px;
}

.dp-IndividualAttributesPanel > div {
	padding: 8px 0;
}

/*--------------------------- Listbox */

.dp-ListBoxWrapper .gwt-TextBox {
	width: 95%;
	cursor: pointer;
}

.dp-ListBoxPopup {
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0
	rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);
	border: none;
	padding: 0px;
	z-index: 10;
}

.dp-ListBox {
	background-color: white;
	z-index: 1000;
	width: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	margin: 0px;
	list-style-type: none;
	padding: 0;
	padding-top: 2px;
	padding-bottom: 2px;
}

.dp-ListBox li {
	height: 15px;
	cursor: pointer;
	min-height: 25px;
	color: rgb(0, 0, 0);
	display: block;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.dp-ListBox li:hover {
	background-color: rgba(0,91,130,0.05);
	background-color: rgba(var(--primarycolor),0.05);
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-ListBox .selected {
	background-color: rgba(0,0,0,0.03);
}

.dp-ListBox li span {
	display: block;
	width: 100%;
	height: 100%;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dp-ListBox li svg {
	display: block;
	width: 100%;
	height: 100%;
	float: left;
}

.dp-ListBox li span input[type=checkbox] + label {
	width: 100%;
	display: block;
} 

/*-----------------*/

.dp-TextBoxWrapper,
.dp-ListBoxWrapper,
.dp-DateBoxWrapper {
	margin-bottom: 8px;
	height: 52px;
	box-sizing: border-box;
	position: relative;
}

.dp-FormSuggestBoxWrapper {
	display: grid;
	box-sizing: border-box;
	position: relative;
	grid-template-areas: 
	"searchTitle icon"
	"searchInput icon";
	grid-template-columns: 1fr auto;
	align-items: center;
	grid-template-rows: 17px 37px;
}

.dp-FormSuggestBoxWrapper .dp-FormLabel {
	grid-area: searchTitle;
}

.dp-FormSuggestBoxWrapper .dp-FormInput {
	grid-area: searchInput;
	padding-bottom: 12px;
}

.dp-FormSuggestBoxWrapper .dp-FormInputIcon {
	grid-area: icon;
}

.dp-TextBoxWrapper.dense {
	margin-bottom: 4px;
	position: relative;
}

.dp-TextBoxWrapper.is-empty:not(.has-focus) div,
.dp-ListBoxWrapper.is-empty:not(.has-focus) div,
.dp-DateBoxWrapper.is-empty:not(.has-focus) div,
.dp-FormSuggestBoxWrapper.is-empty:not(.has-focus) div {
	top: 24px;
	font-size: 14px;
}

.dp-TextBoxWrapper.dense.is-empty:not(.has-focus) div,
.dp-ListBoxWrapper.dense.is-empty:not(.has-focus) div,
.dp-DateBoxWrapper.dense.is-empty:not(.has-focus) div,
.dp-FormSuggestBoxWrapper.dense.is-empty:not(.has-focus) div {
	top: 17px;
	font-size: 13px;
}

.dp-TextBoxWrapper.dense.is-empty:not(.has-focus) div:hover {
	color: rgba(0,0,0,0.84);
	font-weight: bold;
}

.dp-TextBoxWrapper.has-focus,
.dp-ListBoxWrapper.has-focus,
.dp-DateBoxWrapper.has-focus,
.dp-FormSuggestBoxWrapper.has-focus {
	color : rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-TextBoxWrapper.has-focus div,
.dp-ListBoxWrapper.has-focus div,
.dp-DateBoxWrapper.has-focus div,
.dp-FormSuggestBoxWrapper.has-focus div {
	color : rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-TextBoxWrapper input,
.dp-ListBoxWrapper input,
.dp-DateBoxWrapper input,
.dp-FormSuggestBoxWrapper input {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	border-top: none;
	border-right: none;
	border-left: none;
	padding-bottom: 8px;
	padding-top: 24px;
	padding-left: 5px;
	padding-right: 0px;
	position: relative;
	z-index: 1;
	background-color: transparent;
	color: initial;
	cursor: text;
}

.dp-TextBoxWrapper.dense input,.dp-TextBoxWrapper.denseselect{
	font-size: 13px;
	padding-top: 16px;
}

.dp-TextBoxWrapper input:focus,
.dp-ListBoxWrapper input:focus,
.dp-DateBoxWrapper input:focus,
.dp-FormSuggestBoxWrapper input:focus {
	outline: none;
	outline-offset: initial;
	border-bottom-color: rgb(0,91,130);
	border-bottom-color: rgb(var(--primarycolor));
}

.dp-TextBoxWrapper input:invalid,
.dp-ListBoxWrapper input:invalid,
.dp-ListBoxWrapper select:invalid + input,
.dp-DateBoxWrapper input:invalid,
.dp-FormSuggestBoxWrapper input:invalid {
	border-bottom-color: rgb(255,0,0);
	box-shadow: none;
}

.dp-TextBoxWrapper div,
.dp-ListBoxWrapper div,
.dp-DateBoxWrapper div,
.dp-FormSuggestBoxWrapper div {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 12px;
	font-weight: 300;
	display: inline-block;
	position: absolute;
	top: 0px;
	margin-bottom: 6px;
	transition: all .3s ease;
	color: rgba(0,0,0,0.4);
}

.dp-TextBoxWrapper.dense div {
	margin-bottom: 4px;
}

.error {
	color: rgb(255,0,0);
	width: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	padding-left: 8px;
}

.dp-FileField {
	position: relative;
}

.dp-FileField .dp-FileButton {
	float: left;
	display: inline-block;
	min-width: 64px;
	cursor: pointer;
}

.dp-FileField input[type=file] {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	cursor: default;
	display: none;
}

.dp-FileField .dp-FilePathWrapper {
	overflow: hidden;
	padding-left: 10px;
}

.dp-SearchLabel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
}

.dp-SearchListBox {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0px;
	padding: 5px 4px;
	border: 1px solid rgb(204,204,204);
	border-top: 1px solid rgb(153,153,153);
}

.dp-SearchSuggestBox {
}

.dp-SearchSuggestBoxPopup {
	z-index: 10;
}

.dp-SearchSuggestBoxPopup .item {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.dp-SearchSuggestBoxPopup .item-selected {
	background: rgba(0,91,130,0.25);
	background: rgba(var(--primarycolor),0.25);
}

.dp-SearchPanel .dp-StyledCheckBox {
	margin: 0.5em 0;
}


.dp-StyledCheckBox input[type=checkbox] {
	display: none;
}

.dp-StyledCheckBox input[type=checkbox] + label {
	cursor: pointer;
	padding: 0;
	overflow: hidden;
	position: relative;
	color: rgb(var(--standardtextcolor));
}

.dp-StyledCheckBox input[type=checkbox] + label:before {
	content: "\f012c";
	font: normal normal normal 24px/1 "Material Design Icons";
	font-size: 14px;
	border-width: 2px;
	border-style: solid;
	border-color: rgb(0,91,130);
	border-color: rgb(var(--primarycolor));
	border-radius: 2px;
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 8px;
	vertical-align: baseline;
	color: transparent;
	transition: .2s;
	left: 0px;
}

.dp-StyledCheckBox input[type=checkbox]:checked + label:before {
	background-color: rgb(0,91,130);
	background-color: rgb(var(--primarycolor));
	border-color: rgb(0,91,130);
	border-color: rgb(var(--primarycolor));
	color: rgb(255,255,255);
}

.dp-StyledCheckBox input[type=checkbox]:disabled + label:before {
	transform: scale(1);
	border-color: rgba(0,91,130,0.2);
	border-color: rgba(var(--primarycolor),0.2);
}

.dp-StyledCheckBox input[type=checkbox]:checked:disabled + label:before {
	transform: scale(1);
	background-color: rgba(0,91,130,0.2);
	background-color: rgba(var(--primarycolor),0.2);
	border-color: rgba(0,91,130,0.2);
	border-color: rgba(var(--primarycolor),0.2);
}

.dp-StyledCheckBox.dp-StyledIndeterminateCheckBox input[type=checkbox] + label:before {
	content: "\f0374";
}

th.dp-StyledCheckBoxNoLabel, td.dp-StyledCheckBoxNoLabel {
	text-align: center;
}

.dp-StyledCheckBoxNoLabel input[type="checkbox"]{
	position: relative;
	cursor: pointer;
}

.dp-StyledCheckBoxNoLabel input[type=checkbox]:active:before {
	transform: scale(0);
}

.dp-StyledCheckBoxNoLabel input[type="checkbox"]:before {
	transition: .2s;
	z-index: 1;
	content: '';
	position: absolute;
	top: -2.5px;
	left: -2.5px;
	width: 18px;
	height: 18px;
	border-width: 2px;
	border-style: solid;
	border-color: rgb(0,91,130); 
	border-color: rgb(var(--primarycolor));
	border-radius: 2px;
	box-sizing: border-box;
	transition: .2s;
}

.dp-StyledCheckBoxNoLabel input[type="checkbox"]:disabled:before {
	border-color: rgba(0,91,130,0.2);
	border-color: rgba(var(--primarycolor),0.2);
}

.dp-StyledCheckBoxNoLabel input[type="checkbox"]:checked:before {
	content: "\f012c";
	font: normal normal normal 24px/1 "Material Design Icons";
	font-size: 14px;
	background-color: rgb(0,91,130);
	background-color: rgb(var(--primarycolor));
	color: white;
	transition: .2s;
}

.dp-StyledCheckBoxNoLabel.dp-StyledIndeterminateCheckBox input[type="checkbox"]:checked:before {
	content: "\f0374";
}

.dp-StyledCheckBoxNoLabel input[type="checkbox"]:after {
	content: "";
	position: absolute;
	top: -2.5px;
	left: -2.5px;
	width: 18px;
	height: 18px;
	background: rgb(255,255,255);
	cursor: pointer;
	transition: .2s;
}

.dp-CheckBoxContainer {
	color: rgba(0,0,0,.55);
	font-size: 14px;
	padding-left: 5px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.dp-CheckBoxContainer:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-CheckBoxContainer:focus {
	outline: none;
}

.gwt-CheckBox-disabled [type="checkbox"]+label {
	cursor: default;
}

div.dp-CheckBoxContainer {
	padding: 6px 0;
}

div.dp-CheckBoxContainer.dp-FormInput {
	padding: 18px 0 16px;
	margin-bottom: 8px;
	border: none;
}

.gwt-RadioButton {
	cursor: pointer;
	padding: 5px 5px 0 0;
	display: inline-flex;
	align-items: center;
  }

.gwt-RadioButton input[type="radio"] {
	width: 16px;
	height: 16px;
	margin: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	position: relative;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	border: 2px solid rgb(153,153,153);
	transition: 0.2s all linear;
	outline: none;
}

.gwt-RadioButton input[type="radio"]:checked {
	transition: 0.2s all linear;
	border-width: 2px;
	border-style: solid;
	border-color: rgb(0,91,130);
	border-color: rgb(var(--primarycolor));
}

.gwt-RadioButton input[type="radio"]:before {
	content: " ";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	background-color: rgba(255, 255, 255, 0);
	opacity: 0;
	transition: 0.2s all linear;
}

.gwt-RadioButton input[type="radio"]:checked:before {
	background-color:rgb(0,91,130);
	background-color: rgb(var(--primarycolor));
	opacity: 1;
}

.gwt-RadioButton input[type="radio"]:after {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transition: 0.2s all linear;
	display: inline-block;
	content: " ";
	border: 8px solid rgba(255, 255, 255, 0);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
	z-index: -1;
}

.gwt-RadioButton input[type="radio"]:checked:after {
	animation-name: radioCheckFlash;
	animation-duration: 0.4s;
	transition: cubic-bezier(0, 0.7, 1, 0.3);
}

@keyframes radioCheckFlash {
	from {	
		left: 50%;
		top: 50%;
		border-width: 0px;
		background-color:rgba(0,91,130,0.4);
		background-color: rgba(var(--primarycolor),0.4);
	}
	to {}
}

.gwt-RadioButton input[type="radio"]:hover:after {
	border-width: 8px;
	border-style: solid;
	border-color: rgba(0,91,130,0.15);
	border-color: rgba(var(--primarycolor),0.15);
	opacity: 1;
}

.gwt-RadioButton input[type="radio"]:focus:after {
	border-width: 8px;
	border-style: solid;
	border-color: rgba(0,91,130,0.10);
	border-color: rgba(var(--primarycolor),0.10);
	opacity: 1;
}

.gwt-RadioButton label {
	margin: 0 5px 0 10px;
	white-space: nowrap;
}

.dp-RadioButtonContainer {
	display: flex;
	color: rgb(var(--standardtextcolor));
}

.dp-RadioButtonGroupContainer {
	display: flex;
	align-items: center;
}

.dp-RadioButtonGroupContainer .dp-FormLabel {
	padding: 5px 5px 0 0;
	margin-right: 5px;
}

.dp-SearchDateBox {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 600;
}

.dateBoxPopup {
	z-index: 10;
}

.dp-RaisedButton {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-sizing: border-box;
	min-width: 64px;
	border-style: none;
	border-radius: 4px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
	text-transform: uppercase;
	color: rgb(255,255,255);
	background-color: rgb(56,128,224);
	background-color: rgb(var(--primarycolor));
	padding: 8px;
	cursor: pointer;
	transition: all .5s ease;
}

.dp-RaisedButton[disabled], .dp-RaisedButton[disabled]:hover {
	cursor: default;
	color: rgba(0,0,0,0.26);
	background-color: rgba(0,0,0,0.12);
	border: none;
	border-top: 1px solid rgb(217,217,217);
}

.dp-RaisedButton:focus {
	outline: none;
}

.dp-RaisedButton:hover {
	background-color: rgb(56,128,224);
	background-color: rgb(var(--primarycolor));
	box-shadow: 0 2px 2px rgba(0,0,0,0.3), rgba(255,255,255,0.2) 0 0 0 200px inset;
	border-color: rgb(217,217,217);
}

.dp-RaisedButton .gwt-Button:hover {
	border-color: rgb(217,217,217);
}

.dp-RaisedButton:active {
	border-style: none;
	border-radius: 4px;
	border-top: 1px solid rgb(217,217,217);
	box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
}

.gwt-ListBox.dp-RaisedButton {
	-webkit-appearance: none;
}

.dp-ClearButton {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-sizing: border-box;
	min-width: 64px;
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
	text-transform: uppercase;
	padding: 8px;
	cursor: pointer;
	transition: all .5s ease;
}

.dp-ClearButton:focus {
	outline: none;
}

.dp-ClearButton:hover {
	background: rgba(153,153,153,0.12);
	border-color: rgb(217,217,217);
}

.dp-ClearButton:active {
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
}

.dp-ClearButton[disabled], .dp-ClearButton[disabled]:hover  {
	border: none;
	background: rgb(255,255,255);
	border-top: 1px solid rgb(217,217,217);
}

.dp-SearchResult {
	background-color: rgb(var(--tablebackground)) !important;
}

#gridContainer .dp-SearchResult {
	position: absolute !important;
	inset: 0px;
}

.dp-SearchResultTable {
}

.dp-SearchResultTableHeader {
	border-bottom: 1px solid rgb(217,217,217);
}

.dp-SearchResultTableFooter {
	border-top: 1px solid rgb(217,217,217);
}

.dp-SearchResultRowCountLabel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
	cursor: default;
	color: rgb(var(--standardtextcolor));
	padding: 3px 8px;
	bottom: 0px;
	border-radius: 5px;
    	margin: 3px 0px;
    	right: 0px;
    	background-color: rgb(var(--groupingpanel));
    	position: absolute;
}

.dp-SearchResultTableFooterCell {
	font-size: 13px;
	font-weight: normal;
	cursor: default;
	display: flex;
	justify-content: flex-end;
	color: rgb(var(--standardtextcolor)) !important;
	padding: 3px !important;
}

.dp-SearchResultTableCell {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: rgb(var(--standardtextcolor)) !important;
}

.dp-SearchResultTableCell div {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	min-height: 15px;
}

.dp-SearchResultTableCell div:focus {
	white-space: normal;
	overflow: inherit;
}

.dp-SearchResultTableCell input[type="checkbox"] {
	vertical-align: top;
}

.dp-SearchResultTableHeaderCell {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	cursor: default;
	color: rgb(var(--standardtextcolor)) !important;
}

.dp-SearchResultTableHeaderCell:focus {
	outline: none;
}

.dp-SearchResultTableIconCell {
	padding-right: 6px !important;
	color: rgb(var(--primarycolor)) !important;
	cursor: pointer;
}

.dp-SearchResultIconTable {
	padding-right: 15px;
}

.dp-SearchPanelColumn {
	display: grid;
	gap: 1em;
	align-items: center;
}

.dp-SearchPanelColumnContainer {
	display: grid;
	gap: 1em;
}

.dp-SearchPanelColumn.dp-SearchPanelSingleColumn {
	grid-template-columns: 1fr;
}

.dp-SearchPanelColumn.dp-SearchPanelMultiColumn {
	grid-template-columns: 1fr 1fr;
}

.dp-SearchResultTableGroupCell {
	font-weight: 600;
	font-size: 14px;
	padding: 5px !important;
}

.dp-SearchResultTableGroupRow {
	background-color: rgb(61,61,61);
	background-color: rgb(var(--toplevelheaderbackground)) !important;
}

.dp-SearchResultTableGroupCell {
	color: rgba(255,255,255,.95) !important;
	color: rgba(var(--toplevelheadercolor),0.95) !important;
}

.dp-SearchResultTableGroupRow.redText .dp-SearchResultTableGroupCell div {
	color: red;
}

.dp-SearchResultTableGroupRow.greenText .dp-SearchResultTableGroupCell div {
	color: green;
}

.dp-SearchResultTableGroupRow.level1 .dp-SearchResultTableCell div {
	margin-left: 10px;
}

/* do we want a hover style? */
/* .dp-SearchResultTableExpandedGroupRow:hover { */
/* 	background-color: rgba(0,0,0,0.4); */
/* } */

.dp-SearchResultTableGroupCellIcon {
	padding-right: 10px;
}


.dp-QueryButtonPanel button, .dp-QueryButtonPanel select {
	margin-right: 5px;
}

.dp-QueryTableButtonPanel {
	display: flex;
	font-size: 14px;
}

.dp-QueryTableButtonPanel .dp-StyledCheckBox {
	padding: 5px 5px 0 0;
    	margin-right: 5px;
}

/* Forms */

.dp-FormPanel {
	padding: 4px;
}

.dp-FormPanelFieldset {
	padding: 6px;
	min-width: 250px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.dp-FormPanelFieldset.hasHeader {
	padding-top: 0px;
}

.dp-FormHeaderTitle {
	padding-left: 12px;
	text-transform: uppercase;
}

.dp-FormButtonContainer {
	border-top: 1px solid rgba(0,0,0,0.12);
}

.dp-FormButtonPanel {
	width: 100%;
	border-top: 1px solid rgba(0,0,0,0.12);
	background-color: rgb(255,255,255);
	min-width: 250px;
	gap: 5px;
}

.dp-FormButtonPanel tr {
	display: flex;
	flex-direction: row;
}

.dp-FormButtonPanel td {
	width: auto;
	display: inline;
}

.dp-FormColumnContainer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1em;
}

.dp-ChartColumnContainer {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.dp-FormColumn fieldset {
	border: none;
	padding: 0;
}

.dp-FormColumn .dp-SearchPanel{
	padding: 0;
}

.dp-FormColumn .dp-SearchPanel .dp-FormPanel {
    padding: 4px 0px;
}

.dp-FormColumn legend {
	padding-top: 10px;
	cursor: default;
}

.dp-FormColumn.dp-ColorSpan {
	width: 50%;
	right: 10%;
}

.dp-FormContainer {
	box-sizing: border-box;
	width: 100%;
	padding: 0px;
	border: none;
	margin: 0px;
}

.dp-FormContainer .dp-FormPanel {
	padding: 0;
}

.dp-FormContainer > div > div.dp-FormColumn {
	margin-bottom: 10px;
}

.dp-LegendPanel {
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}

.dp-LegendLabel {
	padding: 0 !important;
}

legend {
	font-weight: 600;
	font-size: 14px;
	cursor: default;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	background-color: rgb(var(--toplevelheaderbackground));
	color: rgba(var(--toplevelheadercolor),0.95);
	border-bottom: 1px solid rgb(217,217,217);
}

.dp-LegendLabelContainer .errorIcon {
      	margin-left: 10px;
      	font-size: 0.65em;
	display: none;
	color: rgb(255,0,0);
}

.dp-LegendLabelContainer .errorIcon > i:last-of-type {
	color: white;
	font-size: 1.5em;
}

.dp-FormContainer:invalid legend .dp-LegendLabelContainer .errorIcon,
.dp-FormContainer.invalid legend .dp-LegendLabelContainer .errorIcon {
	display: flex;
}

.dp-FormButton {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-sizing: border-box;
	min-width: 64px;
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	background: rgb(255,255,255);
	text-transform: uppercase;
	padding: 8px;
	cursor: pointer;
	transition: all .5s ease;
}

.dp-FormButton:focus {
	outline: none;
}

.dp-FormButton:hover {
	border-color: rgb(217,217,217);
	background-color: rgba(0,91,130,0.05);
	background-color: rgba(var(--primarycolor),0.05);
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-FormButton:active {
	border-style: none;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	box-shadow: 0 2px 2px 1px rgba(0,0,0,0.3);
}

.dp-FormButton.dp-ContainerChild {
	display: unset;
}

.dp-FormButton .dp-FormButtonText {
	padding-left: 5px;
}

.dp-FormInput {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
  	border-bottom: 1px solid;
	border-color: rgba(128,128,128, 0.75);
}

.dp-OutlinedFormInput {
	
}

input.dp-FormInput, select.dp-FormInput {
	height: 30px;
}

input.dp-FormInput.outlined {
	border: 1px solid;
	border-color: rgba(128,128,128, 0.75);
	height: unset;
}

textarea.dp-FormInput {
	border: 1px solid;
	border-color: rgba(128,128,128, 0.75);
}

.dp-FormButton[disabled] {
	cursor: default;
	color: rgba(0,0,0,0.26);
}

.dp-FormButton[disabled]:hover {
	background: none;
	border: rgba(0,0,0,0.12);
	border-top: 1px solid rgb(217,217,217);
}

/*Design for phones with a screen width width less than 350px*/
@media (max-width: 350px) {
	.dp-FormPanelFieldset {
		min-width: 100%;
	}
}

.dp-FormInputIcon {
	position: relative;
	right:20px;
	width: 5px;
	color: rgba(0,0,0,0.4);
	pointer-events: none;
}

.dp-ListBoxWrapper.has-focus .dp-FormInputIcon,
.dp-DateBoxWrapper.has-focus .dp-FormInputIcon,
.dp-FormSuggestBoxWrapper.has-focus .dp-FormInputIcon {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-FormCopyButton {
	margin-top: 13px;
    	margin-bottom: 10px;
}

.dp-FormInputNowIcon {
	position: absolute;
	right:20px;
	width: 5px;
	color: rgb(255,167,38);
	color: rgb(var(--secondarycolor));
}

.dp-FormInputNowIcon:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-FormInputLinkIcon {
	position: absolute;
	right:20px;
	width: 5px;
	color: rgb(255,167,38);
	color: rgb(var(--secondarycolor));
}

.dp-FormInputLinkIcon:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	cursor: pointer;
}

.dpInputField-IconButton {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dpInputField-IconButton:hover {
	cursor: pointer;
}

.dpInputField-IconButton span {
	font-size: 1.4em;
}

.dp-FlatButton {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
	min-width: 64px;
	border-style: none;
	border-radius: 2px;
	background: none;
	text-transform: uppercase;
	padding: 8px;
	color: rgb(56,128,224);
	color: rgb(var(--primarycolor));
	margin-right: 8px;
	box-shadow: none;
	cursor: pointer;
	transition: all .5s ease;
}

.dp-FlatButton:hover {
	background: rgba(56,128,224,0.12);
	background: rgba(var(--primarycolor),0.12);
}

.dp-FlatButton[disabled] {
	color: rgba(0,0,0,0.26);
}

.dp-FlatButton[disabled]:hover {
	background: none;
	border: none;
}

.dp-FlatButton:focus {
	outline: none;
}
.dp-FlatButton:active {
	border: none;
	background: rgba(56,128,224,0.12);
	background: rgba(var(--primarycolor),0.12);
}

.dp-FlatButton .gwt-InlineLabel {
	padding-left: 5px;
	vertical-align: middle;
}

.gwt-TextBox-readonly.dp-FormInput {
	background-color: rgba(230,230,230, 0.25);
	border-bottom-style: dashed;
	border-bottom-color: rgba(128,128,128, 0.75) !important;
	cursor: default;
}

.gwt-TextArea-readonly.dp-FormInput,  {
	background-color: rgba(230,230,230, 0.25);
	border-bottom-style: dashed;
	border-bottom-color: rgba(128,128,128, 0.75) !important;
	cursor: default;
}

.gwt-DateBox-readonly.dp-FormInput {
	background-color: rgba(230,230,230, 0.25);
	border-bottom-style: dashed;
	border-bottom-color: rgba(128,128,128, 0.75) !important;
	cursor: default;
}

.dp-FormLabel.readonly {
	background-color: rgba(230,230,230, 0.25);
	cursor: default;
}

readonly {
	background-color: red;
}

.dp-FormInput:valid {
}

.dp-FormInput:focus {
	outline: none;
	/*Added when reverting the form style */
	border-color: rgb(0,91,130);
	border-color: rgb(var(--primarycolor));
}

.dp-FormLabel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 12px;
	padding-top: 5px;
	padding-left: 0;
	/*Added when revering the form style*/
	padding-bottom: 2px;
	width: 100%;
	color: rgb(var(--standardtextcolor));
}

.dp-FormLabel.dp-FormTitleLabel {
	font-size: 14px;
	color: black;
    	font-weight: 600;
    	padding-bottom: 8px;
    	padding-top: 8px;	
}

.dp-FieldContainer {
    display: flex;
    flex-direction: column-reverse;
}

.dp-FormInput:invalid + .dp-FormLabel {
    color: red;
}

.dp-FormInput:invalid + .dp-FormLabel:after {
    content: '*';
}

.dp-FormResultLabel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 12px;
	padding-left: 10px;
	padding-right: 10px;
    	padding-top: 7px;
    	color: rgb(var(--standardtextcolor));
}

.dp-FormResultLabel.readonly {
	background-color: rgba(230,230,230, 0.25);
	cursor: default;
}

.dp-FormListBox, .dp-FormDateBox {
	width: 100%;
	border-radius: 0px;
	background-color: rgb(255,255,255);
	cursor: pointer;
}

.dp-FormSuggestBox {
	width: 100%;
}

.dp-FormSuggestBoxPopup {
	z-index: 100;
	overflow-y: auto !important;
}

.dp-FormSuggestBoxPopup .item {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
}

.dp-FormSuggestBoxPopup .item-selected {
	background: rgba(0,91,130,0.25);
	background: rgba(var(--primarycolor),0.25);
}

.dp-FormListBox:focus, .dp-FormDateBox:focus, .dp-FormSuggestBox:focus {
	border-bottom-color: rgb(0,91,130);
	border-bottom-color: rgb(var(--primarycolor));
}

.dp-FormInput:invalid {
	border-bottom: 1px solid rgb(255,0,0);
}

.dp-FormCheckBox {
	padding-top: 20px;
	padding-bottom: 15px;
	font-size: 14px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 6px;
}

.dp-FormCheckBox.gwt-CheckBox-disabled {
	background-color: rgba(230,230,230, 0.25);
}

.dp-FormCheckBoxWithLink {
	display: inline-flex;
}

.dp-FormCheckBoxLink {
    font-size: 12px;
}

input[type='checkbox']:invalid + .dp-FormCheckBoxText {
    color: red;
}

input[type='checkbox']:invalid + .dp-FormCheckBoxText:after {
    content: '*';
}

.dp-FormTablePanel {
	background-color: rgb(var(--tablebackground)) !important;
}

.dp-FormTable {
}

.dp-FormTableHeader {
	border-bottom: 1px solid rgb(217,217,217);
}

/* For calculating column widths using ex unit */
.dp-FormTableHeader colgroup col, .dp-FormTableFooter colgroup col, .dp-FormTable colgroup col {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
}

.dp-FormTableFooter {
}

.dp-FormTableFooterCell {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	cursor: default;
}

.dp-FormTableCell {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
}

.dp-FormTableNumberCell {
	text-align: right;
}

td.dp-FormTableHTMLCell {
	white-space: normal;
}

.dp-FormTableCell div {
	min-height: 15px;
}

.dp-FormTableCell div input {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 90%;
}

.dp-FormTableNumberCell div input {
	text-align: right;
}

.dp-FormTableCell div input:invalid {
	border: 1px solid rgb(255,0,0);
}

.dp-FormTableCell div input:invalid + input[disabled]{
	border: 1px solid rgb(255,0,0);
}

.dp-FormTableCell div input:invalid + div.invalidMarker{
	color: rgb(255,0,0);
}

.dp-FormTableCell div input:focus {
	white-space: normal;
	overflow: inherit;
}

.dp-FormTableCell select:invalid {
	border: 1px solid rgb(255,0,0);
	background-color: white;
}

.dp-FormTableClickableCell {
	cursor: pointer;
}

.dp-FormTableRowRed td {
	border-color: rgb(255,0,0);
	background-color: rgba(255,0,0,0.1);
}

.dp-FormTableRowGreen td {
	border-color: rgb(192,255,192);
	background-color: rgb(192,255,192);
}

.dp-FormTableRowBold td {
	font-weight: bold;
	
}

.notAllowed td {
	cursor: not-allowed;
}

.dp-FormTableHeaderCell {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 10px;
	font-weight: 600;
	cursor: default;
}

.dp-FormTableHeaderCell:focus {
	outline: none;
}

.dp-FormTableHeaderNumberCell {
	text-align: right;
}

th.dp-FormTableHeaderNumberCell {
	text-align: right;
}

.dp-FormTableGroupCell {
	font-weight: 600;
	font-size: 14px;
	padding: 5px !important;
}

.dp-FormTableGroupRow.redText .dp-FormTableGroupCell div {
	color: red;
}

.dp-FormTableGroupRow.greenText .dp-FormTableGroupCell div {
	color: green;
}

.dp-FormTableGroupRow.level1 .dp-FormTableCell div {
	margin-left: 10px;
}

.dp-FormTableGroupCellIcon {
	padding-right: 10px;
}

.dp-DataViewList .dp-EmptyWidget {
	cursor: auto;
	font-size: 12px;
	font-style: italic;
	color: rgb(102,102,102);
	margin: 0.5em 0 0.5em;
}

.dp-DataViewItem {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	margin-top: 3px;
	background-color: rgb(214,255,203);
	max-width: 75%;
	border-radius: 5px;
	padding: 5px;
}

.dp-DataViewItemRow {
	display: block;
	word-break: break-all;
}

.dp-DataViewItem.right {
	margin-left: auto;
	background-color: rgb(255,255,203);
}

.dp-MapLayersPopup {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border: none;
	padding: 0px;
	border-top: 1px solid rgb(217,217,217);
}

.dp-MapLayersPopupMainPanel {
	font-family: 'Open Sans', Arial, sans-serif;
}

.dp-MapLayersPopupLayerPanel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: bold;
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}

.dp-MapLayersPopupLayerSwitcherPanel {
	padding-bottom: 5px;
}

.dp-MapLayersPopupLayerSwitcherColumnsPanel {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
}

.baselayer {
	cursor: default;
}

.dp-ProgressPanel {
	background: rgb(255,255,255);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	border-radius: 5px;
	padding: 3px 8px;
}

.dp-ProgressIcon {
	float: left;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 2px;
}

.dp-ProgressText {
	padding-left: 5px;
}

.dp-InfoPanel {
	background: rgb(50,50,50);
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-weight: 400;
	z-index: 5;
}

.dp-InfoText {
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
	color: white;
	box-sizing: border-box;
	display: inline-block;
	white-space: nowrap;
}

.dp-BaseLayerSwitcherWrapper {
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-radius: 2px;
	border-top: 1px solid rgb(217,217,217);
	background-color: rgba(255,255,255,.95);
	height: 42px;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: 7px;
	z-index: 100000000;
	position: absolute;
}

.dp-BaseLayerSwitcher {
	-moz-appearance: none;
	border-style: none;
	background: transparent;
	font-family: 'Open Sans', Arial, sans-serif;
	cursor: pointer;
	z-index: 1001;
}

.dp-BaseLayerSwitcher.inMap {
	font-size: 16px;
	font-weight: 600;
	padding: 2px 4px;
	margin-top: 7px;
}

.dp-BaseLayerSwitcher.inNav {
	font-size: 14px;
}

.dp-BaseLayerSwitcher.inNav:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-BaseLayerSwitcher:focus {
	outline: none;
	outline-offset: initial;
}

.dp-AppBarParent {
	width: 100%;
}

.dp-AppBar {
	top: 0px;
	left: 0px;
	margin: 10px;
	position: absolute;
}

.dp-AppBarContent {
	display: flex;
	align-items: center;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	box-sizing: border-box;
	border-top: 1px solid rgb(217,217,217);
	background-color: rgb(255,255,255);
}

.dp-MapSearchFieldPanelWrapper {
	width: 100%;
}

.dp-SearchFieldPanel {
	border-radius: 4px;
	padding: 5px 10px;
}

.dp-SearchFieldPanel .dp-AppBarButton {
	padding: 0 7px 0 1px;
}

.dp-AppBarButton {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.dp-AppBarButton:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	cursor: pointer;
}

.dp-AppBarButton:hover .dp-Tooltip {
	visibility: visible;
	color: rgb(255,255,255);
}

.dp-AppBarButton .dp-NavMenuIcon .material-icons {
	font-size: 22px;
}

.dp-QueryPanelExpander {
	border-radius: 4px 0 0 4px;
}

.dp-AppBarButton .material-icons {
	font-size: 15px;
}

.dp-SearchButton {
	padding-left: 5px;
}

.dp-SearchButton.material-icons:before {
	font-family: 'Material Icons';
	content: "more_vert";
	font-size: 20px;
}

.dp-Tooltip {
	position: absolute;
	margin-top: 30px;
	left: 0%;
	font-size: 10px;
	visibility: hidden;
	padding: 5px 8px 5px 8px;
	color: rgb(255,255,255);
	background-color: rgb(97,97,97);
	opacity: 0.9;
	font-family: 'Open Sans', Arial, sans-serif;
}

.dp-AppBarRightButtonPadding .dp-MapSearchFieldPanel {
	width: 350px;
	box-sizing: border-box;
}

@media screen and (max-width: 450px) {
	.dp-AppBarRightButtonPadding .dp-MapSearchFieldPanel {
		width: 100%;
	}
}

.dp-NavPanelContainer {
	box-shadow: 0 0 38px rgba(0,0,0,0.3);
}

.dp-NavPanel {
	background: rgb(255,255,255);
	z-index: 100000010;
}

.dp-ProductIcon:before {
	font-size : 1.5em;
	line-height: 1;
	font-family : "Font Awesome 6 Free";
	padding-right: 8px;
}

.bottomBorder {
	border-bottom: 1px solid rgb(217,217,217);
}

.dp-NavPanelItem {
	padding-bottom: 15px;
	padding-top: 15px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	color: rgba(0,0,0,.55);
}

.dp-NavPanelContactIcon {
	padding-bottom: 15px;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	float: left;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	color: rgba(0,0,0,0.84);;
}

.dp-NavPanelContactItem {
	line-height: 1.5;
	padding-bottom: 15px;
	padding-top: 10px;
	width: 75%;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	color: rgba(0,0,0,0.84);;
}

.dp-NavPanelContactElement {
	display: flex;
}

.dp-NavPanelContactCustLogo {
	max-width: 80%;
	padding-left: 15px;
	padding-bottom: 10%;
	padding-top: 10%;
}

.dp-NavPanelItem * {
	cursor: pointer;
}

.dp-NavPanelItem:focus {
	outline: none;
}

.dp-NavPanelItem.userItem {
	background-color: rgb(61,61,61);
	background-color: rgb(var(--toplevelheaderbackground));
	color: rgba(255,255,255,.95);
	color: rgba(var(--toplevelheadercolor),0.95);
	font-weight: bold;
}

.dp-NavPanelItem.userItem:hover span {
	color: rgb(255,255,255);
}

.dp-NavPanelItem .gwt-InlineHTML {
	display: inline-block;
}

.dp-NavPanelItem.dp-ProductItem input[type=radio] {
	display: none;
}

.dp-NavPanelItem.dp-ProductItem input[type=radio]:checked ~ label {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-NavPanelItem.dp-ProductItem input[type=radio]:checked ~ span {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-NavPanelItem.dp-ProductItem {
	padding-top: unset;
}

.dp-NavPanelItem.dp-ProductItem .dp-NavPanelItem {
	padding-bottom: unset;
	padding-top: 5px;
}

.dp-NavPanelItem label, .dp-OverlayFilterContainer label {
	padding-left: 8px;
	font-size: 14px;
	font-family: 'Open Sans', Arial, sans-serif;
	cursor:pointer;
}

.paddingLeft {
	padding-left: 15px;
}

.dp-NavPanelItem label.dp-ProductIcon {
	padding-left: 0px;
}

.dp-NavPanelItem span:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-NavPanelItem.blue span:hover {
	color: rgb(255,255,255);
}

.dp-NavPanelItem.blue:hover {
	color: rgb(255,255,255);
}

.dp-NavPanelItemLabel {
	color: rgba(0,0,0,0.84);
}

.dp-NavPanelItemLabel:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-NavPanelItem:hover  .dp-NavpanelGroupLabel{
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dp-NavPanelItem.hasFilter {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
}

.dp-NavPanelItem.hasFilter .filtersIconWrapper {
	display: grid;
	grid-template-columns: auto auto;
	gap: 0.25em;
}

.dp-NavPanelGroupLabel {
	color: rgba(0,0,0,0.84);
	font-weight: bold;
	padding-left: 0px;
}

.dp-NavPanelGroupIcon {
	right: 0px;
	position: absolute;
	padding-right: 15px;
	color: rgba(0,0,0,.55);
}

.blue .dp-NavPanelGroupIcon {
	color: rgba(255,255,255,.95);
}

.dp-NavPanelLeftIcon {
	position: absolute;
	right: 40px;
	font-size: 20px !important;
	color: rgba(0,0,0,.55);
	display: none !important;
}

.dp-NavPanelItem:hover .dp-NavPanelLeftIcon {
	display: inline-block !important;
}

.dp-StyledCheckBox+.dp-NavPanelLeftIcon {
	right: 15px;
}

.dp-NavPanelItemImage {
	padding-left: 34px;
}

.dp-OverlayItem:hover .dp-Icon span {
	color: unset;
}

.dp-OverlayItem .dp-Icon {
	justify-self: right;
}

.dp-OverlayFilterContainer {
	padding: 1em;
	padding-left: 3em;
	font-size: 0.75em;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1em;
	background-color: rgb(var(--groupingpanel));
	border-bottom: 1px solid rgba(0,0,0,0.2);
	overflow: hidden;
}

.dp-SubtypesFilterWrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	background-color: white;
	border-radius: 4px 4px 0 0;
	border-bottom: 1px solid;
	border-color: rgba(0,0,0,0.2);
	align-items: center;
	padding: 0.75em 1em;
}

.dp-SubtypesFilterWrapper .filterContainer {
	grid-column: 1/-1;
}

.dp-SubtypesFilterPanel {
	display: grid;
	gap: 0.75em;
	padding-top: 1em;
}

.dp-SubtypesFilterPanel .gwt-CheckBox {
	overflow: hidden;
}

.dp-SubtypesFilterPanel label {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
}

.dp-ColorChoserCanvas {
	cursor: crosshair;
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
    	margin-bottom: 24px;
    	display: block;
    	border: 1px solid rgba(0,0,0,0.2);
}

.dp-ColorChoserCanvas:focus {
	outline: none;
}

.dp-ColorSpan {
	width : 25%;
	min-width: 50px;
	right: 20px;
	position: absolute;
	height: 16px;
	border: 1px solid rgba(0,0,0,0.2);
	margin-top: 2px;
}

.dp-PredefinedColorSpan {
	width: 16px;
    	height: 16px;
    	border: 1px solid rgba(0,0,0,0.2);
    	margin-top: 2px;
    	margin-left: 5px;
    	display: inline-block;
}

.dp-StateSettingsPanel label {
	width: 50%;
	text-overflow: ellipsis;
}

.bold .dp-NavPanelItemLabel {
	font-weight: bold;
}

.dp-ProductClassItem {
	padding-left: 5px;
}

/* Range input */
.dp-RangeContainer {
	box-sizing: border-box;
	width: 100%;
	padding: 0px 20px 0px 0px !important;
	cursor: default;
}

.dp-RangeContainer input {
	position: relative;
	z-index: 1;
}

.dp-RangeBackground {
	background-color: rgb(220, 220, 220);
	height: 3px;
	width: 100%;
	padding:0 !important;
	cursor: default;
	top: -7px;
	position: relative;
}

.dp-RangeFill {
	position: relative;
	top: 0px;
	background-color: rgb(251,200,6);
	background-color: rgb(var(--secondarycolor));
	padding:0 !important;
	height: 100%;
	cursor: default;
}

/*Target Chrome*/
@supports (-webkit-appearance:none) {
    .dp-RangeContainer input {
        top: 7px;
    }
}

/*Target fireFox*/
_:-moz-tree-row(hover), .dp-RangeContainer input {
	top: 9px;
}

/*Target Edge*/
@supports (-ms-ime-align: auto) {
	.dp-RangeContainer input {
			top: 8px;
	}
}

/*Target IE */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.dp-RangeContainer .dp-RangeBackground {
		position: relative;
		top: -42px;
	}
	.dp-RangeContainer {
		height: 53px;
	}
}

input[type=range] {
	/*removes default webkit styles*/
	-webkit-appearance: none;
	outline: none;
	background: none;
	margin: 0;
	height: 20px;
	cursor: pointer;
}

input[type=range]:focus {
	outline: none;
	background: none;
}

input[type=range]::-webkit-slider-runnable-track {
	height: 3px;
	border: none;
	z-index: 1000;
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: rgb(251,200,6);
	background-color: rgb(var(--secondarycolor));
	cursor:-webkit-grab;
	margin-top:-4px;
}

input[type=range]:active::-webkit-slider-thumb {
	height: 16px;
	width: 16px;
	cursor:-webkit-grabbing;
	margin-top:-6px;
}

input[type=range]::-moz-range-track {
	height: 3px;
	background: none;
	border: none;
}

input[type=range]::-moz-range-progress {
	background-color: none;
}

input[type=range]::-moz-range-thumb {
	border: none;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: rgb(251,200,6);
	background-color: rgb(var(--secondarycolor));
	cursor: grab;
}

input[type=range]:active::-moz-range-thumb {
	height: 16px;
	width: 16px;
	cursor: grabbing;
}

input[type=range]::-moz-focus-outer {
	border: 0;
}

input[type=range]::-ms-track {
	height: 1px;
	/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
	background: none;
	/*leave room for the larger thumb to overflow with a transparent border */
	border-color: transparent;
	border-width: 6px 0;
	/*remove default tick marks*/
	color: transparent;
}

input[type=range]::-ms-fill-lower {
	background: none;
	border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
	background: none;
	border-radius: 10px;
}

input[type=range]::-ms-thumb {
	margin-top: 1px;
	border: none;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background-color: rgb(251,200,6);
	background-color: rgb(var(--secondarycolor));
	cursor: grab;
}

input[type=range]:active::-ms-thumb {
	margin-top: -1px;
	height: 16px;
	width: 16px;
	cursor: grabbing;
}

input[type=range]:focus::-ms-fill-lower {
	background: none;
}

input[type=range]:focus::-ms-fill-upper {
	background: none;
}

input[type=range]::-ms-tooltip {
	display: none;
}

input[type=color] {
	border-style: none;
	background-color: rgb(255,255,255);
	outline: none;
}

/* Regulations popup */

.regulations {
	font-family: 'Open Sans', Arial, sans-serif;
}

.regulations p {
	font-size: 13px;
}

.regulations h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0px;
}

.regulations li {
	font-size: 13px;
	margin-left: -0.5em;
}

.regulations a, .regulations a:visited {
	color: rgb(255,167,38);
	color: rgb(var(--secondarycolor));
	text-decoration: none;
}

.regulations a:hover {
	text-decoration: underline;
}

.dp-Title {
	width: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	color: rgba(64,64,64, 0.75);
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
	cursor: default;
}

.dp-Logo {
	width: auto;
	height: 36px;
	margin-left: 8px;
	float: left;
}

.error {
	color: rgb(213,0,0);
	width: 100%;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: left;
	padding: 8px 0px;
}

.floatRight {
	float: right;
}

.width100 {
	width: 100%;
	box-sizing: border-box;
	height: auto;
}

.dp-ReportLink {
	display: inline-block;
	width: 350px;
}

.dp-AboutContainer{
	font-size: 13px;
	padding-right:12px;
}

.dp-AboutPanel {
	font-size: 13px;
	padding-left: 12px;
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.dp-AboutPanel p:first-child {
	font-weight: bold;
}

.olControlMousePosition {
	padding: 3px 8px;
	border-radius: 5px;
	margin: 3px 0px;
	right: 0px;
	background-color: rgba(255, 255, 255, 0.6);
}

/* To enable variable flexbox-sizes and allow overflow etc, this class should be applied to the div which is attatched to 
   the easpanel since it receives a fixed size. */
.dp-EastPanelWrapper {
	overflow: auto;
}

/* Cookie information dialog */

.dp-CookieContainer {
	width: 100%;
	display: grid;
	grid-template-columns: auto auto;
	gap: 4em;
	align-items: center;
	justify-content: center;
	position: fixed;
	box-sizing: border-box;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
	left: 0px;
	bottom: 0px;
	background: rgb(255,255,255);
	padding: 20px 4em;
	z-index: 10;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
}

/* Phones */
@media screen and (max-width: 767px) {
	.dp-CookieContainer {
		grid-template-columns: 1fr;
		width: 80%;
		left: 50%;
		top: 40%;
		transform: translateX(-50%) translateY(-50%);
		box-shadow: 0 2px 6px rgba(0,0,0,0.3);
		border-radius: 5px;
		padding: 1.5em;
		z-index: 20;
		bottom: unset;
	}
	
	.dp-cookiePanelGlass {
		background: rgba(0,0,0,0.30);
		width: 100%;
		height: 100%;
		position: absolute;
		box-sizing: border-box;
		top: 0px;
		left: 0px;
		z-index: 15;
	}
}

.dp-PopupContentContainer .dp-WsHandlerContainer {
	width: 346px;
	height: 298px;
}

.dp-WsHandlerContainer.EastPanel {
	flex: 1;
}

@media screen and (max-width: 767px) {
	.dp-PopupContentContainer .dp-WsHandlerContainer {
		flex: 1;
		width: 100%;
	}
}

.dp-RouteInfoContainer {
	flex: 1;
}


/* ------------------------------------------------------------------------------------------------- */
/* --------------------------------------- DP-GUI components --------------------------------------- */
/* ------------------------------------------------------------------------------------------------- */

/* ======================================== DPContainer ======================================== */

.dp-Container {
	display: flex;
	position: relative;
}

/* Justification */

.dp-Container.justifyLeft {
	justify-content: flex-start;

}
.dp-Container.justifyRight {
	justify-content: flex-end;
}

.dp-Container.justifyCenter {
	justify-content: center;
}

.dp-Container.justifyEvenly {
	justify-content: space-evenly;
}

.dp-Container.justifySpaceBetween {
	justify-content: space-between;
}

/* Alignment */

.dp-Container.alignTop {
	align-items: flex-start;

}
.dp-Container.alignBottom {
	align-items: flex-end;
}

.dp-Container.alignCenter {
	align-items: center;
}

.dp-Container.alignBaseLine {
	align-items: baseline;
}

.dp-Container.alignStretch {
	align-items: space-evenly;
}

/* Wrapping */

.dp-Container.wrap {
	flex-wrap: wrap;
}

/* ======================================== ContainerChild ======================================== */

.dp-ContainerChild {
	display: flex;
	position: relative;
}

/* Margin */

.dp-ContainerChild.margin2 {
	margin: 2px;
}

.dp-ContainerChild.margin3 {
	margin: 3px;
}

.dp-ContainerChild.margin5 {
	margin: 5px;
}

.dp-ContainerChild.margin10 {
	margin: 10px;
}

.dp-ContainerChild.noLeftMargin {
	margin-left: 0px;
}

/* =================================== DPHorizontalContainer =================================== */

.dp-HorizontalContainer {
	flex-direction: row;
}

/* TODO: Make a dedicated component for this. */
.dp-HorizontalButtonPanel {
	margin: 5px;
}

/* ==================================== DPVerticalContainer =================================== */

.dp-VerticalContainer {
	flex-direction: column;
}

/* ========================================== DPPopup ========================================== */

.dp-PopupFrame {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 20;
	box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
	background-color: rgb(255,255,255);
	padding: 20px;
}

@media screen and (max-width: 767px) {
	.dp-PopupFrame {
		width: 92%;
		top: 40%;
		box-sizing: border-box;
	}

	.dp-PopupFrame.dp-FullscreenPopup {
		width: 100%;
		height: 100%;
		top: 50%;
	}
}

.dp-PopupTitle {
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin: 0.75em 0;
	cursor: default;
}

.dp-PopupContentContainer {
	/* The content container uses positioning in order to encapsulate GWT-generated content
	with absolut positioning. */
	position: relative;
	/* Always fill the PopupFrame, this allows child elements to flex-grow inside this container. */
	height: 100%;
	font-family: 'Open Sans', Arial, sans-serif;
}

.dp-PopupPanelGlass {
	background: rgba(0,0,0,0.30);
	width: 100%;
	height: 100%;
	position: absolute;
	box-sizing: border-box;
	top: 0px;
	left: 0px;
	z-index: 15;
}

/* ============================================= DPSwitch ============================================= */

.dpSwitch-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	overflow: hidden;
	height: 24px;
}

.dpSwitch-container.disabled {
	opacity: 0.38;
}

.dpSwitch-slideBar {
	background-color: rgba(0,0,0,.38);
	position: relative;
	width: 36px;
	height: 14px;
	flex-shrink: 0;
	border-radius: 8px;
	margin-right: 10px;
}

.dpSwitch-slideBar.checked {
	background-color: rgba(0,91,130,0.54);
	background-color: rgba(var(--primarycolor),0.54);
}

.dpSwitch-thumbContainer {
	position: absolute;
	z-index: 1;
	width: 20px;
	height: 20px;
	top: -3px;
	left: 0;
	transform: translate3d(0,0,0);
	transition: all 80ms linear;
	transition-property: transform;
	cursor: pointer;
}

.dpSwitch-thumbContainer.checked {
	transform: translate3d(16px,0,0);
}

.dpSwitch-thumbContainer.disabled {
	cursor: default;
}

.dpSwitch-thumbContainer.checked .dpSwitch-thumb {
	background-color: rgb(0,91,130);
	background-color: rgb(var(--primarycolor));
}

.dpSwitch-thumb {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	outline: none;
	background-color: rgb(250, 250, 250);
	box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
}

.dpSwitch-thumbRipple {
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	animation: toggleRippleAnimationUnChecked 400ms ease-out;
}

.dpSwitch-thumbContainer.checked .dpSwitch-thumbRipple {
	animation: toggleRippleAnimationChecked 400ms ease-out;
}

.dpSwitch-slideBar, .dpSwitch-thumb {
	transition: all 80ms linear;
	transition-property: background-color;
	transition-delay: 50ms;
}

@keyframes toggleRippleAnimationChecked {
	0% {   background-color: rgba(0,91,130,0.2);
		   background-color: rgba(var(--primarycolor),0.2);
		   transform: scale(0.5); } 
	30% {  background-color: rgba(0,91,130,0.2);
		   background-color: rgba(var(--primarycolor),0.2);
		   transform: scale(1); } 
	100% { background-color: initial; }
}

@keyframes toggleRippleAnimationUnChecked {
	0% {   background-color: rgba(192, 192, 192, 0.2);
		   transform: scale(0.5); } 
	30% {  transform: scale(1);
		   background-color: rgba(173, 173, 173, 0.2); } 
	100% { background-color: initial; }
}

/* ============================================== DPIcon ============================================== */

.dpIcon {
	display: flex;
	position: relative;
	cursor: default;
}

.dpIcon.clickable {
	cursor: pointer;
}

.dpIcon span {
	font-size: 1.5em;
}

.dpIcon span.dp-NumberedIconNumberPlate {
	font-size: 0.75em;
	background-color: rgba(var(--primarycolor),0.5);
	border-radius: 50%;
	height: 1.5em;
	width: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 1.5em;
	right: -0.25em;
}

/* =========================================== DPInputField =========================================== */
/* ============================================== (base) ============================================== */

.dpInputField-container {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	color: rgb(var(--standardtextcolor));
	margin: 0.25em 0;
}

.dpInputField-container * {
	font-family: 'Open Sans', Arial, sans-serif;
}

.dpInputField-container.disabled {
	opacity: 0.6;
}

.dpInputField-mainContentWrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
}

.dpInputField-textAndLabelWrapper {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	padding: 1em 0;
}

.dpInputField-textField, .dpInputField-dateField,  .dpInputField-searchField, .dpInputField-Select {
	border: none;
	background-color: transparent;
	outline: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	vertical-align: bottom;
	font-size: 1em;
	transform: translateY(0.5em);
	color: inherit;
}

.dpInputField-label {
	position: absolute;
	max-width: 100%;
	left: 0;
	transform-origin: 0 0;
	box-sizing: content-box;
	overflow: hidden;
	pointer-events: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: transform .4s cubic-bezier(.25,.8,.25,1),
				color .4s cubic-bezier(.25,.8,.25,1),
				width .4s cubic-bezier(.25,.8,.25,1);
}

.dpInputField-label.has-focus {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dpInputField-label.has-focus, .dpInputField-label.float {
	transform: translateY(-0.75em) scale(0.75);
}

.dpInputField-label.invalid:not(.disabled) {
	color: rgb(213,0,0);
}

.dpInputField-label.invalid::after {
	margin-left: 1px;
	content: "*";
}

.dpInputField-Icon.has-icon {
	padding: 0.2em 0.5em;
}

.dpInputField-Icon span {
	font-size: 1.4em;
}

.dpInputField-Icon.leading {
	padding-left: 0;
}

.dpInputField-error {
	position: absolute;
	flex: auto;
	width: 100%;
	box-sizing: border-box;
	visibility: hidden;
	font-size: 0.75em;
	font-weight: 600;
}

.dpInputField-error.invalid:not(.disabled) {
	visibility: visible;
	color: rgb(213,0,0);
}


/* -------------------------------------------- Clearable --------------------------------------------- */

.dpInputField-clearButton {
	display: none;
	outline: 0;
}

.dpInputField-clearButton.clearable {
	display: block;
}

.dpInputField-clearButton .dpIcon {
	padding-right: 0;
}

.dpInputField-clearButton .dpIcon span {
	border-radius: 50%;
	transition: background-color 15ms linear;
}

.dpInputField-mainContentWrapper:not(.disabled) .dpInputField-clearButton.clearable .dpIcon span:hover {
	background-color: rgb(236,236,236);
	cursor: pointer;
}

.dpInputField-Icon.trailing.clearable {
	display: none;
}

/* ====================================== DPUnderlinedInputField ====================================== */

.dpInputField-underline {
	height: 1px;
	background-color: rgba(0,0,0,0.2);
	width: 100%;
	box-sizing: border-box;
	pointer-events: none;
	transition: transform .4s cubic-bezier(.25,.8,.25,1),
				background-color .3s cubic-bezier(.55,0,.55,.2);
}

.dpInputField-underline.has-focus {
	background-color: rgb(56,128,224);
	background-color: rgb(var(--primarycolor));
	transform: scaleY(2);
}

.dpInputField-underline.invalid:not(.disabled) {
	background-color: rgb(213,0,0);
}

/* ======================================== DPFilledInputField ======================================== */

.dpInputField-mainContentWrapper.filled {
	padding-left: 1em;
	padding-right: 0.5em;
	border-radius: 4px 4px 0 0;
	transition: background-color 15ms linear;
	align-items: center;
}

.dpInputField-mainContentWrapper.filled.gray {
	background-color: rgb(245,245,245);
}

.dpInputField-mainContentWrapper.filled.white {
	background-color: white;
	background-color: rgb(var(--groupingpanelinput));
}

.dpInputField-mainContentWrapper.filled.gray:hover:not(.disabled) {
	background-color: rgb(236,236,236);
}

.dpInputField-mainContentWrapper.filled.gray.has-focus {
	transition-duration: 75ms;
	background-color: rgb(220,220,220);
}

.dpInputField-error.filled {
	padding-left: 1.3333em;
}

/* ======================================= DPOutlinedInputField ======================================= */

.dpInputField-mainContentWrapper.outlined {
	padding: 0 1em;
	align-items: center;
}

.dpInputField-textAndLabelWrapper.outlined.float {
	padding: 1em 0;
}

.dpInputField-mainContentWrapper.outlined:hover {
	border-color: rgba(0,0,0,0.7);
}

.dpInputField-outline {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0,0,0,0.4);
	transition: border-color 15ms linear;
}

.dpInputField-outline.has-focus {
	transition-duration: 75ms;
	border-width: 2px;
	border-color: rgb(0,91,130);
	border-color: rgb(var(--primarycolor));
}

.dpInputField-outline.invalid:not(.disabled) {
	border-color: rgb(213,0,0);
}

.dpInputField-label.outlined.has-focus, .dpInputField-label.outlined.float {
	transform: translateY(-1.5em) scale(0.75);
	padding: 0 5px;
	background-color: rgb(255,255,255);
}

.dpInputField-textField.outlined, .dpInputField-dateField.outlined,  .dpInputField-searchField.outlined, .dpInputField-Select.outlined {
	transform: translateY(0);
}

.dpInputField-error.outlined {
	padding-left: 1.3333em;
}

/* ============================================== DPSelect ============================================ */
/* ============================================== (base) ============================================== */

.dpInputField-Select {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	color: inherit;
	white-space: nowrap;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.dpInputField-Select.disabled {
	cursor: default;
}

.dpInputField-mainContentWrapper.has-focus .dpInputField-Icon.trailing.select {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
}

.dpInputField-Icon.trailing.select {
	position: absolute;
	right: 0.5em;
	pointer-events: none;
}

/* ========================================== DPUnderlinedSelect ========================================== */


/* ========================================== DPFilledSelect ========================================== */


/* ========================================= DPOutlinedSelect ========================================= */

.dpInputField-mainContentWrapper.select.outlined {
	padding: 0;
}

.dpInputField-textAndLabelWrapper.select.outlined {
	display: flex;
	align-items: center;
}

.dpInputField-textAndLabelWrapper.select .dpInputField-label.outlined {
	left: 1em;
}

.dpInputField-Select.outlined {
	padding: 0em 1em;
}

/* =========================================== DpSuggestBox =========================================== */

/* ------------------------------------------ DpSuggestDisplay ---------------------------------------- */

.dpSuggestDisplay {
	z-index: 99999;
	margin-top: 2px;
}

/* ============================================= DPRipple ============================================= */

.dpRipple {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	pointer-events: none;
	border-radius: inherit;
	overflow: hidden;
}

.dpRipple span {
	position: absolute;
	border-radius: 50%;
	background-color: currentcolor;

	animation: ripple 1s;
	transition: opacity,transform 0ms cubic-bezier(0,0,.2,1);
	opacity: 0.2;
  }
  
  @keyframes ripple {
	from {
	  opacity: 0.2;
	  transform: scale(0);
	}
	to {
	  opacity: 0;
	  transform: scale(2);
	}
  }
/* ============================================= DPLink ============================================= */
.dpLink {
	padding: 7.5px 16px;
    	align-items: center;	
}


/* ============================================= DPButton ============================================= */

.dpButton {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 7.5px 16px;
	min-width: 64px;
	border-radius: 4px;
	border: none;
	background-color: transparent;
	font-size: 14px;
	font-weight: 600;
	outline: none;
	white-space: nowrap;
	font-family: 'Open Sans', Arial, sans-serif;
}

.dpButton:hover:not([disabled]) {
	transition: background-color 200ms cubic-bezier(0.35, 0, 0.25, 1);
	cursor: pointer;
}

.dpButton .dpIcon.has-icon {
	padding-right: 0.5em;
}

.dpButton .dpIcon span {
	font-size: 18px;
}

/* -------------------------------------------- Text --------------------------------------------- */

.dpButton.text {
	color: rgb(var(--primarycolor));
}

.dpButton.text:hover:not([disabled]) {
	background-color: rgba(var(--primarycolor), 0.07);
}

.dpButton.text[disabled] {
	color: rgba(0,0,0,.26);
}

/* -------------------------------------------- Contained --------------------------------------------- */

.dpButton.contained {
	color: rgb(255,255,255);
	background-color: rgb(var(--primarycolor));
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}

.dpButton.contained[disabled] {
	background-color: rgba(0,0,0,.12);
	color: rgba(0,0,0,.26);
}

/* -------------------------------------------- Outlined --------------------------------------------- */

.dpButton.outlined {
	color: rgb(var(--primarycolor));
	border: 1px solid rgb(var(--primarycolor));
}

.dpButton.outlined:hover:not([disabled]) {
	background-color: rgba(var(--primarycolor), 0.07);
}


.dpButton.outlined[disabled] {
	color: rgba(0,0,0,.26);
	border: 1px solid rgba(0,0,0,.26);
}

/* ========================================== DPWarningPanel ========================================== */

.dp-WarningPanel {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.dp-WarningPanel .dp-WarningPanelLabel {
	padding-left: 10px;
}


/* ---------------------------------------- Chips ------------------------------------------- */

.dp-FilterListIconPanel {
	display: flex;
}

.dp-AppBar .dp-FilterListIconPanel {
	width: 400px; 
    	overflow: hidden;
    	margin-top: 10px;
    	margin-bottom: 5px;
}

.dp-FilterListIcon {
	padding-right: 20px;
	color: rgb(var(--standardtextcolor));
}

.dp-FilterListIcon:hover {
	color: rgb(0,91,130);
	color: rgb(var(--primarycolor));
	cursor: pointer;
}

.dp-FilterChipsPanel {
	display: flex;
	width: fit-content;
	color: rgb(var(--standardtextcolor));
}

.dp-AppBar .dp-FilterChipsPanel {
	flex-wrap: wrap;
}

.dp-FilterParamChip {
	border-style: solid;
	border-radius: 20px;
	padding: 3px 10px;
	box-sizing: border-box;
	border-width: 2px;
	border-color : rgb(255,167,38);
	border-color: rgb(var(--secondarycolor));
	background-color: rgba(255,167,38,0.05);
	background-color: rgba(var(--secondarycolor),0.05);
	margin-left: 5px;
	display: flex;
	align-items: center;
}

.dp-AppBar .dp-FilterParamChip {
	margin-bottom: 5px;
}

.dp-FilterParamChip.active {
	background-color: rgba(255,167,38);
	background-color: rgba(var(--secondarycolor));
}

.dp-FilterParamChip > span {
	white-space: nowrap;
	font-weight: 600;
	cursor: default;
}

.dp-FilterParamChip > span.material-icons {
	margin-left: 5px;
	font-size: 16px;
}

.dp-FilterParamChip > span.material-icons:hover {
	cursor: pointer;
}

/* --------------------------------------------Inspections--------------------------------------------- */

.inspectionObservationDegreesPanel {
	margin-top: 5px;
	margin-bottom: 15px;
}

.inspectionChecklistRowsPanel textarea {
	width: 100%;
	resize: none;
	background-color: rgba(255, 255, 203, 1);
	margin-bottom: 5px;
}

.inspectionChecklistRowsPanel .dp-StyledCheckBox {
	flex-grow: 1;
}

/* -----------------------------------------------OWM----------------------------------------------- */
.owm-WorkflowItemRow.finished {
	background-color: rgba(76, 175, 80, 0.15)
}

.owm-WorkflowItemRow.ongoing {
	background-color: rgba(251, 200, 6, 0.15)
}

.owm-WorkflowItemRow.planned {
	background-color: rgba(255, 106, 90, 0.15)
}

.owm-WorkflowItemRow div {
	display: flex;
}

/* -----------------------------------------------Image preview------------------------------------- */

.dp-ImagePreviewCanvas {
	touch-action : none;
	
}

/* ------------------------------------------------------------------------------------------------- */
