/* Styles specific to a single component */

/*region AdminUserSeniorityComp */
.seniority {
  font-size: 10px;
  color: #555;
  margin: 5px 0 5px 0;
}

.fullStar {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 12px;
  margin-right: 5px;
  background-color: #4798c4;
  border: 1px solid #4798c4;
}

.emptyStar {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 12px;
  margin-right: 5px;
  background-color: #fff;
  border: 1px solid #4798c4;
}

/*endregion*/

/*region .reactAutocomplete */
:root {
  --inputPlaceholderColor: #555;
  --inputPlaceholderColorHover: #555;
  --inputPlaceholderCursor: inherit;
  --inputPlaceholderTextDecoration: none;
}

.reactAutocompleteInput--blueLink:not(:disabled) {
  --inputPlaceholderColor: #3681a9;
  --inputPlaceholderColorHover: #3681a9;
  --inputPlaceholderCursor: pointer;
  --inputPlaceholderTextDecoration: underline;
}

.reactAutocompleteT5Placeholder {
  padding: var(--autocompleteInputPadding);
  max-width: var(--form-control-maxwidth);
  line-height: var(--autocompleteLineHeight);
  display: inline;
}

.detail-rows-table tbody td .reactAutocompleteT5Placeholder::placeholder {
  color: var(--inputPlaceholderColor);
}

input[type="text"].reactAutocompleteT5Placeholder:hover {
  cursor: pointer;
  text-decoration: var(--inputPlaceholderTextDecoration);
  border-bottom: thin solid transparent;
}

@media screen and (min-width: 900px) {
  .reactAutocompleteT5Placeholder.reactAutocompleteT5Placeholder,
  .reactAutocompleteT5Placeholder.reactAutocompleteT5Placeholder:disabled {
    padding: var(--autocompleteInputPadding);
  }

  .minWidth900pxPaddingLeft5px {
    padding-left: 5px !important;
  }
}

@media screen and (max-width: 900px) {
  .reactAutocompleteT5Placeholder {
    line-height: 1.5;
    width: 102px;
    border: none;
    background-color: unset;
    padding-left: 0;
    padding-top: 5px;
  }

  input[type="text"].reactAutocompleteT5Placeholder:hover {
    border-bottom: none;
  }

  input[type="text"].reactAutocompleteT5Placeholder:disabled {
    background-color: unset;
    color: #333;
    text-decoration: none;
    cursor: unset;
  }

  .maxWidth75pxAtUnder900pxWide {
    max-width: 75px !important;
  }

  .maxWidth100pxAtUnder900pxWide {
    max-width: 100px !important;
  }

  .minus5pxTopMarginAtUnder900pxWide {
    margin-top: -5px !important;
  }
}
/*endRegion*/

/*region Amounts Table */
.amounts-table-container {
  background-color: #fff;
  text-align: right;
  float: right;
  margin-bottom: 10px;
  min-width: 200px;
  margin-top: 5px;
}

.amounts-table-container {
  background-color: #fff;
  text-align: right;
  float: right;
  margin-bottom: 10px;
  min-width: 200px;
  margin-top: 5px;
}

.amounts-table {
  padding: 5px;
  color: #000;
  float: right;
}

.amounts-table td {
  padding: 5px 10px;
}

.amounts-table td input {
  margin-right: -5px;
}

.amounts-table td input[type="checkbox"] ~ label span {
  margin-right: -2px;
}

.amounts-table td input:disabled {
  padding: 0;
  margin-right: 0;
  font-size: 12px;
  color: #000;
  background-color: transparent;
  border: none;
}

.amounts-table tr.total-row td {
  font-size: 17px;
  color: #444;
  font-weight: bold;
  border-top: 1px solid #ccc;
}

.amounts-table tr.total-row.borders {
  border-bottom: 1px solid #fff !important;
  border-top: 1px solid #fff !important;
}

/*endregion*/

/*region App id field */
.app-id-field {
  display: inline-block;
  padding: 0 0.63em;
  border-radius: 5px;
  font-size: 4em;
  background: #bddcff;
}

.app-id-field-verified {
  background: #7db641 !important;
}

/*endregion*/

/*region Autocomplete */
.autocompleter {
  outline: none;
}

.autocomp-with-add {
  white-space: nowrap;
  width: 94px;
  display: inline-block;
}

.autocomplete-holder {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 189;
  /* It has fixed sizes for blocks and doesn't look good with other font sizes */
  font-weight: normal;
  font-size: 12px;
}

.autocomplete-w1 {
  position: absolute;
  z-index: 99999;
}

.autocomplete-w2 {
  position: relative;
  top: 29px;
}

.autocomplete {
  z-index: 99999;
  min-width: 300px;
  max-width: 450px;
  min-height: 100px;
  border: 5px solid #73a8bc;
  border-top: none;
  background: #fff;
  cursor: default;
  text-align: left;
  max-height: 350px;
  overflow: auto;
  overflow-x: hidden;
  box-shadow: 1px 1px 2px #aaa;
}

.autocomplete__container-child {
  position: absolute;
  z-index: 99999;
}

@media (max-width: 576px) {
  .autocomplete {
    max-width: 95vw;
  }
}

.autocomplete__row {
  padding: 4px 20px 4px 4px;
  font-size: 1rem;
  transition: all 0.2s;
  /* Simply because in some contexts its overriden to 3em. */
  line-height: 1.42857143;
}

.autocomplete__row:nth-child(even) {
  background-color: #f9f9f9;
}

.autocomplete__row--selected,
    /* specificity problems */
.autocomplete__row:nth-child(even).autocomplete__row--selected {
  background-color: #87bcd9;
  color: #fff;
}

.autocomplete__strong {
  font-weight: bold;
  color: #3399ff;
}

.autocomplete-loader {
  height: 16px;
  width: 100%;
  background: #fff;
  padding: 2px;
  display: inline-block;
  border-radius: 50%;
}

.autocomplete__header {
  position: absolute;
  height: 30px;
  width: 100%;
  top: -28px;
  left: 0;
  background-color: #73a8bc;
  padding-left: 3px;
  box-sizing: border-box;
  color: #fff;
  box-shadow: 1px 0 2px #aaa;
}

.autocomplete div.add-new-object {
  background: #73a8bc url("/assets/ctx/23a34cbf/layout/images/btn-add.png") 10px 50% no-repeat;
  background-size: 12px;
  width: 100px;
  height: 30px;
  color: #fff;
  padding-left: 30px;
  float: right;
  box-sizing: border-box;
  border-left: 1px solid #fff;
  line-height: 20px;
}

.autocomplete__close {
  width: 30px;
  height: 30px;
  background: #91baca url("/assets/ctx/ebdcb357/layout/images/btn-close-white.png") 50% 50% no-repeat;
  background-size: 12px;
  color: #fff;
  float: right;
  box-sizing: border-box;
}

.autocomplete-w2 div.add-new-object:hover,
.autocomplete__close:hover {
  background-color: #75a2b5;
}

.autocomplete--green {
  border-color: #73c477;
}

.autocomplete--green .autocomplete__header {
  background-color: #73c477;
}

.autocomplete--green .autocomplete__close {
  background-color: #98d094;
}

.autocomplete--green .autocomplete__strong {
  color: #5a99ba;
}

.autocomplete--green .autocomplete__close:hover {
  background-color: #98d09488;
}

.autocomplete span.remove {
  font-size: 9px;
  padding-left: 10px;
  color: #999;
}

/*endregion*/

/*region autofill comp*/
.tt-dropdown-menu {
  min-width: 250px !important;
}
.tt-dropdown-menu .tt-suggestion {
  font-size: 12px;
}
/*endregion*/

/*region AutoDepreciateComp*/
.auto-depr {
  background-color: #efefef;
  border: 1px solid #ddd;
  padding: 7px;
  border-radius: 7px;
  box-shadow: 1px 1px 1px #ddd;
  float: right;
  font-weight: inherit;
  margin-bottom: 1em;
}
.auto-depr__label {
  font-size: 14px;
  color: #333;
  display: inline-block;
  padding-right: 20px;
}
/*endregion*/

