/** Colours
    SCSS which is unique to every project, implements the unique style colours/fonts for this project.
*/
/*Arial, Helvetica, sans-serif;*/
/*9pt;*/
/** 
    MIXINS FROM COMPASS
    to be put in its own scss file, probably, _donottouch_compass_mixins.scss
*/
/* #region Page Layout */
div#divContent {
  height: 100%;
  padding: 0.3rem;
}

div.verticalContentLayout {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div.verticalContentLayout > div {
  padding: 0px;
  margin: 0px;
  border: 0px;
  flex-shrink: 0;
  flex-grow: 0;
}

div.verticalContentLayout > div.expandable {
  flex-shrink: 1;
  flex-grow: 1;
  overflow-y: auto;
  height: 10px;
}

div.verticalContentLayout > div.TabContent {
  border: 1px solid #933c06;
}

div.horizontalContentLayout {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div.horizontalContentLayout > div {
  padding: 0px;
  margin: 0px;
  border: 0px;
  flex-shrink: 0;
  flex-grow: 0;
}

div.horizontalContentLayout > div.expandable {
  flex-shrink: 1;
  flex-grow: 1;
  overflow-x: auto;
  width: 10px;
}

div.horizontalContentLayout > div.TabContent {
  border: 1px solid #933c06;
}

div.absolutecenter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

div.listHeader, table.listHeader {
  border: 1px solid #933c06;
  border-radius: 5px;
  padding: 3px 0px;
  background: linear-gradient(0deg, #712e05, #b54a07);
  color: #ffffff;
  font-weight: bold;
  transition: unset;
}

div.listHeader table, table.listHeader table {
  table-layout: fixed;
  width: 100%;
}

div.listHeader .left, table.listHeader .left {
  text-align: left;
}

div.listHeader .center, table.listHeader .center {
  text-align: center;
}

div.listHeader .right, table.listHeader .right {
  text-align: right;
}

div.listHeader.scroll, table.listHeader.scroll {
  margin-right: 18px;
}

table.properties {
  table-layout: fixed;
  width: 100%;
}

table.properties td {
  height: 2.3rem;
}

table.properties td:first-child {
  font-weight: bold;
}

div.sectionWithHeader {
  box-sizing: border-box;
}

div.sectionWithHeader > div:first-child {
  padding: 3px 0px;
  background: linear-gradient(0deg, #763005, #bf4e08);
  border-left: 1px solid #933c06;
  border-right: 1px solid #933c06;
  border-top: 1px solid #933c06;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-weight: bold;
  transition: unset;
}

div.sectionWithHeader > div:first-child table {
  table-layout: fixed;
  width: 100%;
}

div.sectionWithHeader > div:first-child .left {
  text-align: left;
}

div.sectionWithHeader > div:first-child .center {
  text-align: center;
}

div.sectionWithHeader > div:first-child .right {
  text-align: right;
}

div.sectionWithHeader > div:first-child.scroll {
  margin-right: 18px;
}

div.sectionWithHeader > div:last-child {
  border-left: 1px solid #933c06;
  border-right: 1px solid #933c06;
  border-bottom: 1px solid #933c06;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

div.section {
  border: 1px solid #933c06;
  border-radius: 6px;
}

div.scrollHeader.scroll {
  margin-right: 14px;
}

div.reportControl {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 0px;
  margin: 0px;
  border: 0px;
  position: relative;
}

div.reportControl > div {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div.reportControl > div:first-child {
  flex-shrink: 0;
  flex-grow: 0;
  border-right: 1px solid #933c06;
  position: relative;
  padding-right: 14px;
  margin-right: 14px;
  background-color: #ffffff;
  width: 350px;
}

div.reportControl > div:first-child div.expandCollapse {
  position: absolute;
  border: 1px solid #933c06;
  background: linear-gradient(0deg, #893806, #d35609);
  border-radius: 12px;
  background-color: #ffffff;
  font-size: 18px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  z-index: 100;
  color: #ffffff;
  transform: rotate(90deg);
  top: 12px;
  right: -13px;
}

div.reportControl > div:first-child div.expandCollapse:hover {
  background: linear-gradient(0deg, #763005, #bf4e08);
}

div.reportControl > div:first-child div.selections {
  max-width: 100%;
  width: 100%;
  justify-content: flex-end;
}

div.reportControl > div:first-child div.selections * {
  max-width: 100%;
}

div.reportControl > div:first-child.collapsed {
  width: 0px !important;
}

div.reportControl > div:first-child.collapsed div.expandCollapse {
  transform: rotate(-90deg);
  display: block !important;
}

div.reportControl > div:first-child.collapsed div.selections {
  display: none;
}

div.reportControl > div:first-child.collapsed:not(:has(div.expandCollapse:hover)):hover {
  width: initial !important;
  position: absolute;
  z-index: 50;
  height: 100%;
}

div.reportControl > div:first-child.collapsed:not(:has(div.expandCollapse:hover)):hover div.selections {
  display: block;
}

div.reportControl > div:first-child div.reportSelection {
  width: 100%;
  margin-top: 0.5em;
}

div.reportControl > div:first-child div.reportSelection > div:first-child {
  white-space: nowrap;
}

div.reportControl > div:first-child div.reportSelection > div:last-child {
  flex-grow: 1;
}

div.reportControl > div:first-child div.reportSelection > div:last-child select, div.reportControl > div:first-child div.reportSelection > div:last-child date-range-picker, div.reportControl > div:first-child div.reportSelection > div:last-child div.date-range-picker {
  min-width: 100%;
  width: 100%;
}

div.reportControl > div:first-child div.reportButton {
  background-color: unset;
  border-radius: 0px;
  padding: 0px;
  width: auto;
  margin-top: 0.5em;
  justify-content: flex-end;
}

div.reportControl > div:first-child div.reportButton > div:first-child {
  font-weight: unset;
}

div.reportControl > div:first-child div.reportButton.primary {
  width: 100%;
  margin-left: auto;
}

div.reportControl > div:first-child div.reportSpacer {
  background-color: unset;
  border-radius: 0px;
  padding: 0px;
  flex-grow: 1;
  margin-right: -1.49em;
}

div.reportControl > div:last-child {
  flex-grow: 1;
  flex-shrink: 0;
  overflow: auto;
  width: 200px;
}

div.reportControl > div:last-child > div:first-child {
  padding: 0px 0px 4px 0px;
  font-size: 9pt;
}

div.reportControl > div:last-child > div:first-child div.error {
  border: 1px solid #c50f24;
  background-color: rgba(197, 15, 36, 0.2);
  padding: 0.5em;
  border-radius: 8px;
}

div.reportControl > div.collapsed:not(:has(div.expandCollapse:hover)):hover + div {
  margin-left: 29px;
}

div.reportControl.portrait {
  flex-direction: column;
}

div.reportControl.portrait > div:first-child {
  border-right: 0px;
  border-bottom: 1px solid #933c06;
  padding-right: 0px;
  padding-bottom: 14px;
  margin-right: 0px;
  margin-bottom: 14px;
  width: 100% !important;
}

div.reportControl.portrait > div:first-child div.expandCollapse {
  transform: rotate(180deg);
  top: unset;
  bottom: -14px;
  right: 12px;
}

div.reportControl.portrait > div:first-child div.selections {
  width: 100%;
  max-width: 100% !important;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

div.reportControl.portrait > div:first-child.collapsed {
  height: 0px;
}

div.reportControl.portrait > div:first-child.collapsed div.expandCollapse {
  transform: rotate(0deg);
}

div.reportControl.portrait > div:first-child.collapsed div.selections {
  display: none;
}

div.reportControl.portrait > div:first-child.collapsed:not(:has(div.expandCollapse:hover)):hover {
  width: 100% !important;
  height: unset;
}

div.reportControl.portrait > div:first-child.collapsed:not(:has(div.expandCollapse:hover)):hover div.selections {
  display: flex;
}

div.reportControl.portrait > div:first-child div.reportSelection, div.reportControl.portrait > div:first-child div.reportButton {
  width: auto;
}

div.reportControl.portrait > div:first-child div.reportButton.primary {
  width: auto;
}

div.reportControl.portrait > div:last-child {
  width: 100%;
  height: 150px;
}

div.reportControl.portrait > div:last-child > div:first-child {
  padding: 8px 0px 4px 0px;
}

div.reportControl.portrait > div.collapsed:not(:has(div.expandCollapse:hover)):hover + div {
  margin-left: 0px;
  margin-top: 29px;
}

div.reportControl:not(.portrait) > div:first-child div.selections {
  max-height: 99%;
  padding: 1px 0px;
  overflow: visible;
}

div.tabs {
  background-color: #d4b19b;
  padding: 0.3rem 0 0.3rem 0.3rem !important;
}

div.tabs div.tab {
  color: #ffffff;
  line-height: 32px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
  padding-left: 0.3rem;
  background-color: rgba(255, 255, 255, 0.2);
}

div.tabs div.tab + div.tab {
  margin-top: 2px;
}

div.tabs div.tab.selected {
  background-color: #ffffff !important;
  color: #933c06;
  cursor: default;
  border-left: 5px solid #9ea615;
}

div.tabs div.tab:hover {
  background-color: #e3cdbf;
}

div.selections {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5em 1.5em;
}

div.selections > div {
  display: flex;
  background-color: rgba(147, 60, 6, 0.3);
  border-radius: 20px;
  align-items: center;
  padding: 0 0.5em 2px 1em;
}

div.selections > div > div:first-child {
  padding-right: 1em;
  font-weight: bold;
}

div.selections > div input[type=text], div.selections > div input[type=password], div.selections > div input[type=date], div.selections > div input[type=number], div.selections > div select {
  border: 1px solid transparent;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  max-width: 300px;
}

div.selections > div select {
  padding-right: 0.5em;
  webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16' stroke='%23000' fill='none' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  /* Position arrow */
  background-size: 16px;
  /* Adjust arrow size */
  padding-right: 16px;
  /* Ensure text doesn't overlap arrow */
}

div.selections > div .switch-primary, div.selections > div .switch-secondary, div.selections > div .switch-cancel, div.selections > div .switch-danger {
  top: 4px;
}

div.selections > div:has(.switch-primary, .switch-secondary, .switch-cancel, .switch-danger) {
  align-items: center;
}

/* #endregion */
/* #region Modal Dialog */
div.dialogback {
  position: absolute;
  background-color: #FFFFFF;
  opacity: 0.5;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

div.dialogfore {
  position: absolute;
  z-index: 1001;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

div.container {
  pointer-events: all;
  max-width: 90%;
}

div.container div.titlebar {
  background: linear-gradient(0deg, #712e05, #b54a07);
  height: 26px;
  padding: 1px 5px 1px 5px;
  font-weight: bold;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  cursor: default;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

div.container div.content {
  border-left: 3px Solid #933c06;
  border-bottom: 3px Solid #933c06;
  border-right: 3px Solid #933c06;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 70px);
  overflow: auto;
}

div.container.flash div.titlebar {
  background: linear-gradient(0deg, #b54a07, #f77d31);
}

div.container.flash div.content {
  border-left: 3px Solid #f77d31;
  border-bottom: 3px Solid #f77d31;
  border-right: 3px Solid #f77d31;
}

div.container.danger div.titlebar {
  background: linear-gradient(0deg, #c50f24, #e6122a);
  color: #ffffff;
}

div.container.danger div.content {
  color: #c50f24;
  border-left: 3px Solid #c50f24;
  border-bottom: 3px Solid #c50f24;
  border-right: 3px Solid #c50f24;
}

div.container.danger.flash div.titlebar {
  background: linear-gradient(0deg, #e6122a, #f46f7e);
}

div.container.danger.flash div.content {
  border-left: 3px Solid #f46f7e;
  border-bottom: 3px Solid #f46f7e;
  border-right: 3px Solid #f46f7e;
}

/* #endregion */
/* #region Spin */
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 2000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 2000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.spin-fast {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.spin-slow {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 3000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 3000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.spin-funky {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -moz-animation-name: spin;
  -moz-animation-duration: 2000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -ms-animation-name: spin;
  -ms-animation-duration: 2000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
}

.spin-fast-funky {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
}

.spin-slow-funky {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 3000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -moz-animation-name: spin;
  -moz-animation-duration: 3000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  -ms-animation-name: spin;
  -ms-animation-duration: 3000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.3, 0.7, 0.7, 0.3);
}

/* #endregion */
/* #region Buttons*/
.button-primary {
  border-radius: 100px;
  padding: 6px 15px 5px 15px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(0deg, #959d14, #d6e11c);
  border-color: #9ea615;
  color: #ffffff;
}

.button-primary:not(.disabled):focus, .button-primary:not(.disabled):hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.button-primary .material-symbols-outlined {
  vertical-align: -6px;
  margin-left: -5px;
}

.button-primary.disabled {
  opacity: 0.25;
  filter: grayscale(50%);
  cursor: default;
}

.button-primary.small {
  padding: 3px 6px;
  font-size: 0.8rem;
}

.button-primary.small .material-symbols-outlined {
  font-size: 16px;
  vertical-align: -3px;
  margin-left: -3px;
}

.button-primary.circle {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  vertical-align: middle;
  padding: 0px;
}

.button-primary.circle.small {
  height: 26px;
  width: 26px;
  line-height: 26px;
}

.button-primary.circle.small .material-symbols-outlined {
  margin: 0px;
  font-size: 18px;
  vertical-align: middle;
}

.button-primary.circle .material-symbols-outlined {
  margin: 0px;
  vertical-align: middle;
}

.button-secondary {
  border-radius: 100px;
  padding: 6px 15px 5px 15px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(0deg, #893806, #d35609);
  border-color: #933c06;
  color: #ffffff;
}

.button-secondary:not(.disabled):focus, .button-secondary:not(.disabled):hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.button-secondary .material-symbols-outlined {
  vertical-align: -6px;
  margin-left: -5px;
}

.button-secondary.disabled {
  opacity: 0.25;
  filter: grayscale(50%);
  cursor: default;
}

.button-secondary.small {
  padding: 3px 6px;
  font-size: 0.8rem;
}

.button-secondary.small .material-symbols-outlined {
  font-size: 16px;
  vertical-align: -3px;
  margin-left: -3px;
}

.button-secondary.circle {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  vertical-align: middle;
  padding: 0px;
}

.button-secondary.circle.small {
  height: 26px;
  width: 26px;
  line-height: 26px;
}

.button-secondary.circle.small .material-symbols-outlined {
  margin: 0px;
  font-size: 18px;
  vertical-align: middle;
}

.button-secondary.circle .material-symbols-outlined {
  margin: 0px;
  vertical-align: middle;
}

.button-cancel {
  border-radius: 100px;
  padding: 6px 15px 5px 15px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(0deg, #893806, #d35609);
  border-color: #933c06;
  color: #ffffff;
}

.button-cancel:not(.disabled):focus, .button-cancel:not(.disabled):hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.button-cancel .material-symbols-outlined {
  vertical-align: -6px;
  margin-left: -5px;
}

.button-cancel.disabled {
  opacity: 0.25;
  filter: grayscale(50%);
  cursor: default;
}

.button-cancel.small {
  padding: 3px 6px;
  font-size: 0.8rem;
}

.button-cancel.small .material-symbols-outlined {
  font-size: 16px;
  vertical-align: -3px;
  margin-left: -3px;
}

.button-cancel.circle {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  vertical-align: middle;
  padding: 0px;
}

.button-cancel.circle.small {
  height: 26px;
  width: 26px;
  line-height: 26px;
}

.button-cancel.circle.small .material-symbols-outlined {
  margin: 0px;
  font-size: 18px;
  vertical-align: middle;
}

.button-cancel.circle .material-symbols-outlined {
  margin: 0px;
  vertical-align: middle;
}

.button-delete, .button-danger {
  border-radius: 100px;
  padding: 6px 15px 5px 15px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(0deg, #bc0e22, #ef283f);
  border-color: #c50f24;
  color: #ffffff;
}

.button-delete:not(.disabled):focus, .button-delete:not(.disabled):hover, .button-danger:not(.disabled):focus, .button-danger:not(.disabled):hover {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.button-delete .material-symbols-outlined, .button-danger .material-symbols-outlined {
  vertical-align: -6px;
  margin-left: -5px;
}

.button-delete.disabled, .button-danger.disabled {
  opacity: 0.25;
  filter: grayscale(50%);
  cursor: default;
}

.button-delete.small, .button-danger.small {
  padding: 3px 6px;
  font-size: 0.8rem;
}

.button-delete.small .material-symbols-outlined, .button-danger.small .material-symbols-outlined {
  font-size: 16px;
  vertical-align: -3px;
  margin-left: -3px;
}

.button-delete.circle, .button-danger.circle {
  height: 36px;
  width: 36px;
  line-height: 36px;
  text-align: center;
  vertical-align: middle;
  padding: 0px;
}

.button-delete.circle.small, .button-danger.circle.small {
  height: 26px;
  width: 26px;
  line-height: 26px;
}

.button-delete.circle.small .material-symbols-outlined, .button-danger.circle.small .material-symbols-outlined {
  margin: 0px;
  font-size: 18px;
  vertical-align: middle;
}

.button-delete.circle .material-symbols-outlined, .button-danger.circle .material-symbols-outlined {
  margin: 0px;
  vertical-align: middle;
}

.buttonContainer {
  padding-top: 3px;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5em 1.5em;
  /*div + div {
        margin-left: 8px;
    }*/
}

.buttonContainer.left {
  justify-content: flex-start;
}

.buttonContainer.center {
  justify-content: center;
}

.buttonContainer.right {
  justify-content: flex-end;
}

/* #endregion */
/* #region Tab Container */
div.tabContainer {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  border: 0px;
}

div.tabContainer > div:first-child {
  padding: 0px 1px;
  margin: 0px 10px;
  border: 0px;
  position: relative;
  top: 1px;
  z-index: 1;
  overflow-x: auto;
  white-space: nowrap;
  transform: rotateX(180deg);
  overflow-y: visible;
  flex-shrink: 0;
}

div.tabContainer > div:first-child > div {
  border: 1px solid #933c06;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: inline-block;
  margin-left: -1px;
  line-height: 25px;
  padding: 0px 30px;
  background-color: rgba(147, 60, 6, 0.3);
  transition: unset;
  transform: rotateX(180deg);
}

div.tabContainer > div:first-child > div:hover {
  background-color: rgba(147, 60, 6, 0.25);
  cursor: pointer;
}

div.tabContainer > div:first-child > div.active {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  cursor: default;
}

div.tabContainer > div:first-child > div.active:hover {
  background-color: #ffffff;
}

div.tabContainer > div:first-child::-webkit-scrollbar {
  height: 12px;
}

div.tabContainer > div:first-child::-webkit-scrollbar-track {
  background: rgba(147, 60, 6, 0.25);
  border-radius: 6px;
}

div.tabContainer > div:first-child::-webkit-scrollbar-thumb {
  background: #933c06;
  border-radius: 6px;
}

div.tabContainer > div:last-child {
  padding: 0px;
  margin: -0.5px 0px 0px 0px;
  border: 1px solid #933c06;
  flex-grow: 1;
  overflow-y: auto;
  border-radius: 5px;
}

div.tabContainer > div:last-child > div {
  display: none;
  width: 100%;
  height: 100%;
}

div.tabContainer > div:last-child > div.active {
  display: block;
}

/* #endregion */
/* #region Treeview */
div.treeView div.treeViewNode > div:first-child {
  line-height: 20px;
  white-space: nowrap;
}

div.treeView div.treeViewNode > div:first-child > div:first-child {
  display: inline-block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  visibility: hidden;
  transition: unset;
  cursor: pointer;
}

div.treeView div.treeViewNode > div:first-child > div:first-child:before {
  font-family: 'Material Symbols Outlined';
  content: "play_arrow";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  vertical-align: -5px;
  color: #933c06;
}

div.treeView div.treeViewNode > div:first-child > div:first-child:hover:before {
  color: #9ea615;
}

div.treeView div.treeViewNode > div:first-child > div:last-child {
  display: inline-block;
  cursor: default;
  border: 1px Solid Transparent;
  border-radius: 5px;
  padding: 0px 3px;
  flex-grow: 1;
}

div.treeView div.treeViewNode > div:last-child {
  margin-left: 12px;
  display: none;
}

div.treeView div.treeViewNode.expandable > div:first-child > div:first-child {
  visibility: visible;
}

div.treeView div.treeViewNode.expanded > div:first-child > div:first-child {
  width: 8px;
  height: 8px;
  border-width: 4px;
  margin: 0px 4px 0px 6px;
  border-style: solid;
  border-color: transparent #933c06 #933c06 transparent;
}

div.treeView div.treeViewNode.expanded > div:first-child > div:first-child:before {
  content: "";
}

div.treeView div.treeViewNode.expanded > div:first-child > div:first-child:hover {
  border-color: transparent #9ea615 #9ea615 transparent;
}

div.treeView div.treeViewNode.expanded > div:first-child > div:last-child {
  vertical-align: -0.5px;
}

div.treeView div.treeViewNode.expanded > div:last-child {
  display: block;
}

div.treeView div.treeViewNode.selectable > div:first-child > div:last-child:hover {
  background: #f8995d;
  border: 1px Solid #f67423;
}

div.treeView div.treeViewNode.selected > div:first-child > div:last-child {
  background: #f77d31 !important;
  border: 1px Solid #933c06 !important;
}

/* #endregion */
/* #region Switches */
.switch-primary {
  display: inline-block;
  position: relative;
  outline: none;
}

.switch-primary > label {
  cursor: pointer;
}

.switch-primary > label:nth-child(2) {
  height: 24px;
  width: 54px;
  border-radius: 8px;
  display: inline-block;
  border-radius: 12px;
}

.switch-primary > label:nth-child(2):after {
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  background: #ffffff;
  content: '';
  transition: all .3s ease;
  z-index: 1;
}

.switch-primary > input {
  display: none;
}

.switch-primary > input ~ label:nth-child(3) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  left: 3px;
}

.switch-primary > input ~ label:nth-child(4) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  right: 4px;
}

.switch-primary > input:checked ~ label:nth-child(2):after {
  left: 32px;
}

.switch-primary > input:checked ~ label:nth-child(4) {
  display: none;
}

.switch-primary > input:not(:checked) ~ label:nth-child(2) {
  background: #aaaaaa;
  /*lighten($theme-brown, 30%);*/
}

.switch-primary > input:not(:checked) ~ label:nth-child(3) {
  display: none;
}

.switch-primary > input:disabled ~ label:nth-child(2) {
  background: #aaaaaa;
  cursor: default;
}

.switch-primary > input:disabled ~ label:nth-child(2):after {
  background: #cccccc;
}

.switch-primary > input:disabled ~ label:nth-child(3), .switch-primary > input:disabled ~ label:nth-child(4) {
  cursor: default;
}

.switch-primary > label:nth-child(2) {
  background: #9ea615;
}

.switch-primary > label:nth-child(3) {
  color: #ffffff;
}

.switch-secondary {
  display: inline-block;
  position: relative;
  outline: none;
}

.switch-secondary > label {
  cursor: pointer;
}

.switch-secondary > label:nth-child(2) {
  height: 24px;
  width: 54px;
  border-radius: 8px;
  display: inline-block;
  border-radius: 12px;
}

.switch-secondary > label:nth-child(2):after {
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  background: #ffffff;
  content: '';
  transition: all .3s ease;
  z-index: 1;
}

.switch-secondary > input {
  display: none;
}

.switch-secondary > input ~ label:nth-child(3) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  left: 3px;
}

.switch-secondary > input ~ label:nth-child(4) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  right: 4px;
}

.switch-secondary > input:checked ~ label:nth-child(2):after {
  left: 32px;
}

.switch-secondary > input:checked ~ label:nth-child(4) {
  display: none;
}

.switch-secondary > input:not(:checked) ~ label:nth-child(2) {
  background: #aaaaaa;
  /*lighten($theme-brown, 30%);*/
}

.switch-secondary > input:not(:checked) ~ label:nth-child(3) {
  display: none;
}

.switch-secondary > input:disabled ~ label:nth-child(2) {
  background: #aaaaaa;
  cursor: default;
}

.switch-secondary > input:disabled ~ label:nth-child(2):after {
  background: #cccccc;
}

.switch-secondary > input:disabled ~ label:nth-child(3), .switch-secondary > input:disabled ~ label:nth-child(4) {
  cursor: default;
}

.switch-secondary > label:nth-child(2) {
  background: #933c06;
}

.switch-secondary > label:nth-child(3) {
  color: #ffffff;
}

.switch-cancel {
  display: inline-block;
  position: relative;
  outline: none;
}

.switch-cancel > label {
  cursor: pointer;
}

.switch-cancel > label:nth-child(2) {
  height: 24px;
  width: 54px;
  border-radius: 8px;
  display: inline-block;
  border-radius: 12px;
}

.switch-cancel > label:nth-child(2):after {
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  background: #ffffff;
  content: '';
  transition: all .3s ease;
  z-index: 1;
}

.switch-cancel > input {
  display: none;
}

.switch-cancel > input ~ label:nth-child(3) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  left: 3px;
}

.switch-cancel > input ~ label:nth-child(4) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  right: 4px;
}

.switch-cancel > input:checked ~ label:nth-child(2):after {
  left: 32px;
}

.switch-cancel > input:checked ~ label:nth-child(4) {
  display: none;
}

.switch-cancel > input:not(:checked) ~ label:nth-child(2) {
  background: #aaaaaa;
  /*lighten($theme-brown, 30%);*/
}

.switch-cancel > input:not(:checked) ~ label:nth-child(3) {
  display: none;
}

.switch-cancel > input:disabled ~ label:nth-child(2) {
  background: #aaaaaa;
  cursor: default;
}

.switch-cancel > input:disabled ~ label:nth-child(2):after {
  background: #cccccc;
}

.switch-cancel > input:disabled ~ label:nth-child(3), .switch-cancel > input:disabled ~ label:nth-child(4) {
  cursor: default;
}

.switch-cancel > label:nth-child(2) {
  background: #933c06;
}

.switch-cancel > label:nth-child(3) {
  color: #ffffff;
}

.switch-danger {
  display: inline-block;
  position: relative;
  outline: none;
}

.switch-danger > label {
  cursor: pointer;
}

.switch-danger > label:nth-child(2) {
  height: 24px;
  width: 54px;
  border-radius: 8px;
  display: inline-block;
  border-radius: 12px;
}

.switch-danger > label:nth-child(2):after {
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  background: #ffffff;
  content: '';
  transition: all .3s ease;
  z-index: 1;
}

.switch-danger > input {
  display: none;
}

.switch-danger > input ~ label:nth-child(3) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  left: 3px;
}

.switch-danger > input ~ label:nth-child(4) {
  position: absolute;
  line-height: 24px;
  top: 0px;
  right: 4px;
}

.switch-danger > input:checked ~ label:nth-child(2):after {
  left: 32px;
}

.switch-danger > input:checked ~ label:nth-child(4) {
  display: none;
}

.switch-danger > input:not(:checked) ~ label:nth-child(2) {
  background: #aaaaaa;
  /*lighten($theme-brown, 30%);*/
}

.switch-danger > input:not(:checked) ~ label:nth-child(3) {
  display: none;
}

.switch-danger > input:disabled ~ label:nth-child(2) {
  background: #aaaaaa;
  cursor: default;
}

.switch-danger > input:disabled ~ label:nth-child(2):after {
  background: #cccccc;
}

.switch-danger > input:disabled ~ label:nth-child(3), .switch-danger > input:disabled ~ label:nth-child(4) {
  cursor: default;
}

.switch-danger > label:nth-child(2) {
  background: #c50f24;
}

.switch-danger > label:nth-child(3) {
  color: #ffffff;
}

/* #endregion */
/* #region Collapsible Container */
div.collapsibleContainer > div:first-child {
  padding: 6px 3px;
  background: linear-gradient(0deg, #763005, #bf4e08);
  border-left: 1px solid #933c06;
  border-right: 1px solid #933c06;
  border-top: 1px solid #933c06;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  color: #ffffff;
}

div.collapsibleContainer > div:first-child:before {
  font-family: 'Material Symbols Outlined';
  content: "expand_less";
  -webkit-font-feature-settings: 'liga';
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  right: 5px;
  top: 1px;
}

div.collapsibleContainer > div:last-child {
  border-left: 1px solid #933c06;
  border-right: 1px solid #933c06;
  border-bottom: 1px solid #933c06;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  height: auto;
  overflow: visible;
  transition: height 0.5s;
}

div.collapsibleContainer.collapsing {
  height: unset;
}

div.collapsibleContainer.collapsing > div:first-child:before {
  content: "expand_more";
}

div.collapsibleContainer.collapsing > div:last-child {
  overflow: hidden;
}

div.collapsibleContainer.expanding > div:last-child {
  overflow: hidden;
}

div.collapsibleContainer.collapsed > div:first-child {
  border-bottom: 1px solid #933c06;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

div.collapsibleContainer.collapsed > div:first-child:before {
  content: "expand_more";
}

div.collapsibleContainer.collapsed > div:last-child {
  border: 0px;
  height: 0px;
  overflow: hidden;
  display: none;
}

/* #endregion Collapsible Container */
/* #region Input Controls */
input[type=text], input[type=password], input[type=date], input[type=number], select {
  border: 1px solid #933c06;
  border-radius: 3px;
  height: 1.7rem;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
}

input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=number]:focus, select:focus {
  border: 2px solid #9ea615;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  transition: unset;
}

input[type=text][readonly], input[type=text][disabled], input[type=password][readonly], input[type=password][disabled], input[type=date][readonly], input[type=date][disabled], input[type=number][readonly], input[type=number][disabled], select[readonly], select[disabled] {
  border: 0px;
  box-shadow: none;
  appearance: none;
}

input[type=text]::placeholder, input[type=password]::placeholder, input[type=date]::placeholder, input[type=number]::placeholder, select::placeholder {
  font-style: italic;
  color: #606060;
}

textarea {
  border: 1px solid #933c06;
  border-radius: 3px;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
}

textarea:focus {
  border: 2px solid #9ea615;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  transition: unset;
}

textarea[readonly], textarea[disabled] {
  border: 0px;
  box-shadow: none;
  appearance: none;
}

textarea::placeholder {
  font-style: italic;
  color: #606060;
}

span.checkbox {
  border: 1px solid #933c06;
  border-radius: 3px;
  font-size: 1rem;
  height: 1.15rem;
  width: 1.15rem;
  vertical-align: -2px;
}

span.checkbox:focus {
  border: 2px solid #9ea615;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  outline: none;
}

.ui-datepicker {
  transition: unset;
}

/* #endregion */
/* #region Icon, Detail & List Item */
div.icon {
  width: 94px;
  height: 107px;
  margin: 1px;
  border: 0px;
  padding: 0px;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  text-align: center;
}

div.icon.twoline {
  height: 81px;
}

div.icon.twoline > div > div {
  max-height: 28px;
}

div.icon.inactive > div > div, div.icon.inactive > div > span.material-symbols-outlined {
  opacity: 0.5;
}

div.icon > div {
  overflow: hidden;
  padding: 4px 2px 4px 2px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: default;
}

div.icon > div:hover {
  background: #f3f6ba !important;
  border: 1px Solid #dde63b;
}

div.icon > div.selected {
  background: #b4bd18 !important;
  border: 1px Solid #9ea615 !important;
}

div.icon > div > span.material-symbols-outlined {
  font-size: 40px;
  color: #933c06;
}

div.icon > div > img {
  max-height: 50px;
  max-width: 50px;
}

div.icon > div > div {
  max-height: 42px;
  /*overflow: hidden;
            text-overflow: ellipsis;*/
  word-break: break-word;
  word-wrap: break-word;
  white-space: pre-line;
  margin-top: 3px;
  border: 0px;
  padding: 0px;
  line-height: 14px;
}

div.icon > div > div.ball {
  position: absolute;
  top: -3px;
  color: #ffffff;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  font-size: 9pt;
  line-height: 16px;
}

div.icon.ui-sortable-helper > div {
  background: #b4bd18 !important;
  border: 1px Solid #9ea615 !important;
  transition: unset;
}

div.detail {
  border: 1px Solid Transparent;
  border-radius: 5px;
  cursor: default;
  margin-top: 1px;
}

div.detail:hover {
  background: #f3f6ba !important;
  border: 1px Solid #dde63b;
}

div.detail.selected {
  background: #b4bd18 !important;
  border: 1px Solid #9ea615 !important;
}

div.detail table {
  table-layout: fixed;
  width: 100%;
}

div.detail table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.detail table td:first-child {
  height: 24px;
}

div.listitem {
  cursor: default;
}

div.listitem table {
  table-layout: fixed;
  width: 100%;
}

div.listitem table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.listitem.selectable {
  border: 1px Solid Transparent;
  border-radius: 5px;
  cursor: default;
}

div.listitem.selectable:hover {
  background: #f3f6ba !important;
  border: 1px Solid #dde63b;
}

div.listitem.selectable.selected {
  background: #b4bd18 !important;
  border: 1px Solid #9ea615 !important;
}

div.alternating div.detail:nth-child(even), div.alternating div.listitem:nth-child(even) {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 1%, #f9fbde 5%, #f9fbde 95%, #ffffff 99%, #ffffff 100%);
}

table.alternating tr:nth-child(even) {
  background: #f9fbde;
}

div.sorting div.icon > div:hover, div.sorting div.detail:hover {
  background-color: unset;
  border: unset;
}

/* #endregion */
/* #region Pickers */
div.picker {
  display: inline-block;
}

div.picker > div:first-child {
  border: 1px solid #933c06;
  border-radius: 3px;
  margin: 1px;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
  position: relative;
  z-index: 21;
  background-color: #ffffff;
}

div.picker > div:first-child > div {
  white-space: nowrap;
  border: 1px Solid White;
  line-height: 18px;
  margin: 1px;
  display: inline-block;
  cursor: default;
  transition: unset;
  border-radius: 2px;
  padding: 0px 0px 0px 2px;
}

div.picker > div:first-child > div:after {
  font-family: 'Material Symbols Outlined';
  content: "chevron_right";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  vertical-align: -4px;
  margin-left: 5px;
  color: #933c06;
}

div.picker > div:first-child > div:last-child:after {
  content: " ";
}

div.picker > div:first-child > div:hover {
  border: 1px Solid #933c06;
}

div.picker > div:first-child > div:hover:after {
  content: "expand_more";
  color: #ffffff;
  background-color: #933c06;
}

div.picker > div:last-child {
  border: 1px solid #933c06;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 50;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.3);
}

div.picker > div:last-child > div {
  cursor: default;
  height: 18px;
  white-space: nowrap;
}

div.picker > div:last-child > div:hover {
  background-color: #f7833b;
  color: #9ea615;
}

div.picker > div:last-child > div:first-child {
  font-weight: bold;
}

div.picker > div:last-child > div:first-child:before {
  font-family: 'Material Symbols Outlined';
  content: "reply";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  float: right;
  color: #933c06;
}

div.picker > div:last-child.first > div:first-child {
  background-color: #ffffff !important;
  color: #212529 !important;
}

div.picker > div:last-child.first > div:first-child:before {
  display: none;
}

div.dropdownpicker {
  border: 1px solid #933c06;
  border-radius: 3px;
  line-height: 1.6rem;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
  position: relative;
  background-color: #ffffff;
  padding: 0px 18px 0px 2px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.dropdownpicker:after {
  font-family: 'Material Symbols Outlined';
  content: "more_horiz";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

/* #endregion */
/* #region Multiselect */
multi-select, div.multi-select {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}

multi-select > div:first-child, div.multi-select > div:first-child {
  border: 1px solid #933c06;
  border-radius: 3px;
  height: 1.7rem;
  line-height: 1.7rem;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
  padding: 0px 16px 0px 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #ffffff;
  cursor: default;
}

multi-select > div:first-child:focus, div.multi-select > div:first-child:focus {
  border: 2px solid #9ea615;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  margin: 0px;
  transition: unset;
}

multi-select > div:first-child:after, div.multi-select > div:first-child:after {
  font-family: 'Material Symbols Outlined';
  content: "expand_more";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: block;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 1px;
  right: 0px;
}

multi-select > div:last-child, div.multi-select > div:last-child {
  border: 1px solid #933c06;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 50;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.3);
  min-width: 100%;
  width: max-content;
  margin: 0px 1px;
  box-sizing: border-box;
  max-height: 250px;
}

multi-select > div:last-child > div, div.multi-select > div:last-child > div {
  margin: 1px 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

multi-select > div:last-child > div .checkbox, div.multi-select > div:last-child > div .checkbox {
  width: 10px;
  height: 10px;
  font-size: 10px;
}

/* #endregion Multiselect */
/* #region Splitbutton */
split-button, div.split-button {
  display: inline-block;
  position: relative;
  overflow: visible;
  vertical-align: top;
}

split-button > div:first-child, div.split-button > div:first-child {
  padding-right: 23px;
}

split-button > div:first-child > div:last-child, div.split-button > div:first-child > div:last-child {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 30px;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ffffff;
}

split-button > div:first-child > div:last-child:hover, div.split-button > div:first-child > div:last-child:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

split-button > div:first-child > div:last-child:after, div.split-button > div:first-child > div:last-child:after {
  font-family: 'Material Symbols Outlined';
  content: "expand_more";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: block;
  text-align: center;
  font-weight: bold;
}

split-button > div:last-child, div.split-button > div:last-child {
  border: 1px solid #933c06;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 50;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.3);
  min-width: 100%;
  width: max-content;
  margin: 0px 1px;
  box-sizing: border-box;
  max-height: 250px;
  left: 0px;
  top: 100%;
  text-align: left;
}

split-button.disabled > div:first-child > div:last-child:hover, div.split-button.disabled > div:first-child > div:last-child:hover {
  background-color: transparent;
}

split-button-option, a.split-button-option {
  padding: 0.25rem 0.5rem;
}

/* #endregion Splitbutton */
/* #region DateRangePicker */
date-range-picker, div.date-range-picker {
  display: inline-block;
  position: relative;
  overflow: visible;
}

date-range-picker > div:first-child, div.date-range-picker > div:first-child {
  display: flex;
  padding-right: 30px;
}

date-range-picker > div:first-child > div:first-child, div.date-range-picker > div:first-child > div:first-child {
  display: flex;
  align-items: center;
}

date-range-picker > div:first-child > div:last-child, div.date-range-picker > div:first-child > div:last-child {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 30px;
  margin-left: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

date-range-picker > div:first-child > div:last-child:after, div.date-range-picker > div:first-child > div:last-child:after {
  font-family: 'Material Symbols Outlined';
  content: "expand_more";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: block;
  text-align: center;
  font-weight: bold;
}

date-range-picker > div:last-child, div.date-range-picker > div:last-child {
  border: 1px solid #933c06;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 50;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.3);
  min-width: 100%;
  width: max-content;
  margin: 0px 1px;
  box-sizing: border-box;
  max-height: 320px;
  left: 0px;
  top: 100%;
  text-align: left;
  max-width: max-content;
}

#ui-datepicker-div.drp {
  z-index: 101 !important;
}

#ui-datepicker-div.drp .ui-datepicker-calendar {
  /* Hide the calendar */
  display: none;
}

#ui-datepicker-div.drp .ui-datepicker-current {
  /* Hide the Today button */
  display: none;
}

date-range-picker-option, a.date-range-picker-option {
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
  cursor: default;
}

/* #endregion DateRangePicker */
/* #region MultiPicker */
div.multiPicker {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
}

div.multiPicker > div:first-child {
  border: 1px solid #933c06;
  border-radius: 3px;
  margin: 1px;
  height: 22px;
  line-height: 22px;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  color: #212529;
  box-sizing: border-box;
  padding: 0px 16px 0px 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #ffffff;
  cursor: default;
}

div.multiPicker > div:first-child:focus {
  border: 2px solid #9ea615;
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  margin: 0px;
  transition: unset;
}

div.multiPicker > div:first-child:after {
  font-family: 'Material Symbols Outlined';
  content: "expand_more";
  -webkit-font-feature-settings: 'liga';
  font-size: 18px;
  width: 18px;
  display: block;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 1px;
  right: 0px;
}

div.multiPicker > div:last-child {
  border: 1px solid #933c06;
  overflow-y: auto;
  position: absolute;
  display: none;
  z-index: 50;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 2px 12px 3px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 0px 1px;
  box-sizing: border-box;
  max-height: 250px;
}

div.multiPicker > div:last-child > div {
  margin: 1px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.multiPicker > div:last-child > div .checkbox {
  width: 10px;
  height: 10px;
  font-size: 10px;
  vertical-align: bottom;
}

/* #endregion */
/* #region Breadcrumb */
div.breadcrumb {
  color: #933c06;
  display: block;
  padding: 0px;
  margin-bottom: 0.2rem;
}

div.breadcrumb > span, div.breadcrumb > a {
  color: #933c06 !important;
  text-decoration: none;
}

div.breadcrumb > span.material-symbols-outlined, div.breadcrumb > a.material-symbols-outlined {
  margin: 0px 5px;
  vertical-align: -4px;
  font-size: 18px;
}

div.breadcrumb > span.link, div.breadcrumb > a {
  cursor: pointer;
  text-decoration: underline;
}

/* #endregion */
/* #region Material Symbols */
.material-symbols-outlined {
  vertical-align: middle;
}

.material-symbols-outlined.md-12 {
  font-size: 12px;
}

.material-symbols-outlined.md-18 {
  font-size: 18px;
}

.material-symbols-outlined.md-24 {
  font-size: 24px;
}

.material-symbols-outlined.md-36 {
  font-size: 36px;
}

.material-symbols-outlined.md-48 {
  font-size: 48px;
}

.material-symbols-outlined.md-72 {
  font-size: 72px;
}

.material-symbols-outlined.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-symbols-outlined.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

.material-symbols-outlined.md-light {
  color: white;
}

.material-symbols-outlined.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/* #endregion */
/* #region Display Message */
div.displayMessage {
  background-color: #f89354;
  border: 1px solid #933c06;
  color: #933c06;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 2000;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.33);
  display: flex;
  width: max-content;
  pointer-events: all;
  font-size: var(--bs-body-font-size);
  font-weight: normal;
}

div.displayMessage.right::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -13px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent #933c06 transparent transparent;
}

div.displayMessage.right::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -12px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent #f89354 transparent transparent;
}

div.displayMessage.bottom::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #933c06 transparent;
}

div.displayMessage.bottom::after {
  content: "";
  position: absolute;
  top: -17px;
  left: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #f89354 transparent;
}

div.displayMessage.bottomleft::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #933c06 transparent;
}

div.displayMessage.bottomleft::after {
  content: "";
  position: absolute;
  top: -17px;
  right: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent #f89354 transparent;
}

div.displayMessage.left::before {
  content: "";
  position: absolute;
  top: 6px;
  right: -18px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent transparent #933c06;
}

div.displayMessage.left::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -17px;
  border-width: 9px;
  border-style: solid;
  border-color: transparent transparent transparent #f89354;
}

div.displayMessage.topleft::before {
  content: "";
  position: absolute;
  top: var(--before-topleft);
  right: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: #933c06 transparent transparent transparent;
}

div.displayMessage.topleft::after {
  content: "";
  position: absolute;
  top: var(--after-topleft);
  right: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: #f89354 transparent transparent transparent;
}

div.displayMessage.top::before {
  content: "";
  position: absolute;
  top: var(--before-top);
  left: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: #933c06 transparent transparent transparent;
}

div.displayMessage.top::after {
  content: "";
  position: absolute;
  top: var(--after-top);
  left: 15px;
  border-width: 9px;
  border-style: solid;
  border-color: #f89354 transparent transparent transparent;
}

div.displayMessage.error {
  background-color: #fff1f5;
  border: 1px solid #f60044;
  color: #f60044;
}

div.displayMessage.error.right::before {
  border-color: transparent #f60044 transparent transparent;
}

div.displayMessage.error.right::after {
  border-color: transparent #fff1f5 transparent transparent;
}

div.displayMessage.error.bottom::before {
  border-color: transparent transparent #f60044 transparent;
}

div.displayMessage.error.bottom::after {
  border-color: transparent transparent #fff1f5 transparent;
}

div.displayMessage.error.bottomleft::before {
  border-color: transparent transparent #f60044 transparent;
}

div.displayMessage.error.bottomleft::after {
  border-color: transparent transparent #fff1f5 transparent;
}

div.displayMessage.error.left::before {
  border-color: transparent transparent transparent #f60044;
}

div.displayMessage.error.left::after {
  border-color: transparent transparent transparent #fff1f5;
}

div.displayMessage.error.topleft::before {
  border-color: #f60044 transparent transparent transparent;
}

div.displayMessage.error.topleft::after {
  border-color: #fff1f5 transparent transparent transparent;
}

div.displayMessage.error.top::before {
  border-color: #f60044 transparent transparent transparent;
}

div.displayMessage.error.top::after {
  border-color: #fff1f5 transparent transparent transparent;
}

div.displayMessage.success {
  background-color: #e6ffe6;
  border: 1px solid #009900;
  color: #009900;
}

div.displayMessage.success.right::before {
  border-color: transparent #009900 transparent transparent;
}

div.displayMessage.success.right::after {
  border-color: transparent #e6ffe6 transparent transparent;
}

div.displayMessage.success.bottom::before {
  border-color: transparent transparent #009900 transparent;
}

div.displayMessage.success.bottom::after {
  border-color: transparent transparent #e6ffe6 transparent;
}

div.displayMessage.success.bottomleft::before {
  border-color: transparent transparent #009900 transparent;
}

div.displayMessage.success.bottomleft::after {
  border-color: transparent transparent #e6ffe6 transparent;
}

div.displayMessage.success.left::before {
  border-color: transparent transparent transparent #009900;
}

div.displayMessage.success.left::after {
  border-color: transparent transparent transparent #e6ffe6;
}

div.displayMessage.success.topleft::before {
  border-color: #009900 transparent transparent transparent;
}

div.displayMessage.success.topleft::after {
  border-color: #e6ffe6 transparent transparent transparent;
}

div.displayMessage.success.top::before {
  border-color: #009900 transparent transparent transparent;
}

div.displayMessage.success.top::after {
  border-color: #e6ffe6 transparent transparent transparent;
}

div.displayMessage div.dmicon {
  flex-grow: 0;
  padding-right: 6px;
}

div.displayMessage div.dmcontent {
  flex-grow: 1;
  max-width: 400px;
  text-align: left;
}

div.displayMessage div.dmcontent ul {
  margin: 0px;
  padding-left: 15px;
}

div.displayMessage div.dmclose {
  flex-grow: 0;
  padding-left: 6px;
}

div.displayMessage div.dmclose span {
  cursor: pointer;
  vertical-align: text-top;
}

/* #endregion */
/* #region Main Menu */
.ui-menu {
  z-index: 50;
  transition: unset;
}

.ui-menu.context {
  position: absolute;
  min-width: 130px;
  max-width: 250px;
  border-radius: 5px;
  padding: 1px;
  background-color: #fffcf7;
}

.ui-menu.context .ui-menu {
  min-width: 150px;
  max-width: 250px;
  max-height: 340px;
  overflow: auto;
  padding: 1px;
}

.ui-menu.context .ui-menu-item a {
  padding: 4px .4em;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: unset;
  display: block;
  text-decoration: none;
  line-height: 22px;
  color: #212529 !important;
}

.ui-menu.context .ui-menu-item a.selectable {
  cursor: pointer;
}

.ui-menu.context .ui-menu-item a.ui-state-active {
  border: 1px solid #f3f6ba;
  background-color: #f3f6ba;
  font-weight: normal;
  color: #212529 !important;
  border-radius: 5px;
}

.ui-menu.ui-autocomplete {
  position: absolute;
  width: 100%;
  border-radius: 5px;
  padding: 1px;
  background-color: #fffcf7;
  max-height: 300px;
  overflow: auto;
}

.ui-menu.ui-autocomplete > .ui-menu {
  min-width: 150px;
  max-width: 250px;
  max-height: 340px;
  overflow: auto;
  padding: 1px;
}

.ui-menu.ui-autocomplete > .ui-menu-item a {
  padding: 4px .4em;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: unset;
  display: block;
  text-decoration: none;
  line-height: 22px;
  color: #212529 !important;
}

.ui-menu.ui-autocomplete > .ui-menu-item a.selectable {
  cursor: pointer;
}

.ui-menu.ui-autocomplete > .ui-menu-item a.ui-state-active {
  border: 1px solid #f3f6ba;
  background-color: #f3f6ba;
  font-weight: normal;
  color: #212529 !important;
  border-radius: 5px;
}

.ui-menu .ui-menu-item a {
  cursor: pointer;
  transition: unset;
}

.ui-menu .ui-menu-item a .material-symbols-outlined {
  vertical-align: -7px;
}

/* #endregion */
/* #region Overriding default (bootstrap) colours */
a, a:active, a:visited {
  color: #933c06;
}

hr {
  background-color: #933c06;
  opacity: 1;
}

input[type=text], input[type=password], input[type=number], input[type=email], input[type=tel], input[type=datetime-local], input[type=checkbox] {
  border: 1px Solid #933c06;
}

.nav-link.active {
  background: linear-gradient(0deg, #959d14, #d6e11c);
}

.nav-link:hover {
  color: #9ea615;
}

.btn-primary {
  background: linear-gradient(0deg, #959d14, #d6e11c);
  border-color: #9ea615;
  color: #ffffff;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  background: linear-gradient(0deg, #848b12, #c5cf1a);
  border-color: #9ea615;
  color: #ffffff;
}

.btn-danger {
  color: #ffffff;
}

.btn-danger:hover, .btn-danger:active, .btn-danger:visited {
  color: #ffffff;
}

.navbar-brand {
  padding: 0px;
}

li.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle::after {
  vertical-align: 0.15em;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #f8f9fa;
  background-color: #9ea615;
}

.dropdown-item {
  color: #933c06;
}

div#mnuSetupItems {
  max-height: 500px;
  overflow: auto;
}

/* #endregion */
/* #region General */
.required:after {
  content: ' *';
  color: #ff0000;
}

.hiddendiv {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  /*white-space: pre-wrap;*/
  width: 100%;
  min-height: 32px;
  display: none;
  overflow: hidden;
  word-wrap: break-word;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.hiddenwidthdiv {
  font-size: var(--bs-body-font-size);
  font-family: var(--bs-body-font-family);
  font-weight: normal;
  white-space: no-wrap;
  display: none;
  overflow: visible;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.likeLink {
  text-decoration: underline;
  cursor: pointer;
  color: #933c06;
}

/* #endregion */
/* #region Tags */
.tag {
  padding: 5px 10px !important;
  border-radius: 6px;
  position: relative;
  display: inline-block;
  border: 0.5px solid black !important;
  width: auto;
  vertical-align: middle !important;
  margin: 2px 0px 2px 15px;
  font-weight: bold;
}

.tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  width: 20px;
  height: 50%;
  background-color: inherit;
  border: inherit;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.tag::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -9.5px;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  border: inherit;
  transform: translateY(-50%);
}

/* #endregion */
/* #region AI Assistant */
#divHelpPopup {
  background-color: #ffffff;
  position: absolute;
  right: 8px;
  z-index: 10;
  border-left: 3px Solid #933c06;
  border-bottom: 3px Solid #933c06;
  border-right: 3px Solid #933c06;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  max-height: calc(100vh - 70px);
  width: 600px;
  display: flex;
  flex-direction: column;
}

#divHelpPopup .header {
  background: linear-gradient(0deg, #712e05, #b54a07);
  height: 26px;
  padding: 1px 5px 1px 5px;
  font-weight: bold;
  line-height: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
  cursor: default;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  flex-grow: 0;
  flex-shrink: 0;
}

#divHelpPopup .content {
  overflow-wrap: break-word;
  min-height: 80px;
  padding-bottom: 20px;
  overflow: auto;
  flex-grow: 1;
  flex-shrink: 1;
}

#divHelpPopup .content a, #divHelpPopup .content a:active, #divHelpPopup .content a:visited {
  text-decoration: underline;
  cursor: pointer;
  color: #9ea615;
}

#divHelpPopup .chat {
  overflow-wrap: break-word;
  overflow: auto;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
}

#divHelpPopup .chat div.user {
  background-color: rgba(158, 166, 21, 0.2);
  margin: 6px 10px 0px 70px;
  padding: 5px;
  border-radius: 7px;
  width: fit-content;
  width: -moz-fit-content;
  align-self: flex-end;
  position: relative;
}

#divHelpPopup .chat div.user:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 5px solid rgba(158, 166, 21, 0.2);
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  top: 7px;
  right: -9px;
}

#divHelpPopup .chat div.assistant {
  background-color: rgba(147, 60, 6, 0.2);
  margin: 6px 70px 0px 10px;
  padding: 5px;
  border-radius: 7px;
  width: fit-content;
  width: -moz-fit-content;
  align-self: flex-start;
  position: relative;
}

#divHelpPopup .chat div.assistant:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-right: 5px solid rgba(147, 60, 6, 0.2);
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  top: 7px;
  left: -9px;
}

#divHelpPopup .chat div.assistant.error {
  background-color: #fff1f5;
  border: unset;
}

#divHelpPopup .chat div.assistant.error:before {
  border-right: 5px solid #fff1f5;
}

#divHelpPopup textarea {
  box-shadow: none;
}

div.aiClickMe {
  position: absolute;
  width: 180px;
  left: -70px;
  background: linear-gradient(0deg, #9aa114, #d6e11c);
  z-index: 10;
  padding: 5px;
  border-radius: 6px;
  top: 42px;
}

div.aiClickMe > div:first-child {
  font-size: 1rem;
  font-weight: bold;
}

div.aiClickMe > div:last-child {
  font-size: 0.9rem;
}

div.aiClickMe:before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  border-bottom: 7px solid #d6e11c;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  top: -14px;
  left: 83px;
}

/* #endregion AI Assistant*/
/* #region Report styles */
.reportHeader {
  font-size: 13pt;
  font-weight: bold;
  text-align: center;
}

.reportSubHeader {
  font-size: 11pt;
  font-weight: bold;
  text-align: center;
}

/* #endregion */
/* #region Annual Performance Report */
.livestock-schedule-report lsr-main-view div.summaries, .livestock-schedule-report div.lsr-main-view div.summaries {
  display: flex;
  gap: 1em;
  margin: 1em 0;
}

.livestock-schedule-report lsr-main-view div.summaries > div, .livestock-schedule-report div.lsr-main-view div.summaries > div {
  width: 150px;
  min-width: 127px;
  flex-shrink: 1;
  border: 1px solid #933c06;
  border-radius: 1em;
  padding: 0.2em 0.3em;
  background-color: rgba(147, 60, 6, 0.2);
  cursor: default;
  height: 85px;
  display: flex;
  flex-direction: column;
}

.livestock-schedule-report lsr-main-view div.summaries > div div.title, .livestock-schedule-report div.lsr-main-view div.summaries > div div.title {
  font-size: 13px;
  font-weight: bold;
  flex-grow: 0;
  text-align: center;
}

.livestock-schedule-report lsr-main-view div.summaries > div div.value, .livestock-schedule-report div.lsr-main-view div.summaries > div div.value {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.livestock-schedule-report lsr-main-view div.summaries > div.clickable:hover, .livestock-schedule-report div.lsr-main-view div.summaries > div.clickable:hover {
  cursor: pointer;
  border: 1px solid #9ea615;
  background-color: rgba(158, 166, 21, 0.3);
}

.livestock-schedule-report lsr-main-view div.summary-table table.listHeader, .livestock-schedule-report div.lsr-main-view div.summary-table table.listHeader {
  position: sticky;
  top: 0px;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.livestock-schedule-report lsr-main-view div.summary-table td, .livestock-schedule-report div.lsr-main-view div.summary-table td {
  padding: 2px;
}

.livestock-schedule-report lsr-main-view div.summary-table .clickable, .livestock-schedule-report div.lsr-main-view div.summary-table .clickable {
  cursor: pointer;
}

.livestock-schedule-report lsr-main-view div.summary-table .clickable:hover, .livestock-schedule-report div.lsr-main-view div.summary-table .clickable:hover {
  background-color: rgba(158, 166, 21, 0.3);
}

.livestock-schedule-report lsr-main-view div.profit-table, .livestock-schedule-report div.lsr-main-view div.profit-table {
  margin-bottom: 1em;
}

.livestock-schedule-report lsr-main-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-main-view div.profit-table table.listHeader {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.livestock-schedule-report lsr-main-view div.profit-table td, .livestock-schedule-report div.lsr-main-view div.profit-table td {
  padding: 2px;
}

.livestock-schedule-report lsr-main-view div.profit-table .clickable, .livestock-schedule-report div.lsr-main-view div.profit-table .clickable {
  cursor: pointer;
}

.livestock-schedule-report lsr-main-view div.profit-table .clickable:hover, .livestock-schedule-report div.lsr-main-view div.profit-table .clickable:hover {
  background-color: rgba(158, 166, 21, 0.3);
}

.livestock-schedule-report lsr-main-view div.profit-graph, .livestock-schedule-report div.lsr-main-view div.profit-graph {
  width: 520px;
  max-width: 700px;
  flex-grow: 1;
  flex-shrink: 0;
  height: 385px;
}

.livestock-schedule-report lsr-inventory-view div.reportHeader, .livestock-schedule-report div.lsr-inventory-view div.reportHeader {
  margin-top: 0.6em;
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table.listHeader, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table.listHeader {
  position: sticky;
  top: 21px;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader), .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) {
  cursor: default;
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr:hover, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr:hover {
  background-color: rgba(158, 166, 21, 0.1);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c1:hover td.c1, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c1:hover td.c1 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c2:hover td.c2, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c2:hover td.c2 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c3:hover td.c3, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c3:hover td.c3 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c4:hover td.c4, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c4:hover td.c4 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c5:hover td.c5, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c5:hover td.c5 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c6:hover td.c6, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c6:hover td.c6 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c7:hover td.c7, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c7:hover td.c7 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c8:hover td.c8, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c8:hover td.c8 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c9:hover td.c9, .livestock-schedule-report div.lsr-inventory-view div.inventory-table table:not(.listHeader) tr.c9:hover td.c9 {
  background-color: rgba(158, 166, 21, 0.4);
}

.livestock-schedule-report lsr-inventory-view div.inventory-table td, .livestock-schedule-report div.lsr-inventory-view div.inventory-table td {
  padding: 2px;
}

.livestock-schedule-report lsr-inventory-view div.inventory-table td.clear, .livestock-schedule-report div.lsr-inventory-view div.inventory-table td.clear {
  position: relative;
}

.livestock-schedule-report lsr-inventory-view div.inventory-table td.clear:after, .livestock-schedule-report div.lsr-inventory-view div.inventory-table td.clear:after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: -1px;
  bottom: -1px;
  background-color: #ffffff;
}

.livestock-schedule-report lsr-ae-view div.reportHeader, .livestock-schedule-report div.lsr-ae-view div.reportHeader {
  margin-top: 0.6em;
}

.livestock-schedule-report lsr-ae-view div.ae-table table.listHeader, .livestock-schedule-report div.lsr-ae-view div.ae-table table.listHeader {
  position: sticky;
  top: 0px;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.livestock-schedule-report lsr-ae-view div.monthly-graph, .livestock-schedule-report div.lsr-ae-view div.monthly-graph {
  width: 560px;
  max-width: 800px;
  flex-grow: 1;
  flex-shrink: 0;
  height: 250px;
  position: relative;
}

.livestock-schedule-report lsr-ae-view div.monthly-graph div.title, .livestock-schedule-report div.lsr-ae-view div.monthly-graph div.title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  font-weight: bold;
  text-align: center;
}

.livestock-schedule-report lsr-ae-view div.composition-graph, .livestock-schedule-report div.lsr-ae-view div.composition-graph {
  width: 430px;
  max-width: 530px;
  flex-grow: 1;
  flex-shrink: 0;
  height: 250px;
  position: relative;
}

.livestock-schedule-report lsr-ae-view div.composition-graph div.title, .livestock-schedule-report div.lsr-ae-view div.composition-graph div.title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  font-weight: bold;
  text-align: center;
}

.livestock-schedule-report lsr-transactions-view div.reportHeader, .livestock-schedule-report div.lsr-transactions-view div.reportHeader, .livestock-schedule-report lsr-profit-view div.reportHeader, .livestock-schedule-report div.lsr-profit-view div.reportHeader, .livestock-schedule-report lsr-reproduction-view div.reportHeader, .livestock-schedule-report div.lsr-reproduction-view div.reportHeader, .livestock-schedule-report lsr-mortality-view div.reportHeader, .livestock-schedule-report div.lsr-mortality-view div.reportHeader, .livestock-schedule-report lsr-kgperae-view div.reportHeader, .livestock-schedule-report div.lsr-kgperae-view div.reportHeader, .livestock-schedule-report lsr-profitperae-view div.reportHeader, .livestock-schedule-report div.lsr-profitperae-view div.reportHeader {
  margin-top: 0.6em;
}

.livestock-schedule-report lsr-transactions-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-transactions-view div.profit-table table.listHeader, .livestock-schedule-report lsr-profit-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-profit-view div.profit-table table.listHeader, .livestock-schedule-report lsr-reproduction-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-reproduction-view div.profit-table table.listHeader, .livestock-schedule-report lsr-mortality-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-mortality-view div.profit-table table.listHeader, .livestock-schedule-report lsr-kgperae-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-kgperae-view div.profit-table table.listHeader, .livestock-schedule-report lsr-profitperae-view div.profit-table table.listHeader, .livestock-schedule-report div.lsr-profitperae-view div.profit-table table.listHeader {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.livestock-schedule-report div.button-secondary.back {
  position: absolute;
  top: -5px;
  left: 0px;
  padding: 2px 13px;
  font-weight: normal;
}

.livestock-schedule-report div.button-secondary.back span.material-symbols-outlined {
  font-size: 20px;
  vertical-align: -3px;
}

.livestock-schedule-report.portrait lsr-main-view div.summary-table table.listHeader, .livestock-schedule-report.portrait div.lsr-main-view div.summary-table table.listHeader {
  top: -8px;
}

.livestock-schedule-report.portrait lsr-inventory-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-inventory-view div.reportHeader {
  margin-top: 0;
}

.livestock-schedule-report.portrait lsr-inventory-view div.inventory-table table.listHeader, .livestock-schedule-report.portrait div.lsr-inventory-view div.inventory-table table.listHeader {
  top: 13px;
}

.livestock-schedule-report.portrait lsr-transactions-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-transactions-view div.reportHeader, .livestock-schedule-report.portrait lsr-profit-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-profit-view div.reportHeader, .livestock-schedule-report.portrait lsr-reproduction-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-reproduction-view div.reportHeader, .livestock-schedule-report.portrait lsr-mortality-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-mortality-view div.reportHeader, .livestock-schedule-report.portrait lsr-ae-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-ae-view div.reportHeader, .livestock-schedule-report.portrait lsr-kgperae-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-kgperae-view div.reportHeader, .livestock-schedule-report.portrait lsr-profitperae-view div.reportHeader, .livestock-schedule-report.portrait div.lsr-profitperae-view div.reportHeader {
  margin-top: 0;
}

.livestock-schedule-report.portrait lsr-transactions-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-transactions-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-profit-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-profit-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-reproduction-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-reproduction-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-mortality-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-mortality-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-ae-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-ae-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-kgperae-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-kgperae-view div.ae-table table.listHeader, .livestock-schedule-report.portrait lsr-profitperae-view div.ae-table table.listHeader, .livestock-schedule-report.portrait div.lsr-profitperae-view div.ae-table table.listHeader {
  top: -8px;
}

/* #endregion Annual Performance Report */
/* #region Sale Analysis */
.sales-report div.weight-graph {
  width: 500px;
  max-width: 800px;
  flex-grow: 1;
  flex-shrink: 0;
  height: 400px;
  position: relative;
}

.sales-report div.weight-graph div.title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  font-weight: bold;
  text-align: center;
}

.sales-report div.price-graph {
  width: 500px;
  max-width: 800px;
  flex-grow: 1;
  flex-shrink: 0;
  height: 400px;
  position: relative;
}

.sales-report div.price-graph div.title {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  font-weight: bold;
  text-align: center;
}

.sales-report div.price-graph.empty {
  height: 0px;
}

/* #endregion Sale Analysis */
/* #region Management Group Schedule Report */
.managementgroup-schedule-report mgsr-main-view div.summary-table table.listHeader, .managementgroup-schedule-report div.mgsr-main-view div.summary-table table.listHeader {
  position: sticky;
  top: 0px;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.managementgroup-schedule-report mgsr-main-view div.summary-table td, .managementgroup-schedule-report div.mgsr-main-view div.summary-table td {
  padding: 2px;
}

.managementgroup-schedule-report mgsr-main-view div.summary-table .clickable, .managementgroup-schedule-report div.mgsr-main-view div.summary-table .clickable {
  cursor: pointer;
}

.managementgroup-schedule-report mgsr-main-view div.summary-table .clickable:hover, .managementgroup-schedule-report div.mgsr-main-view div.summary-table .clickable:hover {
  background-color: rgba(158, 166, 21, 0.3);
}

.managementgroup-schedule-report mgsr-transactions-view div.reportHeader, .managementgroup-schedule-report div.mgsr-transactions-view div.reportHeader {
  margin-top: 0.6em;
}

.managementgroup-schedule-report div.button-secondary.back {
  position: absolute;
  top: -5px;
  left: 0px;
  padding: 2px 13px;
  font-weight: normal;
}

.managementgroup-schedule-report div.button-secondary.back span.material-symbols-outlined {
  font-size: 20px;
  vertical-align: -3px;
}

.managementgroup-schedule-report.portrait mgsr-main-view div.summary-table table.listHeader, .managementgroup-schedule-report.portrait div.mgsr-main-view div.summary-table table.listHeader {
  top: -8px;
}

.managementgroup-schedule-report.portrait mgsr-transactions-view div.reportHeader, .managementgroup-schedule-report.portrait div.mgsr-transactions-view div.reportHeader {
  margin-top: 0;
}

/* #endregion Management Group Schedule Report */
/* #region Emissions Report */
.emissions-report er-main-view div.summary-table, .emissions-report div.er-main-view div.summary-table {
  margin: 1em 0;
}

.emissions-report er-main-view div.summary-table table.listHeader, .emissions-report div.er-main-view div.summary-table table.listHeader {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.emissions-report er-main-view div.summary-table td, .emissions-report div.er-main-view div.summary-table td {
  padding: 2px;
}

.emissions-report div.button-secondary.back {
  position: absolute;
  top: -5px;
  left: 0px;
  padding: 2px 13px;
  font-weight: normal;
}

.emissions-report div.button-secondary.back span.material-symbols-outlined {
  font-size: 20px;
  vertical-align: -3px;
}

/* #endregion Emissions Report */
/* #region Stock Report */
.stock-report sr-main-view div.summary-table, .stock-report div.sr-main-view div.summary-table {
  margin: 1em 0;
}

.stock-report sr-main-view div.summary-table table.listHeader, .stock-report div.sr-main-view div.summary-table table.listHeader {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
}

.stock-report sr-main-view div.summary-table td, .stock-report div.sr-main-view div.summary-table td {
  padding: 2px;
}

.stock-report div.button-secondary.back {
  position: absolute;
  top: -5px;
  left: 0px;
  padding: 2px 13px;
  font-weight: normal;
}

.stock-report div.button-secondary.back span.material-symbols-outlined {
  font-size: 20px;
  vertical-align: -3px;
}

/* #endregion Stock Report */
/* #region dot pulse */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 7px;
  height: 7px;
  border-radius: 5px;
  background-color: #933c06;
  color: #933c06;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 5px;
  background-color: #933c06;
  color: #933c06;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

/* #endregion dot pulse */