/*region Bottom Right Comp */
.bottom-right-fixed {
  display: none;
}

.bottom-right-fixed-neverhide {
  display: block;
  position: fixed;
  right: -2px;
  bottom: -2px;
  overflow: hidden;
  background-color: #66a5c2;
  padding: 10px;
  z-index: 20;
  color: #fff;
  border-bottom: none;
  transition: all 0.5s;
  font-size: 1.3em;
  animation: saBottomMove 0.3s 1;
}

.bottom-right-fixed-neverhide table.amounts-table tr.total-row td {
  color: #fff;
}

.bottom-right-fixed-neverhide a {
  display: inline-block;
  background-color: #fff;
  color: #4182a0;
  font-size: 12px;
  padding: 3px 6px;
  min-width: 80px;
  margin-left: 10px;
  text-align: center;
}

.bottom-right-fixed-neverhide a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  div.bottom-right-fixed {
    display: block;
    position: fixed;
    bottom: -100px;
    right: 0;
    overflow: hidden;
    background-color: #66a5c2;
    padding: 10px;
    z-index: 20;
    color: #000;
    border: 2px solid #fff;
    border-bottom: none;
    transition: all 0.5s;
    font-size: 1.3em;
  }

  .bottom-right-fixed.show-element {
    bottom: 0;
  }
}

/*endregion*/

/*region BusinessBalanceComp */
.client-saldo {
  font-size: 18px;
  line-height: 24px;
  min-height: 24px;
  color: #455a64;
  text-align: right;
  max-width: 300px;
  position: relative;
  margin-top: 2px;
}

.client-saldo .client-saldo-details {
  background-color: #efefef;
  color: #455a64; /* !! COLOR CODE BACKGROUND */
  border: 2px solid #fff;
  text-align: left;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 27px;
  visibility: hidden;
  line-height: 16px;
  z-index: 20;
  box-shadow: 3px 3px 3px #aaa;
  transition: all 0.2s;
  opacity: 0;
}

.client-saldo .client-saldo-details.creditLimit {
  top: 45px;
}

.client-saldo .client-saldo-details table {
  width: 100%;
}

.client-saldo .client-saldo-details table td {
  padding: 6px 15px;
}

.client-saldo .client-saldo-details table tr.sum {
  background-color: #94b7c6;
  color: #fff;
  font-weight: bold;
}

.client-saldo:hover .client-saldo-details {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .client-saldo {
    width: auto !important;
  }

  .client-saldo .client-saldo-details {
    left: auto !important;
    right: 0;
  }
}

.creditLimitDisplay {
  background-color: #efefef;
  padding: 3px;
  color: #455a64;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
}

/*endregion*/

/*region ClientFeedbackComp */
.feedbackInput {
  border: none;
  border-bottom: 1px solid #aaa;
  font-size: 14px;
}

.feedbackInput::placeholder {
  font-size: 12px;
  color: #999;
}

/*endregion*/

/*region Confirm dialog */
.center-confirm-dialog {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 300px;
}

.center-confirm-dialog p {
  font-size: 15px;
  padding: 10px;
}

.center-confirm-dialog .comp-body {
  overflow-y: auto;
  max-height: 31em;
}

.center-confirm-dialog ul li {
  font-size: 15px;
  margin: 0;
  padding-left: 10px;
}

.center-confirm-dialog p {
  color: #000;
}

/*endregion*/

/*region #content*/
#content {
  padding-top: 120px;
  margin-bottom: 20px;
  min-height: 180px;
}

@media screen and (max-width: 768px) and (min-height: 576px) {
  #content {
    /* follows bootstrap 5 container padding-right/-left */
    padding-top: var(--bs-gutter-x, 0.75rem);
  }
}
/*endregion*/

/*region Chart Holder */
.chartHolder.center {
  margin: 0 auto;
}

.chartHolder:hover .chartDatalink {
  display: block;
}

.chartDatalink {
  height: 11px;
  width: 140px;
  position: absolute;
  top: 0;
  left: 10px;
  line-height: 14px;
  opacity: 0.9;
  display: none;
  text-align: right;
}

.chartDatalink a {
  background-color: #b0b0b0;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #aaa;
  padding: 3px 5px;
  display: inline-block;
}

.chartHolder svg > g:last-child > g:last-child {
  pointer-events: none;
}

/*endregion*/

/*region Date container */
.dateContainer {
  background-color: #fff;
  border: 1px solid #c8c8c8;
  display: inline-block;
  transition: all 0.2s;
  white-space: nowrap;
  /* head-1 changes font-size */
  font-size: 1rem;
}

.dateContainer.disabled {
  background-color: #efefef;
}

.dateContainer input.dateField {
  width: 80px;
  outline: none;
  border: none;
}

.dateContainer:hover {
  border-bottom: 1px solid orange;
}

.dateContainer.noborder {
  border: 1px solid transparent;
}

/*endregion*/

/*region DateperiodjavascriptComp*/
.datePeriodSelect-arrow {
  border-bottom: 8px solid #73a8bc;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  top: -7px;
}

.datePeriodSelect {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  /* head-1 changes font-weight and font-size. */
  font-weight: normal;
  font-size: 1rem;
  margin-left: 5px;
}

.datePeriodSelect-trigger {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("/assets/ctx/8346e52b/layout/images/btn-timeperiod.png") 50% 30% / 14px no-repeat;
}

.datePeriodSelect-dates {
  width: 180px;
  border: 2px solid #73a8bc;
  background-color: #fff;
  /* same as .overlay-content */
  box-shadow: 1px 1px 2px #aaa;
}

.datePeriodSelect-dates ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1px;
}

.datePeriodSelect-dates .heading {
  color: #fff;
  padding: 4px;
  line-height: 20px;
  background: #73a8bc url("/assets/ctx/a808fb28/layout/images/btn-timeperiod-white.png") top 40% right 10% no-repeat;
  background-size: 13px;
  border-bottom: 1px solid #fff;
}

.datePeriodSelect-dates li {
  padding: 0;
  margin: 0;
}

.datePeriodSelect-dates li.separator {
  border-top: 1px solid #87bcd9;
}

.datePeriodSelect-dates li a,
.datePeriodSelect-dates li button {
  display: block;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 7px;
  margin: 1px;

  /* from the links */
  color: #3681a9;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;

  /* remove buttons default styles */
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.datePeriodSelect-dates li a:hover,
.datePeriodSelect-dates li button:hover {
  background-color: #73a8bc;
  color: #fff;
  transition: all 0.2s;
  text-decoration: none;
}

/*endregion*/

/*region DepreciationAddEditComp */
.depreciationMonth option[value="3"],
.depreciationMonth option[value="6"],
.depreciationMonth option[value="9"],
.depreciationMonth option[value="12"] {
  padding-left: 5px;
  color: #072d98;
}

/*endregion*/

/*region DocumentReferenceComp*/
.docRefTable {
  width: 100%;
}

.docRefTable td {
  padding: 5px;
}

.docRefTable tr {
  border-top: 1px solid #e0e0e0;
}

.docRefTable tr td:first-child {
  padding-left: 0;
}
/*endregion*/

/*region ExtraOnHovering */
.hoverable:hover .hoverable-details {
  visibility: visible;
}

.hoverable-details {
  position: absolute;
  visibility: hidden;
  padding: 10px;
  border: 1px solid #efefef;
  background-color: #fff;
  color: #555;
  font-size: 12px;
  line-height: 16px;
  box-shadow: 3px 3px 3px #ddd;
  width: 324px;
  z-index: 50;
  white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  word-break: break-all;
  white-space: normal;
}

/*endregion*/

/*region Template Design Components*/
.toolbox {
  background-color: #fff;
  border: 5px solid #73a8bc;
  position: absolute;
  top: 47px;
  left: 0;
  z-index: 1100;
}

.toolbox p {
  padding-left: 5px;
}

.invDesignHeader {
  cursor: pointer;
  width: 100%;
  max-width: 990px;
  background-color: #d0e0e8;
  font-size: 20px;
  margin-bottom: 3px;
  padding: 10px;
  color: var(--col-dark-blue);
}

.invDesignHeader:hover {
  text-decoration: underline;
}

.fixedXXL {
  width: 1300px !important;
}

@media screen and (min-width: 1510px) {
  /* allowing non-standard breakpoints for invoice template editor */
  .fixedXXL {
    width: 1500px !important;
  }

  .invDesignHeader {
    max-width: 1175px;
  }

  .fixedXXL .general-parameters {
    padding-right: 40px;
  }
}

.designElements {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 5px;
  width: 250px;
  border-top: 1px solid #bbb;
}

.designElements li {
  font-size: 12px;
  margin: 0;
  padding: 5px;
  color: #333;
  cursor: default;
  padding-left: 25px;
}

.designElements li:hover {
  text-decoration: none;
  background-color: #e1e2ef !important;
}

.designElements li.focus {
  background-color: #e2ebef !important;
}

.designElements li.textField {
  background: url("/assets/ctx/41250a33/layout/images/template-design/tool-textfield.png") 5px 50% / 13px no-repeat;
}

.designElements li.line {
  background: url("/assets/ctx/a8c3ad1c/layout/images/template-design/tool-line.png") 5px 50% / 13px no-repeat;
}

.designElements li.rectangle {
  background: url("/assets/ctx/365ce5b/layout/images/template-design/tool-rectangle.png") 5px 50% / 13px no-repeat;
}

.designElements li.image {
  background: url("/assets/ctx/e2451acd/layout/images/template-design/tool-image.png") 5px 50% / 13px no-repeat;
}

.tempDesignEl {
  position: absolute;
  cursor: default;
  overflow: hidden;
}

.tempDesignEl.focus,
.tempDesignEl.focusHover {
  border: 1px solid orange !important;
  box-shadow: 2px 2px 2px #999;
}

.tempDesignEl.TEXTFIELD {
  border: 1px dashed #ddd;
  line-height: 1em;
  padding: 0;
}

.tempDesignEl.IMAGE {
  border: 1px dashed #ddd;
}

.tempDesignEl.LINE {
  border: 1px solid transparent;
  overflow: visible;
}

.tempDesignEl.RECTANGLE {
  border: 1px solid transparent;
  overflow: visible;
}

.tempDesignEl.overlap {
  border: 1px dashed blue;
}

.tools {
  background: #f9f9f9;
}

.tools span {
  background: #efefef;
  padding: 5px;
  color: #333;
  display: inline-block;
  width: 100%;
  line-height: 20px;
  box-sizing: border-box;
  font-size: 14px;
}

.tools a {
  border: 1px solid transparent;
}

.tools a:hover {
  border: 1px solid #ddd;
}

.chooseText {
  border: 1px solid #ddd;
  height: 80px;
  overflow-y: scroll;
  background-color: #fff;
  font-size: 10px;
}

.chooseText > .row1 {
  background: #efefef;
}

.chooseText > .row0:hover,
.chooseText > .row1:hover {
  background-image: none;
  background-color: hsl(198.5, 28.9%, 91.2%);
}

.designTool {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.designTool.textField {
  background: url("/assets/ctx/41250a33/layout/images/template-design/tool-textfield.png") 50% 50% / 20px no-repeat;
}

.designTool.line {
  background: url("/assets/ctx/a8c3ad1c/layout/images/template-design/tool-line.png") 50% 50% / 20px no-repeat;
}

.designTool.rectangle {
  background: url("/assets/ctx/365ce5b/layout/images/template-design/tool-rectangle.png") 50% 50% / 20px no-repeat;
}

.designTool.image {
  background: url("/assets/ctx/e2451acd/layout/images/template-design/tool-image.png") 50% 50% / 20px no-repeat;
}

.template-band__body {
  border: 1px dotted #ddd;
  position: relative;
  float: left;
}

#deelParams .header {
  font-size: 14px;
  color: var(--col-dark-blue);
  background-color: #eee;
  padding-left: 10px;
}

.deelButton {
  padding: 5px 10px 5px 25px;
  display: inline-block;
  color: #fff;
  margin-right: 5px;
}

.deelButton.copy {
  background: #78b8a6 url("/assets/ctx/3d82d699/layout/images/btn-copy.png") 10px 50% no-repeat;
  background-size: 12px;
}

.deelButton.delete {
  background: #e69557 url("/assets/ctx/9b1104bd/layout/images/btn-delete.png") 10px 50% no-repeat;
  background-size: 12px;
}

.deelButton.cancel {
  background: #f0b54c url("/assets/ctx/ebdcb357/layout/images/btn-close-white.png") 10px 50% no-repeat;
  background-size: 12px;
}

.deelHeader {
  font-size: larger;
  color: white;
  background: hsl(198, 30.5%, 67.8%);
  padding: 0.25em 0.5em;
  border-bottom: 10px solid transparent;
}

tbody.deelTbody.deelHidden {
  display: none;
}

/*endregion*/

/*region Grid */
.gridExport {
  margin-left: 10px;
}

.gridExport a {
  padding: 2px 15px 4px 0;
  display: inline-block;
  color: var(--col-dark-blue);
}

.grid-sums {
  background-color: #e9e9e9;
  color: #455a64;
  font-size: 12px;
  margin-top: 10px;
  padding: 10px 20px;
  float: left;
}

.grid-sums table td {
  padding: 6px 40px;
}

.grid-sums table td.text-right {
  padding-right: 0;
}

.grid-sums table tr td:first-child {
  padding-left: 0;
}

.grid-sums table td.heading {
  border-bottom: 1px solid #ccc;
  padding: 0 0 5px 0;
  font-size: 16px;
  color: #455a64;
  background-color: #e9e9e9;
}

.tr-grid-name-wdr-bal > [data-grid-property="name"] {
  word-break: break-all;
}

.sortable {
  opacity: 1;
  background-color: #000;
}

/*endregion*/

/*region Filter */
.filter {
  margin: 15px 0 10px 0;
}
.filter-form {
  display: flex;
  flex-wrap: wrap;
}

.filterValue,
.filter .filterValue {
  position: relative;
  float: left;
  padding-right: 10px;
  padding-bottom: 8px;
}

.filterValue label,
.filter .filterValue label {
  color: #555;
  height: 27px;
  line-height: 27px;
  padding-left: 10px;
  display: inline;
}

.filterValue select option,
.filter .filterValue select option {
  font-size: 14px;
  line-height: 20px;
  color: #555;
  padding: 3px;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.filterValue select:focus {
  outline: none;
}

.filterValue option:hover {
  color: #fff;
}

.filterValue select,
.filter .filterValue select {
  width: 100px;
}

.dateField,
.filterValue .dateField,
.filter .filterValue .dateField {
  width: 80px;
}

.dateField,
.filter .dateField {
  border: none;
  background: none;
}

.filterValue input:not(.dateField),
.filter .filterValue input:not(.dateField) {
  width: 112px;
}

.filterValue input:not(.dateField):focus,
.filterValue input:not(.dateField):hover,
.filterValue select:focus,
.filterValue select:hover {
  background-color: #fff;
}

/*endregion*/

/*region Import Client Data Table */
.importFileTable {
  position: relative;
  overflow-x: scroll;
  overflow-y: hidden;
  max-height: 600px;
  min-height: 300px;
}

.importFileTable .comp-table td {
  max-width: 50px;
  overflow: hidden;
}

.importFileTable .autocomplete-w1 {
  top: 4px;
  left: -48px;
}

.importFileTable .autocomplete {
  width: 150px;
  z-index: 10000;
}
/*endregion*/

/*region large-news-comp*/
.large-news-comp__article {
  font-size: 1.17rem;
  overflow-y: auto;
  max-height: 50vh;
  border: thin solid #ddd;
  padding: 1em;
}

.large-news-comp__article img {
  margin-top: 0.25em;
  width: auto;
}

.large-news-comp__article p {
  margin-bottom: 1em;
}

.large-news-comp__article li {
  margin-bottom: 0.5em;
}

.large-news-comp__article h2 {
  color: black;
  font-size: 2rem;
}

.large-news-comp__article h3 {
  color: black;
}

.large-news-comp__article a[download] {
  color: white;
  background: black;
  border-radius: 2em;
  padding: 0.5em 1em;
  margin-left: 1em;
  display: inline-block;
}
/*endregion*/

/*region MinifiedHelpComp*/
.minifiedHelpTrigger {
  display: inline-block;
  border: 1px solid #999;
  color: #999;
  padding: 0 0.37604375em;
  line-height: 1.25;
  border-radius: 100%;
  font-size: 8px;
  vertical-align: 0.3em;
  text-transform: none;
  cursor: pointer;
  text-align: center;
  min-width: 1.5em;
}

.small-toolbar-button .minifiedHelpTrigger {
  border: 1px solid #fff;
  color: #fff;
}

.minifiedHelpCloser {
  background: #fff url("/assets/ctx/2f11f647/layout/images/btn-close.png") 50% 50% no-repeat;
  width: 22px;
  height: 22px;
  background-size: 13px;
  float: right;
}

.filterValue .minifiedHelpTrigger {
  margin-top: 2px;
}

.minifiedHelpTrigger.redMinifiedTrigger {
  border: 1px solid #f57c00;
  color: #f57c00;
  background-color: #fff;
}

.minifiedHelp {
  position: relative;
  cursor: pointer;
}

.control-label + .minifiedHelp {
  margin-left: 0.5rem;
}

.minifiedHelpDetails {
  display: block;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  background-color: #999;
  color: #fff;
  line-height: 1.230769231; /* 16px / 13px */
  box-shadow: 2px 2px 3px #ddd;
  width: 17em;
  z-index: 50;
  text-transform: none;
  transition: all 0.2s;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 13px;
  /* Added font-weight because in <h3> the component shows text in bold. */
  font-weight: normal;
  text-align: left;
}

.minifiedHelpDetails.shown {
  visibility: visible;
  opacity: 1;
}

.minifiedHelpDetails p {
  padding-left: 0;
  margin-left: 0;
  padding-right: 0;
  margin-right: 0;
}

.minifiedHelpDetails p:first-child {
  padding-top: 0;
  margin-top: 0;
}

.minifiedHelpDetails p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.minifiedHelp:hover .minifiedHelpDetails,
.minifiedHelp:hover .minifiedHelpDetails {
  visibility: visible;
  opacity: 1;
}

.minifiedHelpDetails.positionRight {
  left: auto;
  right: 0;
}
/*endregion*/

.front-page-message {
  margin-bottom: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background-color: var(--col-bg-light-blue);
  color: var(--col-text-gray);
  font-size: 14px;
}

/*region company-welcome */
.company-welcome {
  padding: 3rem 0;
  font-size: 12px;
  font-family: Jost, var(--led-font-family);
  --box-shadow: 4px 4px 10px 0 rgba(112, 127, 141, 0.2), 0 0 20px 8px rgba(138, 169, 206, 0.1);
}
.company-welcome__form {
  background: white;
  padding: 3em 3em 0;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--box-shadow);
}
.company-welcome__text {
  text-align: center;
  color: #506f8e;
  font-size: 18px;
  font-weight: 500;
}
.company-welcome__button {
  display: block;
  padding: 0.375em 2.5em;
  margin: 4rem auto;
  color: white;
  background-color: hsl(143, 46%, 50%);
  text-transform: uppercase;
  font-size: 1.5em;
  border-radius: 1.875em;
}
.company-welcome__button:hover {
  background-color: hsl(143, 46%, 60%);
  color: white;
}
.company-welcome__image {
  background:
    url("/assets/ctx/z7884ed00/layout/images/backgrounds/juulius.svg") 50% 80%/80% 40% no-repeat,
    linear-gradient(18deg, #49b387, #81c458);
  padding: 8rem 3rem 3rem;
  border-radius: 0 8px 8px 0;
  color: #eee;
  font-size: 22px;
  text-align: center;
  line-height: 1.8;
  box-shadow: var(--box-shadow);
}
@media (min-width: 992px) {
  .company-welcome {
    background: url("/assets/ctx/z42e4f514/layout/images/backgrounds/hall-grad.svg") no-repeat center/100%;
  }
}
/*endregion*/

/* onChangeWithoutBlur */
.clear-input {
  position: absolute;
  background: url("/assets/ctx/2f11f647/layout/images/btn-close.png") 50% 50% no-repeat;
  background-size: 12px;
}

/*region Overlay */
.overlay {
  z-index: 200;
  background: url("/assets/ctx/c3737e66/layout/images/000-opaque60.png") 0 0 repeat;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay.white {
  background: url("/assets/ctx/d03a80b9/layout/images/efefef-opaque60.png") 0 0 repeat;
}

.white {
  background-color: #efefef;
}

.overlay-content.zlow {
  z-index: 0;
}

.zhigh0 {
  z-index: 490;
}

.overlay-content.zhigh0 {
  z-index: 495;
}

.zhigh {
  z-index: 500;
}

.overlay-content.zhigh {
  z-index: 525;
}

.zhigh2 {
  z-index: 600;
}

.overlay-content.zhigh2 {
  z-index: 625;
}

.zhigh3 {
  z-index: 700;
}

.overlay-content.zhigh3 {
  z-index: 725;
}

.overlay-content {
  visibility: visible;
  z-index: 250;
  background-color: #ffffff;
  min-height: 100px;
  position: absolute;
  margin: 10px 0;
  box-sizing: border-box;
  border: 5px solid #fff;
}

#clearOverlay {
  z-index: 3000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  display: none;
  cursor: wait;
}

#clearOverlay .overlay-content {
  cursor: default;
}

.overlay-func {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  opacity: 0.75;
  height: 100%;
  width: 100%;
}

.overlay-content .comp-body,
.overlay-content .comp-heading {
  border: none;
}

@media screen and (max-width: 576px) and (min-height: 576px) {
  .overlay-content.mobile-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    height: 100%;
    padding-top: 60px;
    padding-right: 10px;
  }

  .overlay-content.mobile-fixed .comp-heading {
    position: fixed !important;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 15px;
    border-right: 5px solid #fff;
    box-sizing: border-box;
  }

  .overlay-content.center-confirm-dialog .comp-heading {
    position: relative !important;
    margin-top: 0;
  }

  .overlay-content.mobile-fixed::-webkit-scrollbar {
    display: none;
  }
}

/*endregion*/

/*region PaymentImportEditComp */
.piec__prepayment-and-extras {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  margin-right: -1em;
}

.piec__prepayment {
  border: 1px solid #c7c7c7;
}

.piec__prepayment-header {
  background-color: #efefef;
  text-transform: uppercase;
  color: #455a64;
  font-size: 14px;
}

.piec__prepayment-th {
  padding: 10px 5px;
  font-weight: normal;
  border: 1px solid #ddd;
  text-align: left;
}

.piec__prepayment-td {
  border: 1px solid #ddd;
}

.piec__prepayment-input {
  padding: 10px;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid transparent;
}

.piec__label {
  color: #455a64;
  font-size: larger;
  text-transform: uppercase;
  margin-right: 0.5em;
  margin-left: 1em;
}

.piec__button {
  background-position: center right 0.75em;
  background-repeat: no-repeat;
  background-size: 1em;
  color: white;
  font-size: larger;
  padding: 0.3em 1.9em 0.3em 0.6em;
  text-transform: uppercase;
  transition: all 0.1s;
  height: 30px;
  width: 30px;
  margin-left: 1ex;
  cursor: pointer;
  vertical-align: middle;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  display: inline-block;
}

.piec__button:hover {
  background-size: 1.2em;
  background-position: center center;
}

.piec__button--save-continue {
  background-color: #8db349;
  background-image: url("/assets/ctx/944b788e/layout/images/btn-save-arrow.png");
}

.piec__button--save {
  background-color: #999;
  background-image: url("/assets/ctx/1908141e/layout/images/btn-save.png");
}

.piec__button--save:hover {
  background-color: #8db349;
}

.piec__button--showmore {
  background-color: transparent;
  background-image: url("/assets/ctx/1b67db82/layout/images/ico-sort-ascending.png");
  position: relative;
  display: inline-block;
  background-size: 12px;
}

.piec__button--showmore:hover {
  background-size: 13px;
}

.piec-moreOptions {
  position: absolute;
  width: 150px;
  top: 30px;
  left: 0;
  background-color: #bbb;
  border: 1px solid #bbb;
  box-shadow: 1px 1px 2px #aaa;
  transition: opacity 0.2s;
}

.piec__button--showmore:hover .piec-moreOptions {
  opacity: 1;
  visibility: visible;
}

.piec__button2 {
  display: block;
  padding: 7px;
  padding-left: 25px;
  border-bottom: 1px solid #efefef;
  color: #555;
  font-size: 13px;
}

.piec__button2:hover {
  text-decoration: none;
}

.piec-moreOptions .piec__button2:last-child {
  border-bottom: none;
}

.piec__button2.piec__button--delete {
  background: transparent url("/assets/ctx/9b1104bd/layout/images/btn-delete.png") 5px 50% no-repeat;
  background-size: 12px !important;
}

.piec__button2.piec__button--delete:hover,
.piec__button2.piec__button--cancel:hover {
  background-color: #f39242;
  background-size: 15px !important;
}

.piec__button2.piec__button--cancel {
  background: transparent url("/assets/ctx/ebdcb357/layout/images/btn-close-white.png") 5px 50% no-repeat;
  background-size: 12px !important;
}

.piec__amounts-table {
  float: right;
  margin: 1ex;
}

.piec__payment-sum-diff {
  text-align: right;
}

.payment-import-edit .piec__payment-sum--red {
  color: #f37641;
}

/*region piecAmountsTable*/
.piecAmountsTable td {
  transition: all 0.2s;
}

.piecAmountsTable td .paymentsImportStatusOk {
  float: left;
  margin-right: 7px;
  display: block;
  width: 22px;
  height: 22px;
  background: transparent url("/assets/ctx/3be419a9/layout/images/ico-ok.png") 50% 50% no-repeat;
  background-size: 22px;
  opacity: 0;
  transition: all 0.2s;
}

.piecAmountsTable.piecSumsMatch td .paymentsImportStatusOk {
  opacity: 1;
}

.piecAmountsTable.piecSumsMatch .total-row td {
  color: #5f8831;
}

.piecAmountsTable tr.piec__payment-sum-hideDifference td {
  opacity: 1;
}

.piecAmountsTable.piecSumsMatch tr.piec__payment-sum-hideDifference td {
  opacity: 0;
}
/*endregion*/

/*endregion*/

/*region PaymentImportSettingsComp*/
.payment-import-settings {
  padding-left: 10px;
  padding-right: 10px;
}

.pais__label {
  padding-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 12px;
  line-height: 22px;
}

.pais__no-debt {
  margin-right: 1ex;
}

.pais__no-debt-account {
  width: 200px;
}
/*endregion*/

/*region Payment Rows Component*/
/* width */
.parc__data-table-wrapper::-webkit-scrollbar {
  width: 10px;
  overflow: hidden;
  z-index: 5;
}

/* Track */
.parc__data-table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.parc__data-table-wrapper::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
.parc__data-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/*endregion*/

/*region Partner Data */
.partner-data,
.partner-background {
  background-color: #e0e0e0;
  --col-checkbox-bg: #fff;
}

.partner-data {
  margin-bottom: 10px;
  padding: 8px;
}

.partner-data .partner-label {
  float: left;
  font-size: 18px;
  color: #455a64;
  padding-right: 5px;
  padding-bottom: 1px;
  margin-top: 2px;
}

.partner-data .contact-person-label {
  font-size: var(--bs-body-font-size);
  padding-top: 3px;
}

.partner-data .choose-partner {
  padding-top: 2px;
  padding-left: 15px;
  padding-bottom: 1px;
  float: left;
  font-size: 14px;
  color: #555;
}

.partner-data .choose-partner input.autocompleter {
  outline: none;
  border: none;
  font-size: 12px;
  background-color: #fff;
  padding: 4px;
}

.partner-data .choose-partner input:disabled.autocompleter {
  background-color: transparent;
  font-size: 18px;
  padding: 0;
  font-weight: bold;
  margin: 0;
  color: #444;
}

.partner-data .partner-address {
  font-size: 10px;
  color: #444;
  padding: 5px 0;
  float: left;
  position: relative;
}

.partner-data .border-bottom {
  border-bottom: 1px solid #fff !important;
}

.partner-data .businessBalance {
  white-space: nowrap;
  float: right;
  position: relative;
}

.partner-data.nopadding {
  padding: 1px;
}

.partner-data.nopadding .choose-partner {
  padding: 7px;
}

.partner-data.nopadding .partner-label {
  padding-right: 5px;
  margin-top: 0;
}

.partner-data.partner-data--compact {
  border: none;
  margin-bottom: 0;
}

.partner-data.partner-data--compact div.choose-partner input.autocompleter {
  border: none;
  font-size: 14px;
}

.partner-data.required .choose-partner:before {
  content: url("/assets/ctx/6fed3530/layout/images/bck-required.png");
  margin-right: 3px;
  vertical-align: top;
  margin-top: 2px;
  float: left;
}

@media (max-width: 576px) {
  /* used to be 400px */
  .partner-data .businessBalance {
    white-space: normal;
  }
}

@media (max-width: 850px) {
  .choose-partner-with-contact,
  .partner-label-with-contact {
    float: none !important;
  }
}

/*endregion*/

/*region Report Styles */
#jrcont {
  word-break: break-all;
}

#jrcont table {
  width: 99%;
  width: calc(100% - 10px);
}

#jrcont table td#filter {
  padding: 2px;
  vertical-align: top;
}

#jrcont table td {
  padding: 0 5px;
  margin: 0;
  line-height: 20px;
}

#jrcont table td.row0,
#jrcont table td.row1,
#jrcont table td#row0,
#jrcont table td#row1 {
  height: 30px;
  border: 1px solid #eeeeee;
  border-bottom: 1px solid #ddd;
}

#jrcont table td p,
#jrcont #groupFooter p {
  padding: 0;
  margin: 0;
  font-size: 12px !important;
  line-height: 20px;
}

#jrcont table td p {
  word-break: break-all;
}

#jrcont table td img {
  display: block;
  margin: 0 auto;
}

#jrcont table td#row1,
#jrcont table td.row1 {
  background: #f3f3f3;
}

#jrcont table td.footer-background {
  background: #ddd;
  font-weight: bold;
}

#jrcont #row1Red {
  color: #f02b2b;
  background: #f3f3f3;
  border: 1px solid #eeeeee;
  border-bottom: 1px solid #ddd;
}

#jrcont #brdr {
  border-left: 1px solid #eee;
}

#jrcont #brdrBold {
  border-left: 1px solid #eee;
  font-weight: bold;
}

#jrcont #alignRight,
#jrcont .alignRight {
  text-align: right;
}

#jrcont #bold,
#jrcont .bold {
  font-weight: bold;
}

#jrcont .brdrTop {
  border-top: 1px solid #eee;
}

#jrcont #red {
  color: #f02b2b;
}

#jrcont td#red {
  border: 1px solid #eeeeee;
  border-bottom: 1px solid #ddd;
}

#jrcont #heading {
  display: none;
}

#jrcont #groupHeader,
#jrcont #footerHeading {
  font-size: 24px !important;
  margin: 0;
  background-color: #73a8bc;
  color: #fff;
  border-bottom: 10px solid white;
  border-top: 30px solid white;
  padding: 10px 5px;
}

#jrcont #footerHeading {
  color: #566770;
  background-color: #ced9db;
}

#jrcont #th,
#jrcont #thCenter {
  color: #fff;
  text-align: left;
  color: var(--col-dark-blue);
  white-space: nowrap;
  padding: 10px 5px;
  min-width: 15px;
  font-size: 14px;
  font-weight: 300;
  background-color: #cddee4;
  border: 1px solid #c7c7c7;
  text-transform: uppercase;
}

#jrcont #thCenter {
  text-align: center;
}

#jrcont #groupFooterAlignRight {
  padding: 5px;
  text-align: right;
  font-weight: bold;
}

#jrcont #groupFooterAlignRight p {
  float: right;
}

#jrcont #groupFooter {
  padding: 5px;
  font-weight: bold;
}

#jrcont #footer {
  padding: 2px;
}

#jrcont td.subheading {
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  color: #444;
}

.jr-min-width-7em {
  min-width: 7em;
}

.withShadow {
  padding: 5px;
  border: 1px solid #ddd;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #efefef;
}
.withShadow h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

.withShadow .dateContainer input.dateField {
  width: 6.25em;
}

.withShadow .description {
  height: 208px !important;
}

/*endregion*/

.reportDateSpanFilter {
  display: inline-block;
  margin-right: 5px;
}

/*region ScrollableImage */
.scrollableImage {
  min-height: 200px;
  height: 30vh;
  width: 100%;
  border: 1px solid #ddd;
  overflow-x: hidden;
  overflow-y: scroll;
}

.scrollableImageContainer {
  position: relative;
  min-height: 200px;
  height: 30vh;
  width: 100%;
}

/*endregion*/

/*region SettingsMenuComp */
.leftMenu {
  padding-bottom: 10px;
}

@media (min-width: 576px) {
  .leftMenuHolder {
    position: relative;
  }

  .leftMenu {
    width: 45px;
    position: absolute;
    left: 0;
    background-color: #fff;
    z-index: 1;
    transition: all 0.2s;
  }

  .rightContent {
    padding-left: 55px;
  }

  .leftMenu .settingsHeading {
    display: none;
  }

  .leftMenu.menuShown {
    width: 210px;
    position: absolute;
  }

  .leftMenu.menuShown .settingsHeading {
    display: block;
  }
}

@media (min-width: 992px) {
  .settings-page {
    display: flex;
  }

  .leftMenu {
    width: 210px;
    position: static;
    margin-right: 1.5rem;
  }

  .rightContent {
    padding-left: 0;
    flex-grow: 1;
  }

  .leftMenu .settingsHeading {
    display: block;
  }

  .leftMenu.menuShown {
    position: initial;
  }
}

.leftMenu ul.childMenu {
  overflow: hidden;
}

@media (min-width: 992px) {
  [data-page-initialized="false"] .childMenu {
    display: block !important;
  }
}

.leftMenu .header {
  background-color: #7db541;
  color: #fff;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
}

.leftMenu .header a {
  color: #fff;
  display: inline-block;
  width: 100%;
  min-height: 25px;
  padding: 10px;
  font-size: 14px;
  line-height: 25px;
}

.leftMenu .companySettings a {
  line-height: 16px;
}

.leftMenu .settingsIcon {
  width: 25px;
  height: 25px;
  float: left;
}

.leftMenu .settingsHeading {
  margin-left: 10px;
  float: left;
  width: 75%;
  overflow: hidden;
}

.leftMenu .companySettings .settingsIcon {
  background: transparent url("/assets/ctx/ff1c39e/layout/images/btn-settings.png") 50% 50% no-repeat;
  background-size: 18px;
}

.leftMenu .mySmartAccounts .settingsIcon {
  background: transparent url("/assets/ctx/129547d3/layout/images/btn-register.png") 50% 50% no-repeat;
  background-size: 18px;
}

.leftMenu .admin .settingsIcon {
  background: transparent url("/assets/ctx/9839f62f/layout/images/btn-group.png") 50% 50% no-repeat;
  background-size: 18px;
}

.leftMenu ul {
  list-style-type: none;
  padding: 10px 0;
  margin: 0;
}

.leftMenu ul li {
  padding: 0;
  margin: 0;
}

.leftMenu ul li a {
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 7px 10px;
  box-sizing: border-box;
}

.leftMenu ul li .currentPage {
  padding-left: 14px;
  background: transparent url("/assets/ctx/5091bf6e/layout/images/btn-page-next.png") 5px 50% / 5px no-repeat;
  font-weight: bold;
}

.leftMenu .separator {
  border-bottom: 1px solid #ddd;
}
/*endregion*/

/*region ShortCutLinksCompNew */
.shortcutlinks {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.shortcutlinks li {
  font-size: 12px;
  padding: 5px;
}

.shortcutlinks .shortcutlinks__container {
  padding: 0;
  margin: 0;
  background-color: var(--col-bg-light-blue);
}

.shortcutlinks .heading {
  padding: 5px;
  font-size: 14px;
  background-color: #ced9db;
}

.shortcutlinks ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.shortcutlinks .separator {
  border-bottom: 1px solid #efefef;
  padding: 0;
  height: 1px;
}

.shortcutlinks li ul li {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.shortcutlinks a {
  display: block;
  padding: 5px;
  margin: 1px;
  width: 100%;
  color: #333;
  box-sizing: border-box;
}

.shortcutlinks a:hover {
  text-decoration: none;
  background-color: #e2ebef;
  color: #4798c4;
}

.newMessagesNotice {
  min-height: 40px;
  background-color: #7eb642;
  padding: 5px;
  margin-bottom: 5px;
}

.newMessagesNotice .header {
  color: #fff;
  line-height: 30px;
  font-size: 16px;
}

.newMessagesNotice .newMessagesCount {
  float: right;
  background: url("/assets/ctx/7bf4f3d6/layout/images/ico-new-messages.png") right 5px top 100% no-repeat;
  background-size: 35px;
  height: 30px;
  width: 45px;
  font-size: 10px;
  text-align: right;
}

.newMessagesNotice img {
  vertical-align: middle;
}

/*endregion*/

/* ShortCutLinksComp */

.shortcuts p.border-bottom {
  margin: 0 20px 5px 0;
  font-weight: bold;
}

.shortcuts p.pl10 {
  padding: 3px;
  margin: 0;
}

/*region SmallAdditionalDataComp*/
.smallAdditionalDataComp {
  position: absolute;
  min-width: 100px;
  background-color: #fff;
  display: none;
  top: 30px;
  left: 0;
  border: 2px solid #fff;
  text-align: left;
  line-height: 16px;
  box-shadow: 1px 3px 3px #aaa;
  z-index: 20;
}

.smallAdditionalDataCompContent {
  text-align: left;
  position: relative;
}

.smallAdditionalDataCompContent p {
  line-height: 1.2em;
  background: transparent url("/assets/ctx/5091bf6e/layout/images/btn-page-next.png") 0 50% no-repeat;
  background-size: 7px;
  padding: 0 0 0 15px;
  margin: 10px 5px;
  position: relative;
  white-space: pre-wrap; /* CSS3 */
  white-space: -moz-pre-wrap; /* Firefox */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* IE */
}

.smallAdditionalDataCompHeader {
  height: 22px;
  color: #fff;
  background-color: #73a8bc;
  padding: 0 5px;
  line-height: 22px;
  position: relative;
  text-align: left;
  margin-bottom: 5px;
}

.smallAdditionalDataComp .close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: #fff url("/assets/ctx/2f11f647/layout/images/btn-close.png") 50% 50% no-repeat;
  background-size: 12px;
}

.smallAdditionalDataComp.warning .smallAdditionalDataCompHeader {
  background-color: #f39242;
}

.smallAdditionalDataComp .clear {
  display: table !important;
  background: none;
  min-width: 150px;
  float: none;
  width: 100%;
}

.smallAdditionalDataComp .clear tr {
  display: table-row !important;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  float: none;
  color: #455a64;
  border-bottom: 1px solid #ddd;
}

.smallAdditionalDataComp .clear td {
  display: table-cell !important;
  padding: 5px 10px;
  background: none;
  white-space: nowrap;
  float: none;
  border: none;
}

.smallAdditionalDataComp .clear tr td:before {
  float: none;
}

.smallAdditionalDataComp table tr.sum {
  background-color: #94b7c6;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .smallAdditionalDataComp .clear tr.sum {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .smallAdditionalDataComp .clear thead tr {
    display: none !important;
    border: 1px solid red;
  }
}

/*endregion*/

/*region Upload Components*/
.uploadFileLabel input[type="file"],
.file-input-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
}

.uploadFileLabel {
  display: inline-block;
  text-transform: uppercase;
  padding: 5px 10px;
  background: #5199c9 none;
  color: #fff;
  border: 1px solid #5199c9;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  min-width: 12rem;
  height: 2.5rem;
  line-height: var(--bs-body-line-height);
}

.uploadFileLabel > img {
  border: 1px solid white;
  border-radius: 50%;
}

.uploadFileLabel:hover {
  text-decoration: none;
  background-color: #62a3c9;
}
/*endregion*/

/*region .upload-card*/
.upload-card {
  border: thin dashed gray;
  border-radius: 1px;
  font-size: 14px;
  color: #455a64;
  padding: 1.5rem;
  min-height: 100%;
  position: relative;
}
.upload-card__label {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-card__icon {
  height: 35px;
  margin: 6px;
}
/*endregion*/

/*region UserGroupRestrictionPaletteComp*/
.userGroupRadios input[type="radio"] {
  display: none;
}

.userGroupRadios input[type="radio"] + label span {
  display: inline-block;
  padding: 5px 15px 5px 40px;
  border-radius: 5px;
  color: #fff !important;
  font-size: 14px;
  transition: all 0.2s;
  min-width: 110px;
}

.userGroupRadios p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: #555;
  margin-bottom: 25px;
  padding-left: 10px;
}

.userGroupRadios input[type="radio"] + label span.green {
  background: #bbb url("/assets/ctx/822b6c1e/layout/images/btn-yes.png") 10px 50% no-repeat;
  background-size: 20px;
}

.userGroupRadios input[type="radio"]:checked + label span.green {
  background: #4a9cc9 url("/assets/ctx/822b6c1e/layout/images/btn-yes.png") 10px 50% no-repeat;
  background-size: 20px;
}

.userGroupRadios input[type="radio"] + label span.red {
  background: #bbb url("/assets/ctx/9b9e59b4/layout/images/btn-no.png") 10px 50% no-repeat;
  background-size: 20px;
}

.userGroupRadios input[type="radio"]:checked + label span.red {
  background: #f39242 url("/assets/ctx/9b9e59b4/layout/images/btn-no.png") 10px 50% no-repeat;
  background-size: 20px;
}
/*endregion*/

/*region UserNoticeMessages */
.small-button-orange {
  font-size: 14px;
  background: var(--col-delete);
}
/*endregion*/

/*region TabSet */
.tabSet {
  padding: 5px;
}

.ck_tabSetContent {
  clear: left;
  border: 1px solid #94b7c6;
  padding: 5px;
  min-height: 150px;
  position: relative;
}

.tabLink {
  display: block;
  line-height: 20px;
  font-size: 14px;
  float: left;
  padding: 5px 20px;
  min-width: 80px;
  margin-right: 2px;
  margin-top: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  background-color: #cddee4;
  color: #455a64;
  box-sizing: border-box;
  border-radius: 5px 5px 0 0;
}

.tabLink:hover {
  background-color: #4a9cc9;
  color: #fff;
}

.tabLink_active {
  font-size: 16px;
  padding-top: 8px;
  margin-top: 0;
  background-color: #4a9cc9;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .tabLink {
    min-width: 15%;
  }
}

@media screen and (max-width: 576px) {
  .tabLink {
    min-width: 35%;
  }
}

@media screen and (max-width: 400px) {
  .tabLink {
    min-width: 100%;
    border-radius: 0;
    margin-bottom: 1px;
  }
}

/*endregion*/

#timeoutMinutes {
  font-weight: bold;
  color: #f02b2b;
  font-size: 16px;
}

/*region Toolbar / .comp-heading .comp-div-toolbar */
.comp-heading {
  margin: 0;
  background: #73a8bc;
  min-height: 64px;
}

@media screen and (max-width: 768px) {
  .comp-heading {
    /* avoids double clicks? */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

.comp-heading-error {
  background: firebrick;
}

.comp-heading__heading {
  font-size: 24px;
  margin-top: 4px;
  margin-left: 10px;
  color: #fff;
}

.comp-heading .heading {
  font-size: 24px;
  margin-top: 4px;
  margin-left: 10px;
  color: #fff;
  float: left;
  overflow: hidden;
}

.comp-heading .beta a {
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  margin: 12px 15px;
  float: left;
  color: #fff;
  max-height: 12px;
}

.comp-heading .gridExport a {
  color: #efefef;
}

.comp-heading.comp-heading-grey {
  background-color: #e9e9e9;
  position: relative;
  min-height: 0;
}

.comp-heading .close-and-help {
  float: right;
  height: 64px;
  width: 32px;
  border-left: 3px solid #fff;
  box-sizing: content-box;
  background-color: #fff;
}

.comp-heading .close-x {
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  background: #fff url("/assets/ctx/2f11f647/layout/images/btn-close.png") 50% 50% no-repeat;
  background-size: 14px;
}

.comp-heading .close-x a {
  width: 32px;
  height: 32px;
  display: inline-block;
}

.comp-heading .small-help {
  position: absolute;
  top: 32px;
  width: 32px;
  height: 32px;
  background: #ced8de url("/assets/ctx/80f2ae48/layout/images/btn-help-grey.png") 50% 50% no-repeat;
  background-size: 8px;
}

.comp-heading .small-help a {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.comp-heading .small-more {
  position: absolute;
  top: 32px;
  right: 0;
  width: 32px;
  height: 32px;
  background: #e9e9e9 url("/assets/ctx/1b67db82/layout/images/ico-sort-ascending.png") 50% 50% no-repeat;
  background-size: 12px;
  transition: all 0.2s;
}

.comp-heading .small-more:hover {
  background-size: 14px;
}

.comp-heading .small-more a {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.comp-heading .small-help.disabled {
  background-image: none;
  background-color: #ced8de;
}

@media (max-width: 576px) {
  .comp-heading__heading {
    font-size: 12px;
  }

  .comp-heading .gridExport a {
    font-size: 9px;
  }

  .comp-heading .gridExport a {
    font-size: 10px;
    padding: 3px 10px 6px 0;
  }

  .comp-heading {
    min-height: 50px;
  }

  .comp-heading .toolbar-separator {
    min-height: 50px;
  }

  .comp-heading .close-and-help {
    height: 50px;
    width: 25px;
  }

  .comp-heading .close-x {
    width: 25px;
    height: 25px;
    background-size: 8px;
  }

  .comp-heading .close-x a {
    width: 25px;
    height: 25px;
  }

  .comp-heading .small-help {
    top: 25px;
    width: 25px;
    height: 25px;
    background-size: 6px;
  }

  .comp-heading .small-help a {
    display: inline-block;
    width: 25px;
    height: 25px;
  }
}

.audit-trail {
  background: url("/assets/ctx/e26a10b4/layout/images/btn-edit.png") left 0 bottom 0 no-repeat;
  background-size: 13px;
  padding-top: 2px;
  height: 13px;
  padding-left: 17px;
  color: #fff;
  font-size: 11px;
  line-height: 13px;
  margin-left: 10px;
}

@media (max-width: 576px) {
  .audit-trail {
    top: 25px;
  }
}

/*noinspection CssOverwrittenProperties*/
.audit-trail-details {
  position: relative;
  visibility: hidden;
  padding: 10px;
  color: #455a64;
  line-height: 20px;
  background-color: #efefef;
  border: 2px solid #fff;
  box-shadow: 1px 1px 2px #aaa;
  /* SD-213 */
  /* Increased it from 20 -> 191, one higher than .small-toolbar.small-toolbar-shown z-index */
  z-index: 191;
  /* Untested IE solution */
  max-width: 220px;
  max-width: max-content;
  /* Just in case. The box becomes really ugly when it wraps and we'd rather clip the text. */
  white-space: nowrap;
  overflow: hidden;
}
.audit-trail:hover .audit-trail-details {
  visibility: visible;
}

.comp-toolbar table td .overlay-content {
  text-align: left;
}

.comp-div-toolbar {
  position: relative;
  float: right;
  padding-left: 5px;
  height: 100%;
}

.comp-div-toolbar .floating {
  padding: 5px 0 1px 0;
  text-align: center;
  color: #333;
}

@media only screen and (max-width: 768px) {
  .comp-div-toolbar .comp-help {
    border-left: none !important;
  }
}

.small-toolbar {
  width: 100%;
  min-height: 30px;
  text-align: right;
  border-top: 2px solid #fff;
  position: relative;
  z-index: 189;
}

.small-toolbar.small-toolbar-shown {
  z-index: 190;
}

@media screen and (max-width: 576px) and (min-height: 576px) {
  .small-toolbar {
    position: absolute;
  }
}

/*endregion*/

/*region .export-files-block  */
.export-files-block {
  color: #fff;
  background-color: #94b7c6;
  padding-left: 10px;
}

.export-files-block .detailHeader {
  padding-right: 20px;
}

.export-files-block a {
  display: inline-block;
  line-height: 25px;
  padding: 3px 7px;
  color: #0b596d;
}

.export-files-block .export-files-links-container {
  background: url("/assets/ctx/6fcf944d/layout/images/btn-export.png") 10px 50% no-repeat;
  padding-left: 25px;
  background-size: 12px;
}
/*endregion*/

.newVendor {
  display: inline-block;
  padding: 5px 0 0 3px;
  vertical-align: top;
}

.upload {
  border: none;
  width: 70%;
}

.warehouseQuantity {
  background-color: #f5f5f5;
  display: inline-block;
  text-align: right;
  border-left: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}

.warehouseQuantity span.icon-warehouse {
  font-size: 12px;
  padding-left: 3px;
  color: var(--col-dark-blue);
  width: 14px;
  display: inline-block;
}

.red span.icon-warehouse {
  color: #ef5350;
}

.view {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 25px;
  font-size: 11px;
}

.table-cell-link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.noDataInGrid {
  color: #444;
  font-size: 16px;
}

.noDataInGrid span {
  font-size: 13px;
}

.helptext,
.noDataInGrid {
  padding: 10px;
  min-height: 20px;
  font-size: 13px;
}

.helptext.wBorder {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
}

/*region processSteps */
.processSteps {
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #90a4ae;
}

.processSteps .step.hasNext:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -10px;
  width: 25px;
  height: 25px;
  z-index: 1;
  transform: rotate(45deg);
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  background-color: #90a4ae;
}

.processSteps .step {
  float: left;
  padding: 5px 25px 5px 25px;
  text-transform: uppercase;
  text-align: center;
  min-width: 80px;
  position: relative;
  background-color: #90a4ae;
  overflow: visible;
  color: #ddd;
}

.processSteps a.step {
  color: #fff;
  background-color: #607d8b;
}

.processSteps a.step.hasNext:after {
  background-color: #607d8b;
}

.processSteps .step.active {
  background-color: #455a64;
  color: #fff;
}

.processSteps .step.active.hasNext:after {
  background-color: #455a64;
}

.processButton {
  display: inline-block;
  background: #607d8b url("/assets/ctx/822b6c1e/layout/images/btn-yes.png") 10px 50% no-repeat; /* !!!! COLOR CODE */
  background-size: 15px;
  font-size: 18px;
  padding: 5px 15px 5px 40px;
  margin-top: 10px;
  color: #fff !important;
  border: none;
  width: auto;
  outline: none;
}

.processButton.pbGreen {
  background-color: #8bc34a;
  text-transform: uppercase;
}

.processChosenOption {
  display: inline-block;
  font-size: 16px;
  border-bottom: 1px solid #999;
  padding: 5px;
  margin: 0;
  margin-right: 20px;
  margin-top: 10px;
}
/*endregion*/

/* region user-messages */
.messages__mark-all-read-button {
  background: center / contain no-repeat url("/assets/ctx/zaa758f13/layout/images/messages/icon-unread.svg");
  height: 1.5rem;
  width: 1.5rem;
}
.messages__mark-all-read-button:hover {
  background-image: url("/assets/ctx/zb74b96d3/layout/images/messages/icon-read.svg");
}
.release-notes__entry {
  color: #606e76;
}
.message {
  background: var(--col-bg-light-blue);
  color: var(--col-text-gray);
  transition: background-color 0.4s;
}
.message--bell-card {
  background: white;
}
.message:hover {
  background: #f6f8f9;
}
.message--open {
  background: white;
  box-shadow: 0 0 1rem var(--comp-card-shadow-color);
  z-index: 1;
}
.message--open:hover {
  background: white;
}
.message__header {
  text-align: left;
  width: 100%;
  display: grid;
  grid-template-columns: 6rem minmax(auto, 100%) auto;
  column-gap: 1rem;
  align-items: center;
}
.message--open .message__description {
  cursor: pointer;
}
.message--unread .message__description {
  cursor: pointer;
  font-weight: 500;
}
.message__date {
  color: #7ca8ba;
}
.message__read-button {
  background: center / contain no-repeat url("/assets/ctx/zb74b96d3/layout/images/messages/icon-read.svg");
  height: 1.5rem;
  width: 1.5rem;
  transition: filter 0.4s;
}
.message__read-button:hover,
.message__star-button:hover {
  filter: drop-shadow(0 0 0.1rem #b1babe);
}
.message--unread .message__read-button {
  background-image: url("/assets/ctx/zaa758f13/layout/images/messages/icon-unread.svg");
}
.message__star-button {
  background: center / contain no-repeat url("/assets/ctx/zb0dab47b/layout/images/messages/icon-not-starred.svg");
  height: 1.5rem;
  width: 1.5rem;
  transition: filter 0.4s;
}
.message__star-button--starred {
  background-image: url("/assets/ctx/z964f6f98/layout/images/messages/icon-starred.svg");
}
.messages-bell {
  position: relative;
}
.messages-bell__unread {
  position: absolute;
  top: 1px;
  right: 1px;
  background: orange;
  color: white;
  padding: 0.25rem 0.4rem;
}
.messages-bell__button {
  display: flex;
  height: 100%;
  padding: 0 1em;
  position: relative;
}
.messages-card {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0.5rem;
  width: calc(100vw - 1rem);
  max-width: 50rem;
  z-index: 2;
  box-shadow:
    -0.5rem 0.5rem 0.5rem var(--comp-card-shadow-color),
    0.5rem 0.5rem 0.5rem var(--comp-card-shadow-color);
}

.messages-settings-icon {
  display: block;
  background: transparent url("/assets/ctx/f57a22a/layout/images/settings-grey.png") 50% 50% no-repeat;
  background-size: 18px;
  width: 25px;
  height: 25px;
}
/* endregion */

/* region sent-email-popup */
.salaries-sent-emails-container {
  white-space: nowrap;
  min-width: 250px;
}

@media screen and (max-width: 576px) {
  .salaries-sent-emails-container {
    white-space: normal;
  }
}
/* endregion */

/* region SideByDocumentViewer */
.document-viewer-div {
  display: none;
  /* 'flex-shrink: 2' makes SideByDocumentViewer resize before AddEdit */
  flex-shrink: 2;
  max-width: 800px;
}

@media screen and (min-width: 1440px) {
  .document-viewer-div {
    width: auto;
    min-width: unset;
  }

  .document-viewer-div:has(#sideByDocumentViewer) {
    display: block;
    width: 100%;
    min-width: 400px;
  }
}

@media screen and (min-width: 1600px) {
  .document-viewer-div {
    /* Since SideByDocumentViewer goes smaller before the document AddEdit, at 1600px or more of
        screen width, allow SideByDocumentViewer to go as small as 600px. This:
        a) allows the sideByDocumentViewer to not go too small for the available screen size
        b) starts forcing the addEdit to shrink once sideByDocumentViewer has reached 600px. */
    min-width: 600px;
  }
}
/* endregion */
