.HeaderComponent {
  max-height: 70px;
  height: 100%;
}
.HeaderComponent a, .HeaderComponent button {
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.HeaderComponent a:hover, .HeaderComponent a:focus, .HeaderComponent button:hover, .HeaderComponent button:focus {
  color: var(--main-color-dark);
}
.HeaderComponent i {
  font-size: 2em;
}
.HeaderComponent nav ul {
  align-items: center;
  display: flex;
  line-height: 1.2em;
  list-style-type: none;
  margin: 0;
  row-gap: 1em;
}
.HeaderComponent nav li a {
  display: flex;
  align-items: center;
  margin-left: 2em;
  font-weight: 500;
  color: var(--main-color-lightest);
}
.HeaderComponent nav li a span {
  display: flex;
  align-items: center;
}
.HeaderComponent nav li a.active {
  color: var(--white-color);
}
.HeaderComponent .HeaderComponent-blue-sheep-link {
  flex: 1;
  margin-right: 5px;
}
@media only screen and (max-width: 1023px) {
  .HeaderComponent .HeaderComponent-blue-sheep-link {
    flex: none;
    width: 0%;
    display: none;
  }
}
.HeaderComponent .HeaderComponent-blue-sheep-link .flock-label {
  padding: 0.75em 1em;
  border-radius: 4px;
  background-color: var(--sheep-blue-color);
  transition: background-color 0.5s;
}
.HeaderComponent .HeaderComponent-container {
  background-color: var(--main-color);
  transition: background-color 0.5s;
  margin: 0;
  padding: 1.2em;
  color: var(--white-color);
  display: flex;
  align-items: center;
}
.HeaderComponent .HeaderComponent-container img, .HeaderComponent .HeaderComponent-container svg {
  height: 30px;
  width: 30px;
}
.HeaderComponent .HeaderComponent-container img {
  background-color: var(--white-color);
  border-radius: 50%;
}
.HeaderComponent .HeaderComponent-container nav {
  flex: 5;
  max-width: 100%;
  overflow: hidden;
  transition: max-width 0.5s ease;
}
@media only screen and (max-width: 900px) {
  .HeaderComponent .HeaderComponent-container nav {
    max-width: 0;
  }
}
.HeaderComponent .HeaderComponent-search {
  flex: 2;
  transition: flex-grow 0.4s ease;
}
@media only screen and (max-width: 1023px) {
  .HeaderComponent .HeaderComponent-search {
    flex: none;
    width: 0%;
    position: absolute;
    background-color: var(--main-color);
    right: 0;
    overflow: hidden;
    z-index: 1;
    transition: width 0.4s ease;
  }
  .HeaderComponent .HeaderComponent-search.open {
    right: 0;
    overflow: visible;
    width: 100%;
  }
  .HeaderComponent .HeaderComponent-search .FieldComponent-dropdown__placeholder {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px 0;
  }
  .HeaderComponent .HeaderComponent-search .FieldComponent {
    margin: 0 1em;
  }
}
.HeaderComponent .HeaderComponent-search.open {
  flex-grow: 100;
}
.HeaderComponent .HeaderComponent-search-mobile {
  justify-content: flex-end;
  flex: 1;
  display: none;
}
@media only screen and (max-width: 1023px) {
  .HeaderComponent .HeaderComponent-search-mobile {
    display: flex;
  }
}
.HeaderComponent .HeaderComponent-account {
  flex: 1;
  justify-content: flex-end;
}
.HeaderComponent .HeaderComponent-account button:first-child {
  margin-left: 1em !important;
}
.HeaderComponent .HeaderComponent-account .HeaderComponent-account-search,
.HeaderComponent .HeaderComponent-account .HeaderComponent-account-blue-sheep-link {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .HeaderComponent .HeaderComponent-account .HeaderComponent-account-search,
  .HeaderComponent .HeaderComponent-account .HeaderComponent-account-blue-sheep-link {
    display: block;
  }
}
.HeaderComponent .HeaderComponent-account, .HeaderComponent .HeaderComponent-logo {
  display: flex;
  align-items: center;
}
.HeaderComponent .HeaderComponent-account button, .HeaderComponent .HeaderComponent-logo button {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 1em;
  font-weight: 500;
}
.HeaderComponent .HeaderComponent-account button:first-child, .HeaderComponent .HeaderComponent-logo button:first-child {
  margin: 0;
}
.HeaderComponent .HeaderComponent-account button a, .HeaderComponent .HeaderComponent-logo button a {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .HeaderComponent .HeaderComponent-account button span, .HeaderComponent .HeaderComponent-logo button span {
    display: none;
  }
}
.HeaderComponent .HeaderComponent-account button.flock-label, .HeaderComponent .HeaderComponent-logo button.flock-label {
  padding: 0.75em 2em 0.75em 1em;
  border-radius: 4px;
  background-color: var(--main-color-light);
  transition: background-color 0.5s;
}
.HeaderComponent .HeaderComponent-account .HeaderComponent-flock-label, .HeaderComponent .HeaderComponent-logo .HeaderComponent-flock-label {
  margin-bottom: unset;
}
@media only screen and (max-width: 420px) {
  .HeaderComponent .HeaderComponent-account .HeaderComponent-flock-label, .HeaderComponent .HeaderComponent-logo .HeaderComponent-flock-label {
    max-width: 7.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: pre;
  }
}
.HeaderComponent .HeaderComponent-account .HeaderComponent-button-detail, .HeaderComponent .HeaderComponent-logo .HeaderComponent-button-detail {
  position: absolute;
  display: block;
  border-radius: 90px;
  background-color: var(--main-color-light);
  border: 2px solid var(--main-color);
  transition: background-color 0.5s, border-color 0.5s;
  font-size: 0.7em;
  line-height: 0.5em;
  right: -8px;
}
.HeaderComponent .HeaderComponent-account .HeaderComponent-button-detail span, .HeaderComponent .HeaderComponent-logo .HeaderComponent-button-detail span {
  padding: 5px;
  display: block;
}
.HeaderComponent .HeaderComponent-account .HeaderComponent-button-detail i, .HeaderComponent .HeaderComponent-logo .HeaderComponent-button-detail i {
  font-size: 1.5em;
}

.HeaderComponent-flock-label {
  margin-bottom: unset;
}

.SecondaryNav {
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--light-grey);
  font-weight: 500;
  height: 100%;
  max-height: 55px;
}
@media only screen and (max-width: 900px) {
  .SecondaryNav {
    flex-wrap: wrap;
    height: unset;
    max-height: unset;
  }
}
.SecondaryNav .SecondaryNav-back {
  display: flex;
  align-items: center;
  padding: 0.75em 1.3em 0.75em 1em;
  border-right: 1px solid var(--light-grey);
}
.SecondaryNav .SecondaryNav-title {
  padding-left: 1.3em;
  display: flex;
  align-items: center;
}
.SecondaryNav .SecondaryNav-title-clickable {
  cursor: pointer;
}
.SecondaryNav .SecondaryNav-title-clickable:hover {
  color: var(--main-color);
}
.SecondaryNav .secondaryNav-header-dropdown .HeaderDropdown {
  max-width: 400px;
}
.SecondaryNav .secondaryNav-header-dropdown .HeaderDropdown ul {
  padding: 1.3em;
}
.SecondaryNav .secondaryNav-header-dropdown .HeaderDropdown ul .SearchBar {
  margin-bottom: 0;
}
.SecondaryNav .secondaryNav-header-dropdown-link {
  display: flex;
  padding: 0.75em 0;
  line-height: 1.5em;
  overflow: hidden;
  overflow-wrap: anywhere;
  color: var(--darkest-grey);
}
.SecondaryNav .secondaryNav-header-dropdown-link:hover {
  color: var(--main-color);
}
.SecondaryNav .secondaryNav-header-dropdown-link.home {
  padding: 1.5em 0;
}
.SecondaryNav .secondaryNav-header-dropdown-link.home a {
  padding: 0;
}
.SecondaryNav .secondaryNav-header-dropdown-link.first {
  padding-top: 1.5em;
}
.SecondaryNav .secondaryNav-header-label {
  display: flex;
  text-align: center;
  white-space: nowrap;
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.3em;
  max-width: 400px;
  line-height: 1.5em;
}
.SecondaryNav .secondaryNav-header-label.active {
  color: var(--main-color);
}
.SecondaryNav .secondaryNav-header-label span {
  text-overflow: ellipsis;
  overflow: hidden;
}
.SecondaryNav a, .SecondaryNav button {
  text-decoration: none;
  color: inherit;
}
.SecondaryNav a:hover, .SecondaryNav a:focus, .SecondaryNav button:hover, .SecondaryNav button:focus {
  color: var(--main-color);
}
.SecondaryNav i {
  font-size: 2em;
}
.SecondaryNav .nav-button {
  position: absolute;
  margin-top: 1em;
  z-index: 2;
}
.SecondaryNav .nav-button.left-button {
  left: 0em;
}
.SecondaryNav .nav-button.right-button {
  right: 0em;
}
.SecondaryNav .nav-link {
  position: relative;
}
.SecondaryNav .nav-link small {
  font-size: 9px;
  color: var(--main-color);
  text-transform: uppercase;
  position: absolute;
  top: 8px;
  right: 1.4em;
  font-weight: 600;
}
.SecondaryNav nav {
  flex-grow: 1;
  flex-basis: 100%;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .SecondaryNav nav {
    border-top: 1px solid var(--light-grey);
  }
}
.SecondaryNav nav.with-buttons:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 45px;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.SecondaryNav nav.with-buttons:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 45px;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  z-index: 1;
}
.SecondaryNav nav ul {
  overflow-y: hidden;
  overflow-x: scroll;
}
.SecondaryNav nav ul::-webkit-scrollbar {
  display: none;
}
.SecondaryNav nav ul {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.SecondaryNav nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  position: relative;
}
.SecondaryNav nav li a {
  display: flex;
  text-align: center;
  white-space: nowrap;
  align-items: center;
  margin-right: 1em;
  padding: 1.3em;
  border-top: 2px solid transparent;
}
.SecondaryNav nav li a.active {
  color: var(--main-color);
}
.SecondaryNav nav li:first-child a {
  margin-left: 2em;
}
.SecondaryNav nav .SecondaryNav-slider {
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--main-color);
  transition: left 0.4s ease, width 0.4s ease, opacity 0.2s ease;
}

.TertiaryNav {
  padding: 2em;
  position: relative;
  flex: 2;
  max-width: 400px;
  height: 100%;
  overflow: auto;
}
@media only screen and (max-width: 900px) {
  .TertiaryNav {
    flex-basis: 100%;
    padding: 1em;
  }
  .TertiaryNav.static {
    flex: 2;
  }
}
.TertiaryNav label {
  display: block;
  margin-top: 1em;
}
.TertiaryNav .TertiaryNav-title {
  align-items: center;
  display: flex;
  font-size: 0.9em;
  font-weight: 600;
  padding: 0 0.25em 0.75em;
  text-transform: uppercase;
}
.TertiaryNav .TertiaryNav-title.clickable {
  cursor: pointer;
}
.TertiaryNav .TertiaryNav-title.clickable:hover {
  color: var(--main-color);
}
.TertiaryNav .TertiaryNav-header-close {
  position: absolute;
  right: 1.5em;
  top: 1.5em;
}
.TertiaryNav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.TertiaryNav li {
  padding: 0.5em;
}
.TertiaryNav li.title {
  font-weight: 600;
}
.TertiaryNav li a {
  display: block;
  color: inherit;
  padding: 0.5em;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.TertiaryNav li a.active {
  border-left: 2px solid var(--main-color);
  color: var(--main-color);
}
.TertiaryNav li a:hover {
  color: var(--main-color);
}

.TertiaryNav-expand {
  z-index: 1;
  padding: 1.5em 0 0 1em;
}
.TertiaryNav-expand .expand-text {
  cursor: pointer;
  padding-left: 1.5em;
  transform: rotateZ(90deg);
  white-space: nowrap;
  width: 100%;
}
.TertiaryNav-expand .TertiaryNav-header-close {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 2.5em;
}

.TertiaryNav-header-close {
  background: var(--light-grey);
  border-radius: 4px;
  padding: 0.5em;
  cursor: pointer;
}
.TertiaryNav-header-close span {
  display: block;
  line-height: 0;
}

.FieldComponent-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2em;
  padding-top: 2em;
}
.FieldComponent-container.half .SelectFieldComponent.pull-left, .FieldComponent-container.half .SwitchFieldInput.pull-left {
  flex-basis: 48%;
  flex-grow: 0;
}
.FieldComponent-container.first {
  padding-top: 0;
}
.FieldComponent-container.align-center {
  align-items: center;
}
.FieldComponent-container.align-end {
  align-items: flex-end;
}
.FieldComponent-container .FieldComponent + .FieldComponent {
  margin: 0;
}

.FieldComponent label {
  display: block;
  font-weight: 600;
}
.FieldComponent label.label-with-tip {
  display: inline-block;
  margin-right: 0.5em;
}
.FieldComponent input, .FieldComponent select, .FieldComponent textarea, .FieldComponent .FieldComponent-submission {
  font-family: inherit;
  padding: 0.7em 1em;
  background-color: var(--light-grey);
  border-radius: 4px;
  resize: none;
  overflow-wrap: break-word;
}
.FieldComponent input:disabled, .FieldComponent select:disabled, .FieldComponent textarea:disabled, .FieldComponent .FieldComponent-submission:disabled {
  background-color: var(--medium-grey);
  cursor: not-allowed;
}
.FieldComponent .quill {
  background-color: var(--light-grey);
}
.FieldComponent .quill .jinja {
  background-color: var(--main-color-lighter);
  padding: 2px 4px;
  border-radius: 4px;
}
.FieldComponent .quill .jinja:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.FieldComponent .quill .jinja-logic {
  color: grey;
  font-style: italic;
}
.FieldComponent .quill .mention[data-blot-name=jinja-text] {
  background-color: var(--medium-grey);
  border: 1px solid var(--darkest-grey);
}
.FieldComponent .quill .mention[data-blot-name=jinja-text-code] {
  color: grey;
  font-style: italic;
}
.FieldComponent .quill hr {
  border: solid 1px var(--medium-grey);
  margin-top: 0;
}
.FieldComponent *.danger input {
  background-color: var(--amber-color-lightest);
}
.FieldComponent select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.FieldComponent.secondary input, .FieldComponent.secondary select, .FieldComponent.secondary textarea, .FieldComponent.secondary .FieldComponent-submission, .FieldComponent.secondary .FieldComponent-select {
  background-color: var(--white-color);
}
.FieldComponent.view-only input, .FieldComponent.view-only select, .FieldComponent.view-only textarea, .FieldComponent.view-only .FieldComponent-submission {
  background-color: var(--white-color);
  border: 1px solid var(--light-grey);
  cursor: initial;
}
.FieldComponent.isShort {
  flex-basis: 20%;
  flex-shrink: 1;
  flex-grow: 1;
  transition: flex-basis 0.2s ease;
}
.FieldComponent.isShort label {
  white-space: nowrap;
}
.FieldComponent.isShort input {
  width: 100%;
}
@media only screen and (max-width: 900px) {
  .FieldComponent.isShort:focus-within {
    flex-basis: 60%;
  }
}
.FieldComponent.isTitle {
  flex-basis: 13%;
  flex-grow: 0;
}
@media only screen and (max-width: 900px) {
  .FieldComponent.isTitle {
    flex-basis: 25%;
  }
}
.FieldComponent.full-width {
  flex: 1;
}
.FieldComponent.full-width input, .FieldComponent.full-width select, .FieldComponent.full-width textarea, .FieldComponent.full-width .FieldComponent-submission, .FieldComponent.full-width .FieldComponent-select {
  width: 100%;
}
.FieldComponent.full-width p.description {
  font-size: 85%;
  margin-top: 5px;
}
.FieldComponent.full-width.header input {
  background-color: var(--white-color);
  font-size: 20px;
  padding: 0;
  font-weight: 700;
}
.FieldComponent.full-width.header textarea {
  background-color: var(--white-color);
  font-size: 20px;
  padding: 0;
  font-weight: 700;
}
.FieldComponent.half-width {
  flex: 1;
}
.FieldComponent.half-width input, .FieldComponent.half-width select, .FieldComponent.half-width textarea, .FieldComponent.half-width .FieldComponent-submission, .FieldComponent.half-width .FieldComponent-select {
  width: 50%;
}
.FieldComponent.inline {
  display: flex;
  align-items: center;
  gap: 1em;
}
.FieldComponent.inline label {
  margin-bottom: 0;
}
.FieldComponent.hide-label label {
  display: none;
}
.FieldComponent + .FieldComponent, .FieldComponent-container + .FieldComponent {
  margin-top: 2em;
}
.FieldComponent.SelectFieldComponent.space-for-dropdown {
  min-height: 265px;
}
.FieldComponent.SelectFieldComponent.min-width-for-action {
  min-width: 180px;
}
.FieldComponent.SelectFieldComponent.min-width-for-action-wide {
  min-width: 240px;
}
.FieldComponent.SelectFieldComponent.max-width-for-action {
  max-width: 190px;
}
.FieldComponent.SelectFieldComponent.white-dropdown .FieldComponent-betterSelect .FieldComponent-dropdown__control {
  background-color: var(--white-color);
  border: 1px solid var(--light-grey);
}
.FieldComponent .FieldComponent-betterSelect.is-disabled {
  cursor: not-allowed;
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__control {
  background-color: var(--medium-grey);
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__value-container .FieldComponent-dropdown__single-value {
  color: var(--darker-grey);
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value {
  background-color: var(--dark-grey);
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value__label {
  color: var(--darker-grey);
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value__remove {
  display: none;
}
.FieldComponent .FieldComponent-betterSelect.is-disabled .FieldComponent-dropdown__indicators {
  display: none;
}
.FieldComponent .FieldComponent-betterSelect .FieldComponent-dropdown__control {
  background-color: var(--light-grey);
}
.FieldComponent .FieldComponent-betterSelect .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value {
  background-color: var(--white-color);
}
.FieldComponent .FieldComponent-betterSelect .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value .option-item {
  padding: 0.25em;
  border: 0;
}
.FieldComponent .FieldComponent-betterSelect .FieldComponent-dropdown__value-container .FieldComponent-dropdown__single-value {
  width: calc(100% - 2em);
}
.FieldComponent .FieldComponent-select {
  position: relative;
  background-color: var(--light-grey);
  border-radius: 4px;
}
.FieldComponent .FieldComponent-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5em;
  background-color: transparent;
  z-index: 1;
  position: relative;
}
.FieldComponent .FieldComponent-select i {
  position: absolute;
  top: 5px;
  right: 4px;
  z-index: 0;
  color: hsl(0, 0%, 80%);
}
.FieldComponent .FieldComponent-select:hover i {
  color: hsl(0, 0%, 40%);
  cursor: pointer;
}
.FieldComponent .FieldComponent-tuple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1em;
}
.FieldComponent .FieldComponent-tuple.FieldComponent-tuple-with-action {
  grid-template-columns: 3fr 2fr 100px;
}
.FieldComponent .FieldComponent-tuple .tuple-form-label-centered {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.FieldComponent .FieldComponent-color {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  position: relative;
}
.FieldComponent .FieldComponent-color .color-container {
  display: flex;
  align-items: center;
  gap: 1em;
  border-radius: 4px;
  background-color: var(--light-grey);
  padding: 0.7em 0.8em;
}
.FieldComponent .FieldComponent-color .color {
  height: 24px;
  width: 24px;
  border-radius: 100px;
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
}
.FieldComponent .FieldComponent-color .color.selected:after {
  content: " ";
  position: absolute;
  height: 10px;
  width: 10px;
  top: 7px;
  left: 7px;
  z-index: 2;
  background-color: var(--lightest-grey);
  border-radius: 10px;
}
.FieldComponent .FieldComponent-color .color.empty {
  outline: 1px solid var(--dark-grey);
}
.FieldComponent .FieldComponent-color .color:hover.empty {
  background-color: var(--medium-grey);
}
.FieldComponent .FieldComponent-color .color-input.hidden {
  opacity: 0;
  height: 1px;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.FieldComponent .FieldComponent-color .color-input-value {
  width: 96px;
}
.FieldComponent .FieldComponent-color .color-input-value input {
  padding: 0.7em 0;
}
.FieldComponent .FieldComponent-submission p {
  margin-bottom: 0;
}
.FieldComponent .FieldComponent-submission ul {
  padding-left: 1.5em;
}
.FieldComponent .FieldComponent-submission li {
  list-style-type: initial;
}
.FieldComponent .FieldComponent-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.FieldComponent .FieldComponent-checkbox input {
  display: none;
}
.FieldComponent .FieldComponent-checkbox .FieldComponent-checkbox-box {
  display: block;
  height: 17px;
  width: 17px;
  border: 1px solid var(--darkest-grey);
  border-radius: 4px;
  position: relative;
}
.FieldComponent .FieldComponent-checkbox .FieldComponent-checkbox-box i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  display: none;
}
.FieldComponent .FieldComponent-checkbox .FieldComponent-checkbox-label {
  font-size: 0.9em;
  padding-left: 0.8em;
  line-height: 2em;
}
.FieldComponent .FieldComponent-checkbox input:checked + .FieldComponent-checkbox-box {
  background-color: var(--main-color);
  border-color: var(--main-color);
}
.FieldComponent .FieldComponent-checkbox input:checked + .FieldComponent-checkbox-box i {
  color: var(--white-color);
  display: block;
}
.FieldComponent .FieldComponent-uploaded-file {
  font-family: inherit;
  padding: 0.7em 1em;
  background-color: var(--light-grey);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.FieldComponent .FieldComponent-uploaded-file .FieldComponent-submission {
  padding: 0 0;
}
.FieldComponent .FieldComponent-uploaded-file div {
  align-items: center;
  display: flex;
}
.FieldComponent .FieldComponent-uploaded-file h4 {
  margin: 0 0 0 2em;
}
.FieldComponent .FieldComponent-uploaded-file a.link {
  margin-left: 4em;
}
.FieldComponent .FieldComponent-uploaded-file a.link-image {
  height: 100%;
}
.FieldComponent .FieldComponent-uploaded-file i {
  font-size: 4em;
}
.FieldComponent .FieldComponent-file-thumb {
  border-radius: 4px;
  height: 115px;
  min-height: 115px;
  overflow: hidden;
  position: relative;
  width: 160px;
}
.FieldComponent .FieldComponent-file-thumb-image {
  height: 100%;
  text-align: center;
  width: 100%;
}
.FieldComponent .FieldComponent-file-thumb-image img {
  max-width: none;
  max-height: 100%;
}
.FieldComponent .FieldComponent-dropdown__control {
  min-height: 35px;
}
.FieldComponent .FieldComponent-dropdown__control,
.FieldComponent .FieldComponent-dropdown__menu {
  color: var(--darkest-grey);
  border: 0;
  box-shadow: none;
}
.FieldComponent .FieldComponent-dropdown__value-container {
  padding: 3px 1em 2px;
}
.FieldComponent .FieldComponent-dropdown__menu {
  box-shadow: none;
  margin-top: 4px;
  border: 1px solid var(--light-grey);
  z-index: 3;
}
.FieldComponent .FieldComponent-dropdown__menu .FieldComponent-dropdown__menu-list.noAbs {
  position: inherit !important;
}
.FieldComponent .FieldComponent-dropdown__control--is-focused {
  border-color: var(--main-color-lightest);
  box-shadow: none;
}
.FieldComponent .FieldComponent-dropdown__option {
  cursor: pointer;
  padding: 0 1em;
}
.FieldComponent .FieldComponent-dropdown__option:first-child .option-item {
  border-top: 0;
}
.FieldComponent .FieldComponent-dropdown__option--is-focused,
.FieldComponent .FieldComponent-dropdown__option:hover {
  color: var(--main-color);
  background-color: transparent;
}
.FieldComponent .FieldComponent-dropdown__option--is-selected {
  color: var(--darkest-grey);
  background-color: var(--main-color-lightest);
}
.FieldComponent .FieldComponent-dropdown__option--is-selected.FieldComponent-dropdown__option--is-focused {
  color: var(--main-color);
}
.FieldComponent .FieldComponent-dropdown__indicator {
  padding: 0 4px;
}
.FieldComponent .FieldComponent-dropdown__indicator-separator {
  display: none;
}
.FieldComponent .FieldComponent-score {
  display: flex;
  padding-top: 1em;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
.FieldComponent .FieldComponent-score .score-label {
  text-align: right;
}
.FieldComponent .FieldComponent-score .score-label small, .FieldComponent .FieldComponent-score .score-label strong {
  display: block;
}
.FieldComponent .FieldComponent-score .number-input {
  width: 5em;
}
.FieldComponent .FieldComponent-subSectionTitle {
  display: flex;
  align-items: center;
}
.FieldComponent .FieldComponent-subSectionTitle h3 {
  margin-left: 10px;
  margin-bottom: 0;
}
.FieldComponent .FieldComponent-dropdown__value-container .option-item.option-item-formatted {
  background-color: var(--white-color);
  display: flex;
  gap: 2em;
  justify-content: space-between;
  padding: 0.3em 1em 0.3em 0.3em;
}
.FieldComponent .FieldComponent-dropdown__value-container .option-item.option-item-formatted .resourceType {
  display: none;
}
.FieldComponent .FieldComponent-dropdown__value-container .option-item.option-item-formatted .option-detail {
  margin-top: 0;
  gap: 2em;
}
.FieldComponent .option-item {
  padding: 1em 0;
  border-top: 1px solid var(--light-grey);
  width: 100%;
}
.option-content .FieldComponent .option-item {
  flex: 1;
  min-width: 0;
}
.FieldComponent .option-item .option-title {
  display: flex;
  justify-content: space-between;
}
.FieldComponent .option-item .option-title.inline {
  display: inline;
}
.FieldComponent .option-item .option-title span {
  font-size: 0.9em;
  text-transform: capitalize;
  color: var(--darker-grey);
}
.FieldComponent .option-item .option-detail {
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5em;
  color: var(--darker-grey);
}
.FieldComponent .option-item .option-detail i {
  font-size: 0.75em;
}
.FieldComponent .option-item .option-detail div {
  display: flex;
  align-items: center;
}
.FieldComponent .help-link {
  padding-top: 1em;
}
.FieldComponent .quick-options {
  margin-top: 0.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.FieldComponent .quick-option {
  display: inline-block;
}
.FieldComponent.divider-line {
  margin: 2.2em 0;
  border-bottom: 1px solid var(--medium-grey);
}
.FieldComponent.divider-line + .FieldComponent {
  margin-top: 0;
}
.FieldComponent.divider-line.mt-0 {
  margin-top: 0;
}
.FieldComponent.divider-line.mb-0 {
  margin-bottom: 0;
}
.FieldComponent.divider-line.mb-0 + .FieldComponent {
  margin-top: 2em;
}
.FieldComponent.divider-line.m-small {
  margin: 1.2em 0;
}

.total-score {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.total-score .button {
  margin: 0;
}
.total-score .FieldComponent-score {
  padding: 0 0 1em 0;
}

.panel-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(32%, 360px), 1fr));
  column-gap: 2%;
}
.panel-container.big-mid {
  grid-template-columns: 4fr 5fr 3fr;
}
.panel-container.as-columns {
  display: block;
  column-width: 430px;
}
@media screen and (max-width: 800px) {
  .panel-container.as-columns {
    display: grid;
    grid-template-columns: auto;
  }
}
.panel-container.as-columns .panel {
  max-width: 600px;
  break-inside: avoid;
}

.panel {
  padding: 2em;
  border: 2px solid var(--light-grey);
  border-radius: 4px;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
  margin-bottom: 2em;
}
.panel.has-link {
  cursor: pointer;
  transition: color 0.3s;
}
.panel.has-link:hover, .panel.has-link:focus, .panel.has-link.active {
  color: var(--main-color);
}
.panel.panel-wide {
  grid-column: span 2;
}
.panel.panel-fit {
  height: fit-content;
}
.panel.no-background {
  background-color: transparent;
  border: none;
}
.panel .panel-heading {
  display: flex;
  align-items: center;
}
.panel .panel-heading .panel-icon + div {
  flex-grow: 1;
}
.panel .panel-icon {
  padding-right: 1em;
  max-width: 6em; /* material icon + padding */
}
.panel .panel-icon i {
  font-size: 5em;
}
.panel .panel-content {
  margin-top: 2em;
}
.panel .panel-content.no-heading {
  margin-top: 0;
}
.panel .panel-subtitle-action {
  margin-top: 1em;
}
.panel .panel-subtitle-action.text-warning a {
  color: var(--amber-color);
}
.panel .panel-subtitle-action.text-warning a:hover, .panel .panel-subtitle-action.text-warning a:focus, .panel .panel-subtitle-action.text-warning a.active {
  color: var(--amber-color-dark);
}
.panel li:not(:last-child) {
  margin-bottom: 0.5em;
}
.panel .links {
  display: flex;
}
.panel .links li {
  margin-right: 1em;
}
.panel.panel-with-image .panel-content {
  display: flex;
  flex-direction: row;
  gap: 1em;
  line-height: 1.5em;
}
.panel.panel-with-image .panel-content .panel-image {
  width: 50%;
}
.panel.panel-with-image .panel-content .panel-image img {
  object-fit: contain;
  width: 100%;
}
.panel .panel-footer {
  display: flex;
  color: var(--dark-grey);
}
.panel .panel-footer.right {
  justify-content: end;
}
.panel .title-container {
  display: flex;
  justify-content: space-between;
}
.panel .markdown {
  line-height: 1.5;
}
.panel .no-list-style {
  list-style: none;
}

.button {
  padding: 1em 1.2em;
  margin-bottom: 1em;
  color: var(--white-color);
  overflow: hidden;
  position: relative;
  font-size: 0.85em;
  font-weight: 500;
  text-decoration: none;
  background-color: var(--main-color);
  transition: background-color 0.3s;
  border-radius: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.button.blue-button {
  background-color: var(--sheep-blue-color);
}
.button.blue-button:hover, .button.blue-button:focus, .button.blue-button.active {
  background-color: var(--sheep-blue-color-dark);
}
.button.amber-button {
  background-color: var(--amber-color);
}
.button.amber-button:hover, .button.amber-button:focus, .button.amber-button.active {
  background-color: var(--amber-color-dark);
}
.button.amber-button:disabled {
  background-color: var(--light-grey);
}
.button.inline-button {
  display: inline;
}
.button.with-icon {
  display: flex;
  align-items: center;
}
.button.with-icon.inline-button {
  display: inline-flex;
}
.button.with-icon.left {
  padding: 0.5em 1em 0.5em 0.5em;
}
.button.with-icon.left i {
  order: -1;
  padding-right: 0.15em;
}
.button.with-icon.right {
  padding: 0.5em 0.5em 0.5em 1em;
}
.button.with-icon.right span.icon-wrapper {
  padding-left: 0.15em;
  margin-top: 0.4em;
}
.button.with-icon.right i {
  padding-left: 0.15em;
}
.button.icon-only {
  padding: 0.25em;
}
.button:hover, .button:focus, .button.active {
  background-color: var(--main-color-dark);
  color: var(--white-color);
}
.button.disabled, .button:disabled {
  background-color: var(--light-grey);
  cursor: not-allowed;
}
.button.no-bg {
  color: var(--main-color);
  background-color: transparent;
  padding: 0.25em 1em;
}
.button.no-bg i {
  margin: 0;
  border-left: 0;
}
.button.no-bg:hover, .button.no-bg:focus, .button.no-bg.active {
  background-color: transparent;
  color: var(--main-color-dark);
}
.button.no-bg.secondary {
  color: var(--darkest-grey);
}
.button.no-bg.secondary:hover, .button.no-bg.secondary:focus, .button.no-bg.secondary.active {
  background-color: transparent;
  color: var(--darker-grey);
}
.button.no-bg.danger {
  color: var(--red-color);
}
.button.no-bg.danger:hover, .button.no-bg.danger:focus, .button.no-bg.danger.active {
  color: var(--warning-color-dark);
}
.button.no-bg.disabled, .button.no-bg:disabled {
  opacity: 0.4;
}
.button.saving {
  opacity: 0.7;
  cursor: wait;
}
.button.mb-0 {
  margin-bottom: 0;
}

.button-container {
  display: flex;
  align-items: center;
  column-gap: 2em;
}
.button-container > * {
  margin-bottom: 0;
}
.button-container .button-container-left {
  align-items: center;
}
.button-container.close-gap {
  column-gap: 0.5em;
}
.button-container.right {
  justify-content: flex-end;
}

/* Print styles for DragSwitchItem */
@media print {
  /* Reset all height restrictions */
  body, html {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .app {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .content {
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    /* override the transition style on the main content div */
  }
  .content > div {
    position: static !important;
  }
  /* Force table container to expand */
  .TableComponent-scrollable {
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    page-break-inside: auto !important;
    display: block !important;
  }
  /* Handle all table variants */
  .interactive-table .TableComponent-scrollable,
  .TableComponent-with-footer .TableComponent-scrollable {
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }
  /* Ensure table content flows across multiple pages */
  .TableComponent {
    page-break-inside: auto !important;
    height: auto !important;
    max-height: none !important;
    /* Allow page breaks within table rows */
  }
  .TableComponent tbody tr {
    page-break-inside: avoid !important;
    page-break-after: auto !important;
  }
  .TableComponent {
    /* Keep headers on each page */
  }
  .TableComponent thead {
    display: table-header-group !important;
  }
  .TableComponent {
    /* Ensure table cells don't break inappropriately */
  }
  .TableComponent td, .TableComponent th {
    page-break-inside: avoid !important;
  }
  .TableComponent {
    /* Disable sticky positioning in print */
  }
  .TableComponent th {
    position: static !important;
    top: auto !important;
  }
  .TableComponent {
    /* Ensure last row is fully visible */
  }
  .TableComponent tbody tr:last-child {
    page-break-inside: avoid !important;
    page-break-after: auto !important;
  }
  /* Ensure proper spacing for print */
  .TableComponent-scrollable {
    margin-bottom: 1em !important;
    padding-bottom: 1em !important;
  }
  /* Ensure footer is visible and properly positioned in print */
  .TableComponent-footer {
    display: flex !important;
    page-break-inside: avoid !important;
    page-break-before: auto !important;
    margin-top: 1em !important;
    margin-bottom: 2em !important;
    padding-top: 1em !important;
    padding-bottom: 1em !important;
  }
  /* Optimize table appearance for print */
  .TableComponent {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
  .TableComponent td, .TableComponent th {
    padding: 0.5em !important;
    border-bottom: 1px solid #ccc !important;
  }
  .TableComponent th {
    background-color: #f5f5f5 !important;
    font-weight: bold !important;
  }
  /* Hide interactive elements in print */
  .TableComponent .actions {
    display: none !important;
  }
  .TableComponent {
    /* Hide any buttons or interactive elements */
  }
  .TableComponent button, .TableComponent .button {
    display: none !important;
  }
  /* Handle interactive table variant in print */
  .interactive-table .TableComponent-scrollable {
    max-height: none !important;
    overflow: visible !important;
  }
  /* Ensure table-fixed variant works in print */
  .table-fixed .TableComponent {
    table-layout: auto !important;
  }
  /* Override any other potential height restrictions */
  * {
    max-height: none !important;
  }
  /* Ensure table rows can flow across pages */
  table {
    page-break-inside: auto !important;
  }
  tbody {
    page-break-inside: auto !important;
  }
  /* Additional specificity for table containers */
  div.TableComponent-scrollable,
  .TableComponent-scrollable,
  [class*=TableComponent-scrollable] {
    max-height: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    page-break-inside: auto !important;
    display: block !important;
  }
  /* Force all table-related elements to expand */
  table.TableComponent,
  .TableComponent table,
  [class*=TableComponent] table {
    page-break-inside: auto !important;
    height: auto !important;
    max-height: none !important;
  }
}
.TableComponent-scrollable {
  overflow: auto;
  max-height: calc(100vh - 230px);
}
.interactive-table .TableComponent-scrollable {
  max-height: calc(100vh - 380px);
}
@media only screen and (max-width: 900px) {
  .interactive-table .TableComponent-scrollable {
    max-height: calc(100vh - 425px);
  }
}
@media only screen and (max-width: 900px) {
  .TableComponent-scrollable {
    max-height: calc(100vh - 340px);
  }
}
.TableComponent-scrollable.TableComponent-with-footer {
  max-height: calc(100vh - 224px);
}
@media only screen and (max-width: 900px) {
  .TableComponent-scrollable.TableComponent-with-footer {
    max-height: calc(100vh - 340px);
  }
}
.TableComponent-scrollable th {
  position: sticky;
  top: 0;
  background: var(--lightest-grey);
  height: 3em;
}
.TableComponent-scrollable td.actions {
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.TableComponent-scrollable td.actions i {
  font-size: 1.45em;
}

.TableComponent-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
  margin-right: 4em;
}

.TableComponent-results-text {
  flex-grow: 1;
  justify-self: flex-end;
  font-style: italic;
  text-align: end;
}
.TableComponent-results-text.no-results {
  font-style: normal;
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 2em;
}

@keyframes loadingShimmer {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 100em 0;
  }
}
.TableComponent {
  width: 100%;
}
.TableComponent-blurred {
  color: transparent;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  user-select: none;
  position: relative;
}
.TableComponent-overlay {
  text-shadow: none;
  color: var(--darkest-grey);
  position: absolute;
  margin-left: 0;
  width: calc(100vw - 4em);
  text-align: center;
  top: 50%;
}
.TableComponent thead th, .TableComponent .label-cell {
  text-align: left;
  font-weight: 600;
  font-size: 0.9em;
}
.TableComponent td, .TableComponent th {
  padding: 1em;
  line-height: 1.4em;
}
.TableComponent td.align-left, .TableComponent th.align-left {
  text-align: left;
}
.TableComponent td.align-right, .TableComponent th.align-right {
  text-align: right;
}
.TableComponent td.align-center, .TableComponent th.align-center {
  text-align: center;
}
.TableComponent td.vertical-center, .TableComponent th.vertical-center {
  vertical-align: middle;
}
.TableComponent td.statuses, .TableComponent th.statuses {
  width: 1%;
}
.TableComponent td {
  vertical-align: top;
}
.TableComponent td.statuses {
  width: 1%;
  padding-top: 1.1em;
  padding-bottom: 0;
}
.TableComponent td.actions {
  padding-bottom: 0;
}
.TableComponent td.actions i {
  font-size: 1.45em;
}
.TableComponent td * {
  margin-bottom: 0;
}
.TableComponent td .attendees-guest {
  color: var(--darker-grey);
  font-style: italic;
}
.TableComponent tbody {
  transition: color 1s ease-in-out;
}
.TableComponent tbody.suspended {
  color: var(--light-grey);
  cursor: wait;
  pointer-events: none;
}
.TableComponent tbody tr {
  border-top: 1px solid var(--medium-grey);
  transition: border-width 0.3s allow-discrete;
}
.TableComponent tbody tr td .unselectable {
  user-select: none;
}
.TableComponent tbody tr.clickable td div {
  max-height: 150px;
  transition: max-height 0.3s, padding 0.3s;
}
.TableComponent tbody tr.clickable:hover {
  background-color: var(--light-grey);
}
.TableComponent tbody tr.group-row {
  background-color: var(--main-color-lightest);
}
.TableComponent tbody tr.group-row:hover {
  background-color: var(--light-grey);
}
.TableComponent tbody tr.collapsed {
  border-width: 0;
}
.TableComponent tbody tr.collapsed td div {
  max-height: 0;
  transition: max-height 0.3s;
}
.TableComponent tbody tr.collapsed.clickable td {
  transition: padding 0.3s;
  padding-top: 0;
  padding-bottom: 0;
}
.TableComponent tbody .loading-row td {
  padding: 0;
}
.TableComponent tbody .loading-row .loading {
  background-color: var(--main-color-lighter);
  height: 60px;
  animation: loadingShimmer 1s linear infinite forwards;
  background: #fff;
  background: linear-gradient(to right, var(--main-color-lighter) 0%, var(--main-color-lighten) 50%, var(--main-color-lighter) 100%);
  width: 100%;
}
.TableComponent tbody .loading-row .h4 {
  opacity: 0;
}
.TableComponent th.sortableColumn {
  cursor: pointer;
  user-select: none;
}
.TableComponent th.sortableColumn:hover {
  background-color: var(--light-grey);
}
.TableComponent th.sortableColumn .header-info {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.TableComponent th.sortableColumn .header-info .tooltip-container {
  height: 18px;
}
.TableComponent th.sortableColumn .header-info .tooltip-container i {
  line-height: unset;
  font-size: 18px;
}
.TableComponent th.sortableColumn .header-info .tooltip-container .tooltip {
  margin-top: 20px;
  background-color: white;
  padding: 1em;
  border: 1px solid var(--dark-grey);
  border-radius: 4px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  max-width: unset;
}
.TableComponent th.sortableColumn.sortableColumn:first-child .tooltip {
  left: 0;
  right: unset;
}
.TableComponent th.sortableColumn.sortableColumn:last-child .tooltip {
  left: unset;
  right: 0;
  transform: translateX(10%);
}

.material-icons-outlined.attach-left,
.material-symbols-outlined.attach-left,
.material-icons.attach-left {
  margin-left: 5px;
}
.material-icons-outlined.attach-right,
.material-symbols-outlined.attach-right,
.material-icons.attach-right {
  margin-right: 5px;
}
.material-icons-outlined.small,
.material-symbols-outlined.small,
.material-icons.small {
  font-size: 1em;
}
.material-icons-outlined.medium,
.material-symbols-outlined.medium,
.material-icons.medium {
  font-size: 1.25em;
}
.material-icons-outlined.warning,
.material-symbols-outlined.warning,
.material-icons.warning {
  color: var(--amber-color);
}
.material-icons-outlined.positive,
.material-symbols-outlined.positive,
.material-icons.positive {
  color: var(--main-color);
}
.material-icons-outlined.primary-contact,
.material-symbols-outlined.primary-contact,
.material-icons.primary-contact {
  color: var(--sheep-yellow);
}

.icon-container {
  display: flex;
  align-items: center;
}
.icon-container i {
  width: 1.25em;
}
.icon-container i + * {
  flex-grow: 1;
}

.loading {
  position: relative;
}
.loading.slow:after {
  animation: fadeIn 4s;
}
.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/sheep-loader-alt.svg");
  cursor: wait !important;
}
.loading:after.one-s {
  transition: background-color 1s;
}
.loading.button:after {
  background-size: 30px;
}
.loading.loading-large {
  width: 100%;
  height: 80%;
}
.loading.loading-large:after {
  background-size: 40%;
}

.loading-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 70vh !important;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 5s ease;
}

.loading-alt {
  background-position: center;
  background-repeat: no-repeat;
  mask-size: contain;
  mask: url("/sheep-loader-alt.svg") no-repeat 50% 50%;
  -webkit-mask: url("/sheep-loader-alt.svg") no-repeat 50% 50%;
  cursor: wait !important;
  /* width: 40px; */
  /* height: 40px; */
  -webkit-mask-size: contain;
}
.loading-alt.loading-full {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: 120px;
  background-color: var(--main-color);
}
.loading-alt.loading-large {
  height: 200px; /* Full-height */
  width: 200px; /* Full-width */
  background-size: 120px;
  background-color: var(--main-color);
  color: transparent !important;
}
.loading-alt.loading-small {
  height: 50px; /* Full-height */
  width: 50px; /* Full-width */
  background-size: 30px;
  background-color: var(--main-color);
  color: transparent !important;
}
.loading-alt.loading-xsmall {
  height: 30px; /* Full-height */
  width: 30px; /* Full-width */
  background-size: 20px;
  background-color: var(--main-color);
  color: transparent !important;
}
.loading-alt.slow {
  opacity: 0;
  animation: fadeIn 10s linear 1s forwards;
}
.loading-alt.medium {
  opacity: 0;
  animation: fadeIn 4s linear 0.3s forwards;
}

.NotificationDropdown .HeaderDropdown {
  min-width: 330px;
}
.NotificationDropdown .HeaderDropdown ul {
  padding: 1.3em 1.1em;
}
.NotificationDropdown-empty {
  padding: 1.3em 1.1em;
  color: var(--main-color);
}
.NotificationDropdown-empty p {
  text-align: center;
  margin-bottom: 0;
}
.NotificationDropdown-title {
  text-align: start;
  color: var(--darkest-grey);
}

.NotificationItem {
  text-align: left;
  margin-bottom: 1.5em;
  max-width: 50vw;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .NotificationItem {
    max-width: 80vw;
  }
}
.NotificationItem.mb-0 {
  margin-bottom: 0;
}
.NotificationItem .NotificationItem-date {
  font-size: 0.85em;
  padding: 0.85em 1em;
  background-color: var(--lightest-grey);
  border-radius: 4px;
}
.NotificationItem .NotificationItem-message {
  padding: 0 1em;
}
.NotificationItem .NotificationItem-message:hover {
  color: var(--main-color);
}
.NotificationItem .NotificationItem-date,
.NotificationItem .NotificationItem-message {
  color: var(--darkest-grey);
  white-space: normal;
}

@media only screen and (max-width: 1023px) {
  button .NotificationItem .NotificationItem-date span,
  button .NotificationItem .NotificationItem-content span,
  button .NotificationItem .NotificationItem-options span {
    display: initial;
  }
}
li:first-child .NotificationItem {
  padding-top: 1em;
}

.modal-bg {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.modal {
  position: absolute;
  background-color: var(--white-color);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  right: 25vw;
  width: calc(450px + 25vw);
  max-width: 992px;
  max-height: 77vh;
  overflow: auto;
  top: 5vh;
  padding: 3em;
}
.modal h1 {
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .modal {
    width: 94vw;
  }
}
@media only screen and (max-height: 800px) {
  .modal {
    padding: 1.5em;
  }
}
.modal.modal-box {
  border: 4px solid hsla(0, 0%, 0%, 0.5);
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
  max-width: 600px;
  min-width: 300px;
  right: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal.modal-box .modal-content {
  overflow: auto;
  scrollbar-gutter: auto;
}
.modal.modal-box .modal-content.modal-content-with-cross {
  margin-top: -2.4em;
}
.modal.modal-box .modal-content.with-sidebar {
  overflow: unset;
}
.modal.modal-box .modal-header {
  min-height: 1em;
}
.modal.modal-box .modal-content-header.with-header-actions {
  display: flex;
  justify-content: space-between;
}
.modal.modal-box.saving {
  pointer-events: none;
}
.modal.modal-box.beta {
  max-width: 800px;
}
.modal.modal-no-padding {
  padding: 0;
}
.modal.modal-no-padding .modal-content {
  padding: 0;
}
.modal.modal-no-padding .modal-content.modal-content-with-cross {
  margin-top: 0;
}
.modal.modal-no-padding .modal-header {
  min-height: 0;
}
.modal.modal-no-padding .modal-header .modal-header-close {
  padding: 0;
  top: 1em;
  right: 1em;
}
.modal.modal-fixed {
  position: fixed;
}
.modal.modal-right {
  right: 0;
}
.modal.modal-full-height {
  top: 69px;
  bottom: 0;
  height: auto;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
.modal.modal-full-height .modal-body {
  overflow-y: scroll;
  flex-grow: 1;
}
.modal.modal-full-height .modal-body::-webkit-scrollbar {
  display: none;
}
.modal.modal-full-height .modal-body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal.modal-full-height .modal-body .owner-section {
  padding: 2em 0;
}
.modal.modal-full-height .modal-body .owner-section .modal-content {
  padding: 0;
}
.modal.modal-full-height .modal-body .sheep-user-feedback-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0.5em;
  position: relative;
}
.modal.modal-full-height .modal-body .sheep-user-feedback-actions > span {
  cursor: pointer;
  color: inherit;
}
.modal.modal-full-height .modal-body .sheep-user-feedback-actions > span > span {
  display: flex;
  align-items: center;
}
.modal.modal-full-height .modal-footer {
  align-content: space-between;
  align-items: stretch;
  border-top: 1px solid var(--darker-grey);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
  padding-top: 1.5em;
}
@media only screen and (max-height: 800px) {
  .modal.modal-full-height .modal-footer {
    padding-top: 0.5em;
  }
}
.modal.modal-full-height.with-nav {
  padding-left: calc(260px + 3em);
  padding-right: 3em;
  max-width: calc(1252px + 3em);
  width: calc(450px + 25vw + 260px + 3em);
  max-height: 100%;
}
@media only screen and (max-width: 1023px) {
  .modal.modal-full-height.with-nav {
    padding-left: calc(220px + 2em);
    padding-right: 2em;
    max-width: calc(1120px + 2em);
    width: calc(358px + 21vw + 220px + 2em);
  }
}
@media only screen and (max-width: 767px) {
  .modal.modal-full-height.with-nav {
    padding-left: calc(46px + 1em);
    padding-right: 1em;
    max-width: 747px;
    width: calc(100vw - 20px);
  }
}
.modal .modal-header {
  display: flex;
  justify-content: space-between;
}
.modal .modal-header .modal-header-left {
  display: flex;
  align-items: center;
  gap: 1em;
}
.modal .modal-header .modal-header-left .Avatar {
  flex-shrink: 0;
}
.modal .modal-header .modal-header-left .title h1 {
  margin-bottom: 0;
}
.modal .modal-header .modal-header-right {
  display: flex;
  gap: 1em;
  justify-self: flex-end;
  margin-right: 1.5em;
  align-self: flex-start;
}
.modal .modal-header .modal-header-actions {
  position: relative;
  top: -0.5em;
  right: 1.5em;
}
@media only screen and (max-height: 800px) {
  .modal .modal-header .modal-header-actions {
    top: 1.5em;
  }
}
.modal .modal-header .modal-header-close {
  cursor: pointer;
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
  padding: 1em;
}
.modal .modal-header-divider {
  margin-top: 1em;
  border-bottom: 1px solid var(--darker-grey);
}
.modal .modal-content-header.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}
.modal .modal-content-header .modal-content-search-bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
}
.modal .modal-content-header .modal-content-search-bar .SearchBar {
  min-width: 270px;
  margin-bottom: 0px;
}
.modal .modal-content-header .modal-content-search-bar button {
  color: var(--white-color);
  flex-shrink: 0;
  margin-bottom: 0;
  text-align: start;
  font-weight: 400;
}
.modal .modal-content-divider {
  border-bottom: 1px solid var(--light-grey);
  margin: 3em 0 2em;
}
.modal .modal-content-divider.mb-0 {
  margin-bottom: 0;
}
.modal .modal-content-divider.with-header-input {
  margin-top: 1.5em;
  border-bottom: 1px solid var(--dark-grey);
}
.modal .modal-content-divider.with-center-text {
  position: relative;
  display: flex;
  justify-content: center;
}
.modal .modal-content-divider.with-center-text h3 {
  padding: 0 30px;
  position: absolute;
  top: -7px;
  background-color: white;
}
.modal .modal-menu {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100vh - 69px);
  overflow: auto;
  background-color: var(--lightest-grey);
  min-width: 260px;
  padding: 1.5em 2em 1em;
}
.modal .modal-menu.visible {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .modal .modal-menu {
    display: block;
    min-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .modal .modal-menu {
    display: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  }
}
.modal .modal-menu .nav-button {
  position: absolute;
  margin-top: 1.3em;
  z-index: 3;
}
.modal .modal-menu .nav-button.left-button {
  left: -1.3em;
}
.modal .modal-menu .nav-button.right-button {
  right: -1.3em;
}
.modal .modal-menu-collapsed {
  display: none;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4em;
  background-color: var(--lightest-grey);
  height: calc(100vh - 69px);
  width: 46px;
}
.modal .modal-menu-collapsed-button {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 2.5em;
  background: var(--light-grey);
  border-radius: 4px;
  padding: 0.5em;
  cursor: pointer;
}
.modal .modal-menu-collapsed-button span {
  display: block;
  line-height: 0;
}
.modal .modal-menu-collapsed-button-text {
  cursor: pointer;
  padding-left: 1.5em;
  transform: rotateZ(90deg);
  white-space: nowrap;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .modal .modal-menu-collapsed {
    display: block;
  }
}
.modal .modal-menu nav {
  margin-bottom: -1px;
  min-height: 0.8em;
  position: relative;
}
.modal .modal-menu nav.with-buttons:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 30px;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}
.modal .modal-menu nav.with-buttons:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 30px;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 2;
}
.modal .modal-menu nav .nav-title {
  margin-bottom: 1em;
}
.modal .modal-menu nav .nav-close {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  background: var(--light-grey);
  border-radius: 4px;
  padding: 0.2em;
}
@media only screen and (max-width: 767px) {
  .modal .modal-menu nav .nav-close {
    display: block;
  }
}
.modal .modal-menu nav ul {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  overflow-x: scroll;
}
.modal .modal-menu nav ul::-webkit-scrollbar {
  display: none;
}
.modal .modal-menu nav ul {
  scrollbar-width: none;
}
.modal .modal-menu nav ul li {
  flex: 1;
}
.modal .modal-menu nav ul li a {
  align-items: center;
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  color: inherit;
  display: flex;
  justify-content: start;
  margin-right: 0.1em;
  padding: 0.7em 1.3em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.modal .modal-menu nav ul li a.wrap-text {
  max-width: 170px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
  white-space: normal;
}
.modal .modal-menu nav ul li a.half-padding {
  padding: 0.35em 0.65em;
}
.modal .modal-menu nav ul li a.active {
  color: var(--main-color);
  border-left: 2px solid var(--main-color);
}
.modal .modal-menu nav ul li a:hover {
  color: var(--main-color);
}
.modal .modal-tab {
  height: 100%;
}
.modal .modal-content {
  padding: 2em 0;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.modal .modal-content.disable-scrollbar {
  height: auto;
  scrollbar-gutter: auto;
}
.modal .modal-content.allow-scrollbar {
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.modal .modal-content.no-padding {
  padding: 0;
}
.modal .modal-content.side-panel {
  padding-right: 1em;
}
.modal .modal-content.wide {
  width: 100%;
}
.modal .modal-content .FieldComponent-dropdown__menu {
  z-index: 4;
}
.modal .modal-content .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .modal-content .empty-state .image-holder {
  width: 80%;
}
.modal .modal-content-body-form {
  margin-top: 2.5em;
  margin-bottom: 5em;
}
.modal .modal-content-body-form.mt-0 {
  margin-top: 0;
}
.modal .modal-content-body-form.mb-0 {
  margin-bottom: 0;
}
.modal .modal-content-body-form.mb-small {
  margin-bottom: 2em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  column-gap: 2em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap.align-start {
  align-items: flex-start;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FilterChoice-fields-container.FieldComponent-container {
  column-gap: 1em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FilterChoice-fields-container .FieldComponent:first-child, .modal .modal-content-body-form.modal-content-body-form-wrap .FilterChoice-fields-container .FieldComponent:nth-child(n+2) {
  flex: 1;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FilterChoice-fields-container .FieldComponent:nth-child(2n) {
  flex: 0.5;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FilterChoice-fields-container .FieldComponent:nth-child(2n) .FieldComponent-dropdown__control {
  background-color: var(--white-color);
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FilterView-container .ContentSection {
  padding: 0 2em;
  margin-bottom: 1em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent {
  flex-basis: 100%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.first {
  margin-top: 0;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.third-width-field {
  flex-basis: 30%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field {
  flex-basis: 47%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.whole-row {
  margin-right: 52%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.whole-row.right-align {
  margin-right: 0;
  margin-left: 53%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.top {
  align-self: flex-start;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.with-footer-gap {
  margin-bottom: 1.5em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.inline {
  justify-content: space-between;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.half-width-field.toggle-left .toggle-div {
  align-self: flex-start;
  padding-left: 0.2em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.short-width-field {
  flex-basis: 20%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.short-width-field.whole-row {
  margin-right: 80%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.short-width-field.half-row {
  margin-right: 23%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.short-width-field.with-footer-gap {
  margin-bottom: 1.5em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.long-width-field {
  flex-basis: 72%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.long-width-field.whole-row {
  margin-right: 28%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.min-content-field {
  flex-basis: min-content;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.min-content-field.whole-row {
  margin-right: 28%;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.min-content-field.label-only label {
  margin-bottom: 0.5em;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.inline {
  display: flex;
  flex-direction: row;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.inline .input-label {
  min-width: max-content;
}
.modal .modal-content-body-form.modal-content-body-form-wrap .FieldComponent.inline.wrap-label .input-label {
  min-width: unset;
}
.modal .modal-content-body-form .modal-content-body-form-fields:not(:first-of-type):not(:last-of-type) {
  padding-top: 2em;
  border-top: 1px solid var(--medium-grey);
}
.modal .modal-footer {
  padding-top: 1.5em;
  border-top: 1px solid var(--darker-grey);
  display: flex;
  gap: 4em;
  align-items: center;
  justify-content: space-between;
}
.modal .modal-footer > * {
  margin: 0;
}
.modal .modal-footer-record {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  padding-bottom: 1.3em;
  font-size: 0.7em;
}
.modal .modal-footer-record-dates-span {
  cursor: pointer;
  font-style: italic;
}
.modal .modal-footer-record-id {
  display: flex;
  gap: 0.25em;
  cursor: pointer;
  align-items: center;
}
.modal .modal-footer-record-id:hover {
  color: var(--darker-grey);
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.25);
  pointer-events: none;
  cursor: wait;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .info-box {
  border-radius: 4px;
  background-color: var(--main-color);
  padding: 1em;
  margin-bottom: 2em;
  color: var(--white-color);
  display: flex;
  line-height: 1.5em;
  font-size: 0.9em;
}
.modal .info-box > i {
  width: 1.5em;
}
.modal .info-box > div {
  margin-top: 0.25em;
  flex: 1;
}
.modal .info-box > div * {
  margin: 0;
}

.repeater .repeater-actions {
  display: flex;
  column-gap: 2em;
}
.repeater .repeater-actions .link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.repeater .droppable.isTarget {
  outline: 3px dashed var(--medium-grey);
  outline-offset: 5px;
}
.repeater .repeater-element {
  margin-bottom: 1.5em;
  background-color: var(--lightest-grey);
  padding: 1.5em;
  border-radius: 4px;
}
.repeater .repeater-element.no-bg {
  padding: 0;
  background-color: transparent;
}
.repeater .repeater-element .repeater-element-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.repeater .repeater-element .repeater-element-header + .repeater-element-content {
  margin-top: 2em;
}
.repeater .repeater-element .repeater-element-title {
  column-gap: 1em;
  display: flex;
  align-items: center;
}
.repeater .repeater-element .repeater-element-title * {
  margin: 0;
}
.repeater .repeater-element .repeater-element-actions {
  display: flex;
  column-gap: 2em;
  justify-content: flex-end;
  align-items: center;
}
.repeater .repeater-element .repeater-element-actions .repeater-element-drag {
  cursor: move;
}
.repeater .repeater-element .repeater-element-delete {
  display: flex;
  align-items: center;
}

.color-indicator {
  border-radius: 100px;
  height: 14px;
  width: 14px;
  display: block;
  overflow: hidden;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.tags li {
  list-style-type: none;
  font-size: 0.9em;
  color: var(--darker-grey);
  margin-top: 0.5em;
  margin-right: 0.5em;
}
.tags .tag {
  padding: 0.5em 1em;
  background-color: var(--white-color);
  border-radius: 90px;
  font-weight: 600;
  border: 1px solid var(--darker-grey);
}

.Scorecard .Scorecard-options {
  display: flex;
  justify-content: space-between;
}

.bulk-action-container {
  background-color: var(--white-color);
  border-radius: 4px;
  width: 100%;
  padding: 2em;
  bottom: 0;
  right: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
}

.bulk-action-close {
  text-align: right;
  cursor: pointer;
}

.bulk-action-list {
  margin-top: -2em;
}
.bulk-action-list .action-list-item {
  cursor: pointer;
}
.bulk-action-list .action-list-item:first-child {
  border-top: 0;
}
.bulk-action-list .action-list-item {
  border-top: 1px solid var(--light-grey);
  padding: 1em 0;
  display: flex;
  align-items: center;
}
.bulk-action-list .action-list-item span {
  padding-left: 1em;
  flex-grow: 1;
}
.bulk-action-list .action-list-content {
  display: flex;
  padding-bottom: 1em;
}
.bulk-action-list .action-list-content .action-container {
  flex-grow: 1;
}
.bulk-action-list .action-list-content .result-container {
  align-self: center;
  color: var(--main-color);
  justify-self: right;
  padding-left: 0.2em;
}

.badge {
  align-self: flex-start;
  background-color: var(--light-grey);
  color: white;
  padding: 0.3em 0.5em;
  border-radius: 0.3em;
}
.badge.danger {
  background-color: var(--warning-color-dark);
}
.badge.warning {
  background-color: var(--amber-color);
}
.badge.positive {
  background-color: var(--main-color);
}

.DetailLine {
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 1em;
}
.DetailLine.align-start {
  align-items: flex-start;
}

.DetailGroupedLine {
  display: flex;
  gap: 1em;
}
.DetailGroupedLine > span {
  display: flex;
  align-items: center;
}
.DetailGroupedLine > span .label {
  font-weight: 600;
}
.DetailGroupedLine > span {
  gap: 0.5em;
}
.DetailGroupedLine > span.align-start {
  align-items: flex-start;
}

.ResourceDetail .ResourceDetail-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-width: 550px;
  flex-wrap: wrap;
}
.ResourceDetail .ResourceDetail-header div {
  display: flex;
  align-items: center;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left {
  width: 60%;
  justify-content: flex-start;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-statusIcon {
  height: 23px;
  width: 23px;
  flex-shrink: 0;
  margin-right: 20px;
  user-select: none;
  margin-left: 0;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title {
  display: flex;
  justify-content: space-between;
  text-align: start;
  align-items: center;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title h1 {
  margin-bottom: 0;
  margin-right: 5px;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title i {
  cursor: pointer;
  user-select: none;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title:hover, .ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title:focus {
  color: var(--darker-grey);
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title .HeaderDropdown {
  display: block;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title .ResourceDropdown-link {
  display: flex;
  padding: 0.9em;
  color: var(--darkest-grey);
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title .ResourceDropdown-link span {
  margin-left: 0;
  margin-right: 10px;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title .ResourceDropdown-link:hover {
  color: var(--main-color);
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-left .ResourceDetail-header-left-title .ResourceDropdown-link:not(:last-of-type) {
  border-bottom: 1px solid var(--light-grey);
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  grid-gap: 16px;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right button {
  color: var(--darkest-grey);
  margin-bottom: 0;
  text-align: start;
  font-weight: 400;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right button i {
  order: -1;
  margin-right: 6px;
  padding: 0;
  user-select: none;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right button.with-icon.right i {
  order: 1;
  padding-left: 0.15em;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right button.with-icon.right li i {
  order: 0;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .action-dropdown {
  color: var(--white-color);
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .action-dropdown ul {
  width: 100%;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .action-dropdown i {
  margin: 0;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .search-bar {
  min-width: 270px;
  margin-bottom: 0;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .action-button {
  color: var(--white-color);
  flex-shrink: 0;
  padding: 0.5em 0.5em 0.5em 1em;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-right .action-button i {
  order: 0;
  margin-right: 0;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-fullwidth {
  margin-top: 2em;
  flex-basis: 100%;
  justify-content: flex-start;
}
.ResourceDetail .ResourceDetail-header .ResourceDetail-header-fullwidth div {
  flex-grow: 1;
}
.ResourceDetail .EventDetails-body {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas: "left right";
}
.ResourceDetail .EventDetails-body-fullwidth {
  grid-template-columns: 70% 30%;
}
.ResourceDetail .EventDetails-body .EventDetails-location {
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100%;
}
.ResourceDetail .EventDetails-body .EventDetails-location .address-map {
  max-height: 30vw;
}
.ResourceDetail .EventDetails-body .ContentSection-subsection {
  border: 1px solid var(--light-grey);
}
@media screen and (max-width: 767px) {
  .ResourceDetail .EventDetails-body {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    grid-template-areas: "left" "right";
  }
}
.ResourceDetail .EventNotes-header {
  column-gap: 2em;
  row-gap: 1em;
  min-width: unset;
}
.ResourceDetail .EventNotes-header .ResourceDetail-header-left {
  flex: 1;
  margin-right: 1em;
}
.ResourceDetail .EventNotes-header .ResourceDetail-header-left h1 {
  margin-bottom: 0;
}
.ResourceDetail .EventNotes-header .ResourceDetail-header-right {
  flex: 1;
  gap: 1em;
  flex-wrap: nowrap;
}
.ResourceDetail .EventNotes-body {
  margin: 2em 0;
}
.ResourceDetail .SheepFormDetails-body {
  margin-top: 25px;
  min-width: 550px;
}
.ResourceDetail .SheepFormDetails-body .droppable.isTarget {
  outline: 3px dashed var(--medium-grey);
  outline-offset: 5px;
}
.ResourceDetail .SheepFormDetails-footer {
  margin-top: 25px;
  margin-bottom: 25px;
  min-width: 550px;
}
.ResourceDetail .SheepFormDetails-footer button {
  width: 140px;
  height: 35px;
  justify-content: center;
}

.resource-list-header {
  display: flex;
  align-items: flex-start;
  column-gap: 2em;
}
.resource-list-header .tooltip-container {
  align-self: center;
}

.resource-list-header-title {
  flex: 1;
  display: flex;
  align-items: center;
  column-gap: 1em;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.resource-list-header-title a {
  text-decoration: none;
}

.resource-list-header-actions {
  flex: 1;
  display: flex;
  align-items: last baseline;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}
.resource-list-header-actions.stretch {
  align-items: stretch;
}

.resource-list-subtitle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.resource-list-subtitle-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 0.3em;
}
.resource-list-subtitle-links a {
  color: var(--main-color);
  text-decoration: none;
}
.resource-list-subtitle-links a:hover {
  text-decoration: underline;
}
.resource-list-subtitle-links a.active {
  font-weight: 600;
}

.resource-list-header-search-bar {
  margin: 0 1em 1em 0;
}
.resource-list-header-search-bar.reduced-width {
  flex: 1 0 150px;
}

span.splash-span {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
}

span.status {
  width: 1em;
  display: block;
  height: 1em;
  border-radius: 50%;
  margin: 0 auto;
}
span.status.status-active {
  background-color: var(--main-color);
}
span.status.status-inactive {
  background-color: var(--dark-grey);
}
span.status.status-danger {
  background-color: var(--warning-color-dark);
}
span.status.required-indicator {
  font-size: 0.5em;
}
.input-label span.status.required-indicator {
  font-size: 0.5em;
  display: inline-block;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.icon-holder span.status.required-indicator {
  /*display: inline-block;
  margin-bottom: .8em;*/
  align-self: center;
  margin-left: -0.3em;
}

.icon-holder {
  width: 60px;
  flex-shrink: 0;
  display: flex;
}

.tooltip-container {
  font-weight: 400;
  position: relative;
}
.tooltip-container.input-tip {
  margin-bottom: 1em;
  display: inline-block;
  vertical-align: top;
  margin-top: 0.3em;
}
.tooltip-container.input-tip.mb-0 {
  margin-bottom: 0;
  margin-top: 0.2em;
}
.tooltip-container.input-tip.mr-small {
  margin-right: 1em;
}
.tooltip-container.input-tip .tip.tooltip {
  min-width: 240px;
  left: -28px;
}
.tooltip-container.input-tip .tip.tooltip.center {
  left: -112px;
}
.tooltip-container.input-tip .tip.tooltip.right {
  left: -198px;
}
.tooltip-container.input-tip .tip.tooltip.top {
  z-index: 5;
}
.tooltip-container.toptip-container.panel-wide, .tooltip-container.infotip-container.panel-wide {
  grid-column: span 2;
}
.tooltip-container.toptip-container.justify-start, .tooltip-container.infotip-container.justify-start {
  justify-content: flex-start;
}
.tooltip-container.toptip-container, .tooltip-container.infotip-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color-lightest);
  padding: 0.5em;
}
.tooltip-container.toptip-container .material-icons, .tooltip-container.toptip-container .material-icons-outlined, .tooltip-container.toptip-container .material-symbols-outlined, .tooltip-container.infotip-container .material-icons, .tooltip-container.infotip-container .material-icons-outlined, .tooltip-container.infotip-container .material-symbols-outlined {
  color: var(--main-color);
  font-size: 1.5em;
}
.tooltip-container.toptip-container .tip, .tooltip-container.infotip-container .tip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.tooltip-container.toptip-container .tip.infotip-full, .tooltip-container.infotip-container .tip.infotip-full {
  flex-grow: 1;
}
.tooltip-container.toptip-container.warning, .tooltip-container.infotip-container.warning {
  background-color: var(--amber-color-lightest);
}
.tooltip-container.toptip-container.warning .material-icons, .tooltip-container.toptip-container.warning .material-icons-outlined, .tooltip-container.toptip-container.warning .material-symbols-outlined, .tooltip-container.infotip-container.warning .material-icons, .tooltip-container.infotip-container.warning .material-icons-outlined, .tooltip-container.infotip-container.warning .material-symbols-outlined {
  color: var(--amber-color);
}
.tooltip-container.toptip-container.danger, .tooltip-container.infotip-container.danger {
  background-color: var(--red-color-lightest);
}
.tooltip-container.toptip-container.danger .material-icons, .tooltip-container.toptip-container.danger .material-icons-outlined, .tooltip-container.toptip-container.danger .material-symbols-outlined, .tooltip-container.infotip-container.danger .material-icons, .tooltip-container.infotip-container.danger .material-icons-outlined, .tooltip-container.infotip-container.danger .material-symbols-outlined {
  color: var(--red-color);
}
.tooltip-container.infotip-container {
  line-height: 1.5em;
  margin-bottom: 1em;
}
.tooltip-container.infotip-container .material-icons, .tooltip-container.infotip-container .material-icons-outlined, .tooltip-container.infotip-container .material-symbols-outlined {
  align-self: flex-start;
}
.tooltip-container.infotip-container a {
  color: var(--main-color);
  text-decoration: none;
}
.tooltip-container .tooltip {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.tooltip-container .tooltip:hover {
  opacity: 1;
  pointer-events: auto;
}
.tooltip-container .tooltip-label:hover + .tooltip, .tooltip-container .tooltip-label:focus + .tooltip, .tooltip-container .tooltip-label:focus-within + .tooltip, .tooltip-container .tooltip-label.force-open + .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.tooltip {
  max-width: 240px;
  display: block;
  border: 0;
  padding: 0;
  position: absolute;
  z-index: 3;
}
.tooltip-container.wide .tooltip {
  min-width: 320px;
  max-width: 50vh;
}
.tooltip div {
  position: relative;
  border-radius: 4px;
  background-color: var(--main-color);
  color: var(--white-color);
  padding: 0.8em 1em 1em;
  line-height: 1.5em;
}
.tooltip strong {
  font-weight: 600;
}
.tooltip p {
  font-weight: 700;
  margin: 0;
}
.tooltip a {
  color: var(--white-color);
  margin-left: 0.5em;
}
.tooltip a:hover {
  color: var(--main-color-lighten);
}
.tooltip.top {
  padding-top: 20px;
  top: 100%;
}
.tooltip.top div:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-bottom-color: var(--main-color);
  border-width: 20px;
  margin-left: -20px;
}
.tooltip.down {
  padding-bottom: 20px;
  bottom: 100%;
}
.tooltip.down div:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0);
  border-top-color: var(--main-color);
  border-width: 20px;
  margin-left: -20px;
}
.tooltip.left div:after {
  left: 15%;
}
.tooltip.right div:after {
  left: 85%;
}
.tooltip .markdown p {
  font-weight: 400;
}

.help-link {
  display: flex;
  padding-top: 0.5em;
  align-items: center;
}
.help-link a {
  margin-left: 0.5em;
}

.page-footer-url {
  position: fixed;
  bottom: 0.5em;
  left: 0.5em;
  font-size: 0.8em;
  color: #65696F;
}

div.mapboxgl-ctrl-bottom-left,
div.mapboxgl-ctrl-bottom-right {
  z-index: 1;
}

.content .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.content .empty-state.with-image .empty-image {
  height: 45vh;
  margin-top: 1.5em;
  margin-bottom: 3em;
}
.content .empty-state.with-image .image-holder {
  width: 80%;
}

.empty-image {
  display: block;
  align-self: stretch;
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.empty-image.empty-box {
  background-image: url("/empty-box.png");
}
.empty-image.empty-membership {
  background-image: url("/empty-membership.png");
}
.empty-image.empty-autumn {
  background-image: url("/empty-autumn.png");
}
.empty-image.empty-specsheet {
  background-image: url("/empty-specsheet.png");
}
.empty-image.empty-no-data {
  background-image: url("/empty-no-data.png");
}
.empty-image.empty-rocket {
  background-image: url("/empty-rocket.png");
}
.empty-image.empty-bug {
  background-image: url("/worker_bug-fix.png");
}
.empty-image.empty-tasklist {
  background-image: url("/empty-tasklist.png");
}
.empty-image.empty-add-note {
  background-image: url("/empty-add-note.png");
}
.empty-image.empty-conversation {
  background-image: url("/empty-conversation.png");
}
.empty-image.access-denied {
  background-image: url("/access-denied.png");
}

.HeaderDropdown {
  position: absolute;
  top: 40px;
  right: 0;
  display: block;
  background-color: var(--white-color);
  border-radius: 4px;
  min-width: 200px;
  border: 1px solid var(--light-grey);
  z-index: 3; /* Place above absolutely positioned main Route. This might be required on the standard one too */
}
.HeaderDropdown.left {
  right: auto;
  left: 0;
  max-height: 80vh;
  overflow: auto;
}
.HeaderDropdown.left:after {
  margin-left: auto;
  margin-right: -10px;
  right: auto;
  left: 10px;
}
.HeaderDropdown.right {
  max-height: 80vh;
  overflow: auto;
}
.HeaderDropdown:after {
  bottom: 100%;
  right: 10px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: var(--white-color);
  border-width: 10px;
  margin-left: -10px;
}
.HeaderDropdown:before {
  border-bottom-color: var(--light-grey);
  border-width: 11px;
  margin-left: -11px;
}
.HeaderDropdown ul {
  margin: 0;
  padding: 1em 1em;
  list-style-type: none;
}
.HeaderDropdown ul div:last-child {
  border-bottom: 0;
}
.HeaderDropdown .li-break {
  border-top: 1px solid var(--light-grey);
}
.HeaderDropdown i {
  font-size: 1.5em;
}
.HeaderDropdown .li-title {
  color: var(--darkest-grey);
  display: block;
  padding: 0.7em 0;
  position: relative;
  text-align: left;
  cursor: text;
}
.HeaderDropdown a {
  color: var(--darkest-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
}
.HeaderDropdown a:hover, .HeaderDropdown a:focus, .HeaderDropdown a.active {
  color: var(--main-color);
}

.ProgressBar {
  height: 15px;
  overflow: hidden;
  background-color: var(--white-color);
  border-radius: 4px;
  border: 2px solid var(--main-color);
}
.ProgressBar.not-started {
  border: 2px solid var(--dark-grey);
}
.ProgressBar .container {
  background-color: var(--main-color);
  height: calc(100% + 2px);
  margin-top: -1px;
  display: grid;
}
.ProgressBar.clip .container::after {
  content: "";
  justify-self: flex-end;
  width: 0;
  height: 0;
  border-top: 6.5px solid transparent;
  border-bottom: 6.5px solid var(--white-color);
  border-right: 6.5px solid var(--white-color);
  border-left: 6.5px solid transparent;
}
.ProgressBar .data {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.Avatar {
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.Avatar.wide {
  border-radius: 0;
}
.Avatar.wide.small {
  height: 27px;
  width: 48px;
}
.Avatar.wide .image {
  border-radius: 0;
  height: auto;
}
.Avatar.extra-small {
  width: 22px;
  height: 22px;
}
.Avatar.small {
  width: 32px;
  height: 32px;
}
.Avatar.medium {
  width: 50px;
  height: 50px;
}
.Avatar.large {
  width: 200px;
  height: 200px;
}
@media only screen and (max-width: 800px) {
  .Avatar.large {
    width: 75px;
    height: 75px;
  }
}
.Avatar .image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.Avatar .icon {
  background-color: var(--main-color);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.Avatar .icon.darken {
  overflow: hidden;
}
.Avatar .icon.darken:before {
  content: "";
  grid-area: 1/1/2/2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.Avatar .icon i {
  grid-area: 1/1/2/2;
  color: var(--white-color);
}
.Avatar .icon.no-bg {
  background-color: transparent;
}
.Avatar .icon.no-bg i {
  color: unset;
}
.Avatar.extra-small .icon i {
  font-size: 16px;
}
.Avatar.small .icon i {
  font-size: 22px;
}
.Avatar.medium .icon i {
  font-size: 35px;
}
.Avatar.large .icon i {
  font-size: 175px;
}
.Avatar.square {
  border-radius: 4px;
}
.Avatar.square .image, .Avatar.square .icon {
  border-radius: 4px;
}
.Avatar.square.no-border-radius {
  border-radius: 0;
}
.Avatar.square.no-border-radius .image, .Avatar.square.no-border-radius .icon {
  border-radius: 0;
}
.Avatar.placeholder-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 500;
}
.Avatar.placeholder-text:after {
  content: attr(data-placeholder);
}

.PersonProfile {
  display: flex;
  align-items: center;
  gap: 1em;
}
.PersonProfile-avatar {
  flex-shrink: 0;
}
.PersonProfile .date-icon {
  justify-content: center;
}
.PersonProfile.active .PersonProfile-name .link {
  color: var(--main-color);
}
.PersonProfile-name {
  line-height: 1.3;
}
.PersonProfile-name.with-bottom-text {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.PersonProfile-text-container > * {
  margin-bottom: 0;
}
.PersonProfile-text-container-secondary {
  display: flex;
  flex-direction: column;
}
.PersonProfile.small-gap {
  gap: 0.5em;
}

.SearchBar {
  margin-bottom: 1em;
  position: relative;
  background-color: var(--light-grey);
  border-radius: 4px;
  width: 100%;
  display: flex;
  gap: 0.5em;
  align-items: center;
  padding-right: 0.75em;
}
.SearchBar-clear {
  cursor: pointer;
  color: var(--darkest-grey);
}
.SearchBar-clear:hover {
  color: var(--darker-grey);
}
.SearchBar.white-color {
  background-color: var(--white-color);
}
.SearchBar.white-color .SearchBar-input input {
  background-color: var(--white-color);
}
.SearchBar.half-width {
  width: 50%;
}

.FilterNav {
  margin-bottom: 1.5em;
  display: flex;
  gap: 1em;
}
.FilterNav.no-margin {
  margin-bottom: 0;
}
.FilterNav-link.active {
  color: var(--main-color);
}
.FilterNav-link.active:hover, .FilterNav-link.active:focus {
  color: var(--main-color-dark);
}

.simple-link {
  text-decoration: none;
  cursor: pointer;
}
.simple-link:hover, .simple-link:focus {
  text-decoration: underline;
}
.simple-link.no-underline:hover, .simple-link.no-underline:focus {
  text-decoration: none;
}

.text {
  line-height: 1.5em;
  overflow: hidden;
  overflow-wrap: break-word;
}
.text-bold {
  font-weight: 600;
}
.text-mb-0 {
  margin-bottom: 0;
}
.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.text-2-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.italic {
  font-style: italic;
}

.light {
  font-weight: 300;
}

.green {
  color: var(--green-color);
}

.amber {
  color: var(--amber-color);
}

.yellow {
  color: var(--sheep-yellow);
}

.red {
  color: var(--red-color);
}

.placeholder-grey {
  color: var(--placeholder-grey-color);
}

.darkest-grey {
  color: var(--darkest-grey);
}

.white {
  color: var(--white-color);
}

.left-border {
  border-left: 4px solid;
}
.left-border-green {
  border-color: var(--green-color);
}
.left-border-amber {
  border-color: var(--amber-color);
}
.left-border-red {
  border-color: var(--red-color);
}
.left-border-transparent {
  border-color: transparent;
}
.left-border-dashed {
  border-style: dashed;
}
.left-border-note {
  border-color: var(--light-grey);
}

.tag-item {
  padding: 0.2em 1em;
  border-radius: 2px;
  background-color: var(--light-grey);
  display: flex;
  align-items: center;
}
.tag-item.white-bg {
  background-color: var(--white-color);
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch; /* fill the item you're in */
  gap: 0.25em;
  text-align: center;
}
.center-content > * {
  margin-bottom: 0;
}

.ContentSection {
  margin-bottom: 2em;
  padding: 2em;
  border-radius: 4px;
  background-color: var(--lightest-grey);
  display: grid;
  grid-row-gap: 1.5em;
  grid-template-columns: 100%;
  grid-template-areas: "header" "body";
}
.ContentSection.white-bg {
  background-color: var(--white-color);
}
.ContentSection.small-section {
  padding: 1em;
}
.ContentSection.no-padding {
  padding: 0;
}
.ContentSection.no-header {
  grid-template-areas: "body";
}
.ContentSection.no-body {
  grid-template-areas: "header";
}
.ContentSection.no-body .ContentSection-body {
  position: absolute;
}
.ContentSection.no-row-gap {
  grid-row-gap: 0;
}
.ContentSection.mb-0 {
  margin-bottom: 0;
}
.ContentSection.mb-small {
  margin-bottom: 1em;
}
.ContentSection.with-right-component {
  position: relative;
  grid-template-columns: 55% 1fr;
  grid-template-rows: auto 1fr;
  grid-column-gap: 1.5em;
  grid-template-areas: "header right" "body right";
}
.ContentSection.with-right-component.with-body-max-width {
  grid-template-areas: "header right" "body body";
}
.ContentSection-header_flex {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.ContentSection-header_flex h3 {
  margin-bottom: 0;
}
.ContentSection-header_flex button {
  color: var(--darkest-grey);
}
.ContentSection-header_flex button:hover {
  cursor: pointer;
  transition: 0.1s ease-in-out;
  color: var(--main-color-dark);
}
.ContentSection-header {
  grid-area: header;
}
.ContentSection-header .audit-log-subtitle .NoticeSection {
  margin: 1em 0 2em 0;
}
.ContentSection-header .audit-log-subtitle .audit-log-filter {
  display: flex;
  grid-gap: 0.7em;
}
.ContentSection-header .filter-selected {
  color: var(--main-color);
  font-weight: bold;
  text-decoration: underline;
}
.ContentSection-header-left {
  display: flex;
  gap: 1em;
}
.ContentSection-header-left.with-avatar {
  align-items: center;
}
.ContentSection-header-avatar.align-start {
  align-self: flex-start;
}
.ContentSection-header-text-container {
  width: 100%;
}
.ContentSection-header-title-container {
  display: grid;
  grid-template-columns: 1fr;
}
.ContentSection-header-title-container.with-1-center {
  grid-template-columns: 1.7fr 1.3fr;
}
.ContentSection-header-title-container.with-2-center {
  grid-template-columns: 1.1fr 1.9fr;
}
.ContentSection-header-title-container.with-tag-1-center {
  grid-template-columns: 1.9fr 1.1fr;
}
.ContentSection-header-title-container.with-tag-2-center {
  grid-template-columns: 1.6fr 1.4fr;
}
.ContentSection-header-title-container {
  align-items: center;
  gap: 2em;
}
.ContentSection-header-left-text {
  display: flex;
  gap: 2em;
  align-items: center;
}
.ContentSection-header-title {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 0;
}
.ContentSection-header-title-text {
  font-weight: 600;
  overflow: hidden;
  overflow-wrap: break-word;
  line-height: 1.5em;
}
.ContentSection-header-title-copy {
  cursor: pointer;
}
.ContentSection-header-title-copy:hover {
  color: var(--darker-grey);
}
.ContentSection-header-center-text {
  grid-column: 2/3;
  grid-row: 1/2;
  display: grid;
  align-items: center;
  gap: 2em;
}
.ContentSection-header-center-text.with-1-center {
  grid-template-columns: 1fr;
}
.ContentSection-header-center-text.with-2-center {
  grid-template-columns: repeat(2, 1fr);
}
.ContentSection-header-subtitle {
  margin-top: 0.5em;
  overflow: hidden;
  overflow-wrap: break-word;
  line-height: 1.5em;
  margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
  .ContentSection-header-subtitle {
    overflow-wrap: anywhere;
  }
}
.ContentSection-header-subtitle-links-container {
  display: flex;
  gap: 0.5em;
}
.ContentSection-header-subtitle-link {
  cursor: pointer;
  text-decoration: none;
}
.ContentSection-header-subtitle-link.active {
  font-weight: 600;
  text-decoration: underline;
}
.ContentSection-header-subtitle-link:hover {
  font-weight: 600;
}
.ContentSection-header-subtitle-link.positive.active, .ContentSection-header-subtitle-link.positive:hover {
  color: var(--green-color);
}
.ContentSection-header-subtitle-link.warning.active, .ContentSection-header-subtitle-link.warning:hover {
  color: var(--amber-color);
}
.ContentSection-header-subtitle-link.danger.active, .ContentSection-header-subtitle-link.danger:hover {
  color: var(--red-color);
}
.ContentSection-body {
  grid-area: body;
}
.ContentSection-right-component {
  grid-area: right;
  justify-self: end;
}
.ContentSection-subsection {
  padding: 1em;
  margin-bottom: 1.5em;
  border-radius: 4px;
  background-color: var(--white-color);
  line-height: 1.5;
  overflow: hidden;
  overflow-wrap: break-word;
}
.ContentSection-subsection.image-row {
  padding: 0;
  display: grid;
  grid-template-areas: "main";
  grid-template-rows: 120px;
  grid-template-columns: 1fr;
  border-radius: 5px;
}
.ContentSection-subsection.image-row img {
  grid-area: main;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
.ContentSection-subsection.image-row img.grayscale, .ContentSection-subsection.image-row img.greyscale {
  filter: grayscale(100%);
  z-index: 1;
}
.ContentSection-subsection.image-row .two-col {
  z-index: 2;
  padding: 1em;
  grid-area: main;
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.7) 0%, rgba(9, 9, 41, 0.3) 35%, rgba(255, 255, 255, 0) 100%);
  color: var(--white-color);
}
.ContentSection-subsection.image-row .two-col .ContentSection-list {
  align-self: flex-end;
}
.ContentSection-subsection.image-row .two-col .link {
  color: var(--white-color);
}
.ContentSection-subsection.image-row .two-col .title {
  font-size: 1.4em;
  font-weight: 600;
}
.ContentSection-subsection.grey {
  background-color: var(--lightest-grey);
}
.ContentSection-subsection.mb-0 {
  margin-bottom: 0;
}
.ContentSection-subsection.no-padding {
  padding: 0;
}
.ContentSection-subsection.column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ContentSection-subsection.stretch {
  width: 100%;
}
.ContentSection-subsection.allow-overflow {
  overflow: visible;
}
.ContentSection-subsection.padding-large {
  padding: 2em;
}
.ContentSection-subsection-header {
  display: grid;
  grid-template-columns: 1fr min-content;
  column-gap: 3em;
  margin-bottom: 1em;
}
.ContentSection-subsection-header-left {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.disabled .ContentSection-subsection-header-left {
  cursor: not-allowed;
  color: var(--darker-grey);
}
.ContentSection-subsection-header-title {
  margin-bottom: 0;
}
.ContentSection-subsection-header-subtitle-gap {
  flex-basis: 100%;
  height: 0;
}
.ContentSection-subsection-header-subtitle {
  margin-bottom: 0;
}
.ContentSection-subsection-header-left-link {
  margin-left: 1em;
}
.ContentSection-subsection-header-right {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1em;
}
.ContentSection-subsection-body > :not(:first-child) {
  margin-top: 1em;
}
.ContentSection-subsection-body.no-margin > :not(:first-child) {
  margin-top: 0;
}
.ContentSection-subsection.collapsible .ContentSection-subsection-header {
  margin-bottom: 0;
  cursor: pointer;
}
.ContentSection-subsection.collapsible .ContentSection-subsection-header .ContentSection-subsection-header-title.active {
  color: var(--green-color);
}
.ContentSection-subsection.collapsible .ContentSection-subsection-header .ContentSection-subsection-header-title-icon {
  margin-right: 0.5em;
}
.ContentSection .action-button {
  margin-top: 1.5em;
  margin-bottom: 0;
  padding: 1em 1.75em;
  font-size: 14px;
}
.ContentSection-tags {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.ContentSection-tags-item {
  padding: 0.5em 1em;
  border-radius: 4px;
  background-color: var(--light-grey);
}
.ContentSection-button-left {
  align-self: flex-start;
}
.ContentSection-record {
  display: flex;
  justify-content: flex-end;
}
.ContentSection-record-id {
  display: flex;
  gap: 0.25em;
  cursor: pointer;
  align-items: center;
}
.ContentSection-record-id:hover {
  color: var(--darker-grey);
}
.ContentSection.with-header-actions .ContentSection-header {
  display: grid;
  grid-template-columns: 1fr min-content;
  column-gap: 3em;
}
.ContentSection.with-header-actions .ContentSection-header-left {
  grid-column: 1/2;
  grid-row: 1/2;
}
.ContentSection.with-header-actions .ContentSection-header-actions {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: flex-start;
  column-gap: 1em;
}
.ContentSection.with-header-actions .ContentSection-header-actions.with-select {
  grid-column: 2/9;
}
.ContentSection.with-header-actions .ContentSection-header-actions-button {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  min-width: 73px;
  height: 32px;
  white-space: nowrap;
}
.ContentSection.with-header-actions .ContentSection-header-actions-button.danger {
  color: var(--red-color);
}
.ContentSection.with-header-actions .ContentSection-header-actions-button.danger:hover {
  color: var(--warning-color-dark);
}
.ContentSection.collapsible {
  grid-row-gap: 0;
}
.ContentSection.collapsible > .ContentSection-header {
  cursor: pointer;
}

.ContentSection-list {
  display: flex;
  flex-direction: column;
  line-height: 1.2em;
  overflow: hidden;
  overflow-wrap: break-word;
  gap: 10px;
  flex: 1;
}
.ContentSection-list.margin-below {
  margin-bottom: 1.5em;
}
.ContentSection-list.row-direction {
  flex-direction: row;
}
.ContentSection-list.row-direction-wrap {
  flex-wrap: wrap;
}
.ContentSection-list.wide {
  flex: 2;
}
.ContentSection-list.gap-0 {
  gap: 0;
}
.ContentSection-list.gap-sm {
  gap: 0.2em;
}
.ContentSection-list.gap-large {
  gap: 1.5em;
}
.ContentSection-list.allow-overflow {
  overflow: visible;
}
.ContentSection-list.align-center {
  align-items: center;
}
.ContentSection-list.align-end {
  align-items: flex-end;
  text-align: end;
}
.ContentSection-list.justify-space-between {
  justify-content: space-between;
}

.ContentSection-list-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2%;
  row-gap: 1em;
}
.ContentSection-list-row.two-col {
  grid-template-columns: 1fr min-content !important;
}
.ContentSection-list-row.even-cols {
  grid-template-columns: 1fr 1fr;
}
.ContentSection-list-row.three-column {
  grid-template-columns: repeat(3, 1fr);
}
.ContentSection-list-row.four-column {
  grid-template-columns: repeat(4, 1fr);
}
.ContentSection-list-row.justify-center {
  justify-items: center;
}
.ContentSection-list-row.align-center {
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .ContentSection-list-row .center-content h1 {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 800px) {
  .ContentSection-list-row .center-content span {
    font-size: 0.8em;
  }
}
.ContentSection-list-row.auto-flow-column {
  grid-template-columns: auto;
  grid-auto-flow: column;
}
.ContentSection-list-row.white-row {
  border-radius: 4px;
  background-color: var(--white-color);
  padding: 1em;
  grid-template-columns: 4fr 2fr 1fr;
}
.ContentSection-list-row.white-row.tasks-summary-row {
  grid-template-columns: 2.25fr 1.25fr 2.5fr;
}
.ContentSection-list-row.white-row.notes-summary-row {
  grid-template-columns: min-content 3fr 2.75fr;
  align-items: center;
}
.ContentSection-list-row.white-row.event-series-row {
  column-gap: 1.5em;
  grid-template-columns: min-content 1fr;
}
.ContentSection-list-row.white-row.event-series-row.with-confirm {
  grid-template-columns: min-content 1fr min-content;
}
.ContentSection-list-row.grey-row {
  border-radius: 4px;
  background-color: var(--light-grey);
  padding: 1em;
}
.ContentSection-list-row.short-row {
  grid-template-columns: 1fr;
}
.ContentSection-list-row.Vehicles-Specifications-row {
  grid-template-columns: 2fr 1fr;
}
.ContentSection-list-row.standard-row {
  grid-template-columns: 4fr 6fr;
  align-items: center;
  line-height: 1.3em;
  column-gap: 2em;
  padding: 9px;
}
.ContentSection-list-row.standard-row:not(:last-of-type) {
  border-bottom: 1px solid var(--medium-grey);
}
.ContentSection-list-row.standard-row.no-bottom-border:not(:last-of-type) {
  border-bottom: none;
}
.ContentSection-list-row.standard-row.no-padding {
  padding: 0;
}
.ContentSection-list-row.standard-row.padding-large {
  padding: 14px;
}
.ContentSection-list-row.standard-row-column {
  grid-template-columns: 1fr;
  row-gap: 1em;
}
.ContentSection-list-row.standard-row.one-column {
  grid-template-columns: 1fr;
  row-gap: 0;
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value {
  display: flex;
  flex-direction: column;
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value.row-direction {
  flex-direction: row;
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value i {
  line-height: 1.3em;
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value.positive {
  color: var(--green-color);
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value.warning {
  color: var(--amber-color);
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value.danger {
  color: var(--red-color);
}
.ContentSection-list-row.standard-row .ContentSection-list-row-value.info {
  color: var(--darker-grey);
}
.ContentSection-list-row.standard-row.clickable {
  cursor: pointer;
}
.ContentSection-list-row.standard-row.clickable:hover {
  background-color: var(--lightest-grey);
}
.ContentSection-list-row.wrap-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ContentSection-list-row.connections-row {
  grid-template-columns: 3fr 2.5fr 102.2px 34px;
}
.ContentSection-list-row.gdpr-row-consent {
  grid-template-columns: 3.5fr 1.5fr 2fr 1.5fr 86px;
}
.ContentSection-list-row.gdpr-row-legitimate_interest {
  grid-template-columns: 4fr 2fr 2fr 2fr 86px;
}
.ContentSection-list-row.gdpr-row-contract {
  grid-template-columns: 3fr 2fr 2fr 3fr;
}
.ContentSection-list-row.gdpr-row-withdrawn {
  color: var(--red-color);
}
.ContentSection-list-row.badges-row {
  grid-template-columns: 3fr 1.5fr 2fr 2fr 2.5fr 98.3px;
}
.ContentSection-list-row.invoices-row {
  grid-template-columns: repeat(6, 1fr);
}
.ContentSection-list-row.recurring-instances-row {
  grid-template-columns: 1fr 1fr 80px;
}
.ContentSection-list-row.messages-row {
  grid-template-columns: 4.75fr 0.45fr 0.8fr;
  column-gap: 1em;
}
.ContentSection-list-row.external-ids-row {
  grid-template-columns: repeat(4, 1fr) 80px;
}
.ContentSection-list-row.xero-invoices-row {
  grid-template-columns: repeat(6, 1fr);
}
.ContentSection-list-row.sheep-events-row {
  grid-template-columns: 1fr 2fr 1fr 80px;
}
.ContentSection-list-row.message-activity-row {
  grid-template-columns: 1fr 1fr;
}
.ContentSection-list-row.audit-log-user {
  background-color: var(--main-color-lightest);
}
.ContentSection-list-row.audit-log-row {
  font-size: 12px;
  line-height: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  grid-template-columns: 110px 100px 1fr 2fr;
  grid-gap: 1.4em;
}
.ContentSection-list-row.audit-log-row .ContentSection-list-row-value:nth-child(3) {
  grid-column: span 2;
}
.ContentSection-list-row.audit-log-row .ContentSection-list-row-value:nth-child(4) {
  display: none;
}
.ContentSection-list-row.audit-log-row .footer-content {
  text-align: left;
  font-style: italic;
  font-size: 10px;
}
.ContentSection-list-row.audit-log-row .audit-date {
  display: grid;
}
.ContentSection-list-row.audit-log-row .audit-date p {
  margin-bottom: unset;
}
.ContentSection-list-row.audit-log-row .audit-field > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 1.4em;
  align-items: flex-start;
  margin-bottom: 1em;
}
.ContentSection-list-row.audit-log-row .audit-field > div p {
  margin-bottom: unset;
}
.ContentSection-list-row.audit-log-row .audit-values {
  display: flex;
  align-items: flex-start;
  grid-gap: 0.6em;
}
.ContentSection-list-row.audit-log-row .audit-values .audit-prev {
  text-decoration: line-through;
}
.ContentSection-list-row.audit-log-row .audit-values i {
  font-size: 18px;
  line-height: inherit;
  color: var(--main-color);
}
.ContentSection-list-row.audit-log-row li {
  margin-bottom: 0.3em;
}
.ContentSection-list-row.sheep-user-feedback-row {
  grid-template-columns: 1fr 2fr 80px;
  padding: 1.5em 9px;
  align-items: start;
  font-size: 0.87em;
}
.ContentSection-list-row.ticket-attendees-row {
  grid-template-columns: 1fr 0.75fr 0.75fr 0.75fr;
}
.ContentSection-list-row.ticket-payments-row {
  grid-template-columns: 1.5fr 2fr 1fr 1.5fr 2fr;
}
.ContentSection-list-row.grouped-attendees-row {
  grid-template-columns: 1fr 0.75fr 0.75fr 0.75fr;
}

.ContentSection-list-row-label {
  font-weight: 500;
  align-self: start;
}
.ContentSection-list-row-label.regular {
  font-weight: 400;
}

.ContentSection-list-row-value {
  overflow: hidden;
  overflow-wrap: anywhere;
}
.ContentSection-list-row-value.last {
  justify-self: end;
  text-align: end;
}
.ContentSection-list-row-value.bold {
  font-weight: 500;
}
.ContentSection-list-row-value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}
.ContentSection-list-row-value-list.gap-large {
  gap: 2em;
}
.ContentSection-list-row-value-list.last {
  justify-content: end;
}
.ContentSection-list-row-value.allow-overflow {
  overflow: visible;
  overflow-wrap: break-word;
}
.ContentSection-list-row-value.file-list {
  flex-direction: column;
  row-gap: 0.5em;
}
.ContentSection-list-row-value.file-list .file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
.ContentSection-list-row-value.file-list .file-list-item-name {
  display: flex;
  align-items: center;
  gap: 1em;
  text-align: left;
}
.ContentSection-list-row-value.file-list .file-list-item-name img {
  width: 20px;
  height: 22px;
}
.ContentSection-list-row-value.file-list .file-list-item-name i {
  align-self: flex-start;
}
.ContentSection-list-row-value.file-list .file-list-item-link {
  flex-shrink: 0;
}
.ContentSection-list-row-value .boolean-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.ContentSection-list-row-value .photo-item {
  display: flex;
  align-items: center;
  gap: 1em;
}
.ContentSection-list-row-value .icon-with-text {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.ContentSection-list-row-value .icon-with-text.large-gap {
  gap: 1em;
}
.ContentSection-list-row-value .icon-with-text.size-medium i {
  line-height: 1;
  font-size: 1.24em;
}

.ContentSection-list-item {
  padding: 0.5em;
  display: flex;
  gap: 0.5em;
}
.ContentSection-list-item.profile .text-container {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.ContentSectionActionDropdown {
  position: relative;
}
.ContentSectionActionDropdown.ContentSection-header-actions-button {
  overflow: visible;
}
.ContentSectionActionDropdown .HeaderDropdown {
  font-size: 0.875rem;
  font-weight: 400;
}
.ContentSectionActionDropdown .HeaderComponent-button-detail {
  height: 24px;
}
.ContentSectionActionDropdown.mb--1 {
  margin-bottom: -1em;
}
.ContentSectionActionDropdown .HeaderDropdown {
  min-width: 250px;
}
.ContentSectionActionDropdown .HeaderDropdown .action-list-content {
  display: flex;
  padding-bottom: 1em;
}
.ContentSectionActionDropdown .HeaderDropdown .action-list-content .action-container {
  flex-grow: 1;
}
.ContentSectionActionDropdown .HeaderDropdown .action-list-content .action-container.space-for-dropdown {
  min-height: 265px;
}
.ContentSectionActionDropdown .HeaderDropdown ul {
  padding: 1.25em 1em;
}
.ContentSectionActionDropdown-link {
  display: flex;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
  padding: 0 0.75em;
  color: var(--darkest-grey);
}
.ContentSectionActionDropdown-link:not(:first-of-type) {
  padding-top: 0.75em;
}
.ContentSectionActionDropdown-link:not(:last-of-type) {
  padding-bottom: 0.75em;
  border-bottom: 1px solid var(--medium-grey);
}
.ContentSectionActionDropdown-link:hover {
  color: var(--main-color);
}
.ContentSectionActionDropdown-link.disabled {
  cursor: not-allowed;
  color: var(--medium-grey);
}
.ContentSectionActionDropdown-link.disabled img {
  opacity: 0.2;
}

.NoticeSection {
  display: flex;
  gap: 1em;
  align-items: center;
  width: 100%;
  border-radius: 4px;
  padding: 1em;
  margin-bottom: 1.5em;
  line-height: 1.5;
  overflow: hidden;
  overflow-wrap: break-word;
}
.NoticeSection a {
  text-decoration: none;
  font-weight: 600;
}
.NoticeSection-icon {
  align-self: flex-start;
}
.NoticeSection.mb-0 {
  margin-bottom: 0;
}
.NoticeSection.pb-0 {
  padding-bottom: 0;
}

.SidePanel-dropdown {
  position: absolute;
  top: 40px;
  right: 0px;
  display: block;
  background-color: white;
  border-radius: 4px;
  min-width: 200px;
  border: 1px solid var(--light-grey);
  z-index: 2; /* Place above absolutely positioned main Route. This might be required on the standard one too */
}
.SidePanel-dropdown.left {
  right: auto;
  left: 0;
}
.SidePanel-dropdown.left:after {
  margin-left: auto;
  margin-right: -10px;
  right: auto;
  left: 10px;
}
.SidePanel-dropdown:after {
  bottom: 100%;
  right: 10px;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 10px;
  margin-left: -10px;
}
.SidePanel-dropdown:before {
  border-bottom-color: var(--light-grey);
  border-width: 11px;
  margin-left: -11px;
}
.SidePanel-dropdown ul {
  margin: 0;
  padding: 0 1em;
  list-style-type: none;
}
.SidePanel-dropdown .li-break {
  border-top: 1px solid var(--light-grey);
}
.SidePanel-dropdown i {
  font-size: 1.5em;
}
.SidePanel-dropdown .li-title {
  color: var(--darkest-grey);
  display: block;
  padding: 0.7em 0;
  position: relative;
  text-align: left;
  cursor: text;
}
.SidePanel-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
}
.SidePanel-dropdown a:hover, .SidePanel-dropdown a:focus {
  color: var(--main-color);
}

.QuickInput {
  padding: 1em;
  text-align: left;
  min-width: 250px;
  cursor: initial;
}
.QuickInput h5 {
  margin-bottom: 1em;
}
.QuickInput .link {
  display: block;
  margin: 1em 0 0;
}

.grey-lightest-bg {
  background-color: var(--lightest-grey);
}

.grey-light-bg {
  background-color: var(--light-grey);
}

.white-bg {
  background-color: var(--white-color);
}

.green-lightest-bg {
  background-color: var(--green-color-lightest);
}

.amber-lightest-bg {
  background-color: var(--amber-color-lightest);
}

.red-lightest-bg {
  background-color: var(--red-color-lightest);
}

.blue-dark-bg {
  background-color: var(--sheep-blue-color-dark);
}

.dark-grey-bg {
  background-color: var(--dark-grey);
}

.ContactSection-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ContactSection-emergency {
  margin-top: 15px;
}
.ContactSection-emergency-label {
  display: flex;
  gap: 0.5em;
  line-height: 1.5em;
  align-items: center;
}
.ContactSection-emergency-label-icon.material-icons-outlined, .ContactSection-emergency-label-icon.material-symbols-outlined {
  font-size: 18px;
}
.ContactSection-emergency-rows {
  display: flex;
  flex-direction: column;
  line-height: 1.5em;
  overflow: hidden;
  overflow-wrap: break-word;
}
.ContactSection .ContactItem {
  display: flex;
  gap: 1em;
  margin-bottom: 0;
}
.ContactSection .ContactItem-link {
  max-width: 70%;
  word-break: break-all;
  line-height: 1.5em;
}
.ContactSection .ContactItem-copy.small {
  cursor: pointer;
  line-height: 1.5em;
}
.ContactSection .ContactItem-copy.small:hover {
  color: var(--darker-grey);
}

.AreasOfInterestSection-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(23.5%, 125px), 1fr));
  column-gap: 2%;
  row-gap: 1em;
}
.AreasOfInterestSection-list-item {
  padding: 1em;
  border-radius: 4px;
  background-color: var(--white-color);
  overflow: hidden;
  overflow-wrap: break-word;
  line-height: 1.5em;
}

.ConnectionsSection-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(32%, 200px), 1fr));
  column-gap: 2%;
  row-gap: 1em;
}
.ConnectionsSection-list-item {
  padding: 1em;
  border-radius: 4px;
  background-color: var(--white-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ConnectionsSection-list-item .PersonProfile-name {
  font-weight: 600;
}
.ConnectionsSection-list-item-relationship {
  margin-bottom: 0;
}
.ConnectionsSection-list .list-item_bottom-text .PersonProfile-name span:nth-child(2) {
  font-weight: normal;
  font-size: 0.8em;
}

.SheepHelperModal {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  min-height: 510px;
  overflow: hidden;
}
.SheepHelperModal .side-panel {
  background-color: var(--lightest-grey);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.SheepHelperModal .side-panel .selected {
  transition: 0.2s ease-in-out;
  color: var(--main-color);
  border-color: var(--main-color);
  font-weight: 500;
}
.SheepHelperModal .side-panel .disabled {
  opacity: 55%;
  cursor: not-allowed;
}
.SheepHelperModal .side-panel li {
  list-style: none;
  margin: 8px 0;
  line-height: 14px;
  font-size: 14px;
  padding: 8px 10px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  border-left: 1px solid;
  border-color: transparent;
  position: relative;
}
.SheepHelperModal .side-panel li span {
  font-size: 9px;
  color: var(--main-color);
  text-transform: uppercase;
  position: absolute;
  top: -4px;
  right: -64px;
  font-weight: 500;
  width: 100%;
}
.SheepHelperModal .content-panel {
  padding: 28px 0 0px 24px;
  height: calc(77vh - 4px);
}
.SheepHelperModal .content-panel h3 {
  font-size: 20px;
}
.SheepHelperModal .content-panel .content-panel-layout {
  height: calc(100% - 28px);
  overflow: auto;
  padding: 28px 24px 0;
}
.SheepHelperModal .content-panel .content-panel-layout ol {
  line-height: 1.5em;
}
.SheepHelperModal .content-panel .content-panel-layout ol li {
  line-height: 1.2em;
  margin-bottom: 0.5em;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section {
  height: 100%;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section .SearchBar {
  margin-bottom: 1.5em;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section .markdown p {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section .article-content {
  display: flex;
  flex-direction: column;
  grid-gap: 1em;
  overflow: auto;
  border-radius: 4px;
  padding-top: 12px;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section .article-content .article-content-item {
  display: inline-block;
  width: fit-content;
}
.SheepHelperModal .content-panel .content-panel-layout .article-section .article-content .article-content-item p {
  margin: 0;
  line-height: 20px;
}
.SheepHelperModal .content-panel .content-panel-layout .contact-support-section .debug-data {
  display: grid;
  grid-gap: 3em;
}
.SheepHelperModal .content-panel .content-panel-layout .contact-support-section .debug-data div p {
  margin-bottom: 0.3em;
}
.SheepHelperModal .content-panel .content-panel-layout .contact-support-section .debug-data div {
  font-size: 12px;
}
.SheepHelperModal .content-panel .content-panel-layout .contact-support-section .debug-data div > p:nth-child(2) {
  font-weight: bold;
}
.SheepHelperModal .content-panel .assistant-section p, .SheepHelperModal .content-panel .contact-section p, .SheepHelperModal .content-panel .system-status-section p {
  color: var(--darker-grey);
  line-height: 1.5em;
}
.SheepHelperModal .content-panel .assistant-section a, .SheepHelperModal .content-panel .assistant-section button.link-button, .SheepHelperModal .content-panel .contact-section a, .SheepHelperModal .content-panel .contact-section button.link-button, .SheepHelperModal .content-panel .system-status-section a, .SheepHelperModal .content-panel .system-status-section button.link-button {
  text-decoration: unset;
}
.SheepHelperModal .content-panel .assistant-section a, .SheepHelperModal .content-panel .assistant-section span, .SheepHelperModal .content-panel .assistant-section button.link-button, .SheepHelperModal .content-panel .contact-section a, .SheepHelperModal .content-panel .contact-section span, .SheepHelperModal .content-panel .contact-section button.link-button, .SheepHelperModal .content-panel .system-status-section a, .SheepHelperModal .content-panel .system-status-section span, .SheepHelperModal .content-panel .system-status-section button.link-button {
  color: var(--main-color);
  font-weight: 500;
}
.SheepHelperModal .content-panel .assistant-section a:hover, .SheepHelperModal .content-panel .assistant-section span:hover, .SheepHelperModal .content-panel .assistant-section button.link-button:hover, .SheepHelperModal .content-panel .contact-section a:hover, .SheepHelperModal .content-panel .contact-section span:hover, .SheepHelperModal .content-panel .contact-section button.link-button:hover, .SheepHelperModal .content-panel .system-status-section a:hover, .SheepHelperModal .content-panel .system-status-section span:hover, .SheepHelperModal .content-panel .system-status-section button.link-button:hover {
  text-decoration: underline;
  cursor: pointer;
}
.SheepHelperModal .content-panel .assistant-section .sign, .SheepHelperModal .content-panel .contact-section .sign, .SheepHelperModal .content-panel .system-status-section .sign {
  padding-top: 12px;
  font-size: 90%;
  color: var(--darker-grey);
}
.SheepHelperModal .content-panel .system-status-section {
  height: 100%;
}
.SheepHelperModal .content-panel .system-status-section iframe {
  width: 100%;
  height: 100%;
  scrollbar-width: none;
}
.SheepHelperModal .content-panel-mobile-navbar {
  display: none;
}
@media screen and (max-width: 1023px) {
  .SheepHelperModal {
    grid-template-columns: 1fr;
  }
  .SheepHelperModal .side-panel {
    display: none;
  }
  .SheepHelperModal .content-panel-header {
    display: none;
  }
  .SheepHelperModal .content-panel-mobile-navbar {
    display: block;
    position: relative;
    width: fit-content;
  }
  .SheepHelperModal .content-panel-mobile-navbar h3 {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    width: fit-content;
    position: relative;
    margin-bottom: 0;
  }
  .SheepHelperModal .content-panel-mobile-navbar h3 + span {
    font-size: 12px;
    color: var(--main-color);
    font-weight: 500;
    text-transform: uppercase;
  }
  @keyframes openMobileNav {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options {
    animation: openMobileNav 0.1s ease-in-out;
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options div {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: fit-content;
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options div p {
    margin-bottom: 0;
    width: fit-content;
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options div .new {
    font-size: 9px;
    color: var(--main-color);
    text-transform: uppercase;
    position: absolute;
    top: -4px;
    right: -28px;
    font-weight: 500;
    z-index: 10;
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options div .coming-soon {
    text-transform: uppercase;
    font-size: 9px;
    color: var(--main-color);
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options div:hover {
    color: var(--main-color);
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options .selected {
    font-weight: 500;
    color: var(--main-color);
  }
  .SheepHelperModal .content-panel-mobile-navbar .navbar-options {
    width: 14em;
    position: absolute;
    display: grid;
    gap: 1.8em;
    z-index: 4;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    background-color: var(--white-color);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  }
  .SheepHelperModal .content-panel-mobile-navbar select {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--darkest-grey);
    border: 1px solid;
  }
  .SheepHelperModal .content-panel-mobile-navbar option {
    font-size: unset;
  }
}

.DetailModal {
  margin: -1em 1em -1em 0;
}
.DetailModal .modal-content-header .header {
  line-height: 1.2;
  overflow: hidden;
  overflow-wrap: break-word;
}
.DetailModal .modal-content-header .header h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
}
.DetailModal .modal-content-header .header.with-icon {
  display: flex;
  gap: 1em;
}
.DetailModal .modal-content-header .header-left {
  display: flex;
  align-items: center;
}
.DetailModal .empty-state.with-image .empty-image {
  height: 16vh;
}
.DetailModal .modal-content-body {
  margin-top: 2em;
}
.DetailModal .modal-content-body .modal-content-body-title {
  line-height: 1.5em;
}
.DetailModal .modal-content-body .modal-content-body-title strong {
  font-weight: 600;
}
.DetailModal .modal-content-body .modal-content-body-title p:not(:last-child) {
  margin-bottom: 0;
}
.DetailModal .modal-content-body .modal-content-section {
  margin-top: 2.5em;
}
.DetailModal .modal-content-body .modal-content-section .modal-content-divider {
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.EventTypeModal {
  margin: unset;
}
.EventTypeModal .panel-container {
  margin-top: 1em;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
.EventTypeModal .panel-container.vertical {
  display: flex;
  flex-direction: column;
  grid-gap: 0;
}
.EventTypeModal .panel-container.vertical .panel {
  margin-bottom: 1em;
}
.EventTypeModal .event-type-button {
  background-color: var(--lightest-grey);
  width: 100%;
  color: var(--black-color);
  padding: 1em 1.2em;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  transition: 0.2s ease-in-out;
}
.EventTypeModal .event-type-button::-webkit-scrollbar {
  display: none;
}
.EventTypeModal .event-type-button {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.EventTypeModal .event-type-button i {
  font-size: 4em;
  margin: 0.5em;
}
.EventTypeModal .event-type-button p {
  margin: auto;
  line-height: 1.3em;
  max-width: 90%;
}
.EventTypeModal .event-type-button:hover {
  background-color: var(--main-color-lightest);
  transition: 0.2s ease-in-out;
}
.EventTypeModal .event-type-button-inline {
  display: flex;
  align-items: center;
}
.EventTypeModal .event-type-button-inline .event-type-button-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.EventTypeModal .event-type-button-inline .event-type-button-label p, .EventTypeModal .event-type-button-inline .event-type-button-label h3 {
  text-align: left;
  margin-left: 0;
}

.FooterActions {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
  width: 100%;
}
.FooterActions .left-button-area {
  display: flex;
  margin-right: 20px;
}
.FooterActions .right-button-area {
  display: flex;
  align-items: center;
}
.FooterActions .right-button-area .delete-confirmation-area {
  display: flex;
  align-items: center;
  gap: 1em;
}
.FooterActions .right-button-area .delete-confirmation-area .delete-confirmation-text {
  color: var(--dark-grey);
  margin-bottom: 0;
  margin-right: 15px;
}
.FooterActions .primaryButton.button,
.FooterActions .secondaryButton.button,
.FooterActions .dangerButton.button {
  margin-bottom: 0;
  min-width: 100px;
  justify-content: center;
}
.FooterActions .primaryButton.hidden,
.FooterActions .secondaryButton.hidden,
.FooterActions .dangerButton.hidden {
  opacity: 0.1;
}
.FooterActions .primaryButton.button.with-icon {
  padding: 0.5em 0.5em 0.5em 1em;
  margin-bottom: 0;
}
.FooterActions .primaryButton.button.no-bg,
.FooterActions .secondaryButton.button.no-bg,
.FooterActions .dangerButton.button.no-bg {
  padding: 1em 0;
  min-width: 0;
}
.FooterActions .primaryButton.button {
  margin-right: 2em;
}
.FooterActions .primaryButton.button.amber-bg {
  background-color: var(--amber-color);
}
.FooterActions .primaryButton.button.red-bg {
  background-color: var(--red-color);
}
.FooterActions .secondaryButton.button {
  color: var(--darkest-grey);
  font-weight: 600;
  margin-right: 0;
}
.FooterActions .secondaryButton.button:hover {
  color: var(--darker-grey);
}
.FooterActions .dangerButton.button {
  color: var(--warning-color);
  font-weight: 600;
}
.FooterActions .dangerButton.button:hover {
  color: var(--warning-color-dark);
}
.FooterActions.SessionDetailFooterActions .totalAttendance strong {
  font-weight: 600;
  margin-right: 0.5em;
}

.TaskItem {
  display: grid;
  grid-template-columns: 48% 20% 14% 12%;
  column-gap: 2%;
  align-items: center;
  padding: 1em;
  cursor: pointer;
}
.TaskItem.task-completed {
  grid-template-columns: 48% 20% 26%;
}
.TaskItem.your-open {
  grid-template-columns: 50% 24% 20%;
  column-gap: 3%;
  padding: 1em 0.5em;
}
.TaskItem.your-open:hover {
  background-color: var(--light-grey);
}
.TaskItem.open-tasks-section {
  grid-template-columns: 2.75fr 2fr 1fr;
  background-color: var(--white-color);
  cursor: default;
  font-weight: 500;
}
.TaskItem.open-tasks-section:hover {
  background-color: var(--white-color);
}
.TaskItem.open-tasks-section:not(:last-of-type) {
  border-bottom: none;
}
.TaskItem.open-tasks-section .TaskItem-assignee {
  grid-column: 2/3;
  grid-row: 1/2;
}
.TaskItem.open-tasks-section .TaskItem-date {
  grid-column: 3/4;
  grid-row: 1/2;
  justify-self: end;
  text-align: end;
}
.TaskItem .note-content-container {
  width: 100%;
  order: -1;
}
.TaskItem:hover {
  background-color: var(--lightest-grey);
}
.TaskItem:not(:last-of-type) {
  border-bottom: 2px solid var(--light-grey);
}
.TaskItem-body {
  color: var(--darkest-grey);
  font-weight: 600;
  line-height: 1.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.TaskItem-date {
  line-height: 1.5em;
}
.TaskItem-date.overdue {
  color: var(--warning-color);
}
.TaskItem-assignee {
  padding-left: 1em;
  line-height: 1.5em;
}
.TaskItem-status {
  justify-self: flex-end;
  text-align: end;
  line-height: 1.5em;
}
.TaskItem-status .link {
  font-weight: 500;
  color: var(--main-color);
}
.TaskItem-status .link:hover, .TaskItem-status .link:focus {
  color: var(--main-color-dark);
}
.TaskItem-status .positive {
  color: var(--main-color);
}
.TaskItem-status .danger {
  color: var(--warning-color-dark);
}
.TaskItem.completed {
  opacity: 50%;
}
.TaskItem.with-action-button {
  grid-template-columns: 6.5fr 1fr 1.5fr 20px;
}
.TaskItem.expanded {
  grid-template-columns: 48% 12% 18% 10% 10%;
}
.TaskItem.expanded.with-avatar {
  grid-template-columns: 50px 3fr 2fr 1fr 1fr 30px;
}
.TaskItem.expanded.task-completed {
  grid-template-columns: 50px 3fr 2fr 2fr 1fr 30px;
}

.loading-container {
  display: flex;
  justify-content: center;
}
.loading-container.column {
  flex-direction: column;
  align-items: center;
}
.loading-container.mb-large {
  margin-bottom: 2em;
}

.address-map {
  overflow: hidden;
  border-radius: 4px;
}
.address-map .map-container {
  height: 100%;
  width: 100%;
}
.address-map.small {
  width: 150px;
  height: 150px;
}
.address-map.large {
  width: 280px;
  height: 280px;
}
.address-map.full-width {
  width: 100%;
}

.image-gallery {
  display: flex;
  gap: 1em;
  width: 100%;
  margin-bottom: 1.5em;
}
.image-gallery.mb-0 {
  margin-bottom: 0;
}
.image-gallery-primary-item {
  flex: 2;
  border-radius: 4px;
}
.image-gallery-secondary {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: 50% 50%;
  column-gap: 1em;
  align-content: space-between;
}
.image-gallery-secondary-item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.image-gallery.half-height .image-gallery-primary-item {
  height: 160px;
}
.image-gallery.half-height img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-gallery img {
  width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.date-icon {
  background-color: var(--main-color);
  color: var(--white-color);
  height: 64px;
  width: 64px;
  padding: 1em;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.date-icon.compact {
  height: 48px;
  width: 48px;
  padding: 0.5em;
  gap: 0;
}
.date-icon.compact .date-icon-month {
  font-size: 0.8em;
  line-height: 1em;
}
.date-icon.compact .date-icon-day {
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1em;
}
.date-icon.extra-compact {
  height: 33px;
  width: 33px;
  padding: 0.4em;
  gap: 0;
}
.date-icon.extra-compact .date-icon-month {
  font-size: 0.65em;
  line-height: 0.8em;
}
.date-icon.extra-compact .date-icon-day {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1em;
}
.date-icon-month {
  font-weight: 500;
}
.date-icon-day {
  margin-bottom: 0;
  font-size: 1.7em;
  font-weight: 600;
}
.date-icon.grey {
  background-color: var(--darkest-grey-hsl);
}
.date-icon.light-grey {
  background-color: var(--dark-grey);
}
.date-icon.red {
  background-color: var(--warning-color-dark);
}
.date-icon.amber {
  background-color: var(--amber-color);
}

.markdown em {
  font-style: italic;
}
.markdown hr,
.markdown blockquote,
.markdown ol,
.markdown ul {
  margin-top: 0;
  margin-bottom: 16px;
}
.markdown hr {
  border-width: 1px;
  border-style: inset;
}
.markdown blockquote {
  margin-left: 1.5em;
  padding: 0.5em 1em;
  border-left: 5px solid var(--medium-grey);
}
.markdown blockquote p:last-child {
  margin-bottom: 0;
}
.markdown ol,
.markdown ul {
  padding-left: 1.5em;
}
.markdown ol {
  list-style-type: decimal;
}
.markdown ul {
  list-style-type: initial;
}
.markdown code {
  font-family: monospace;
}
.markdown p:last-of-type {
  margin-bottom: 0;
}
.markdown.intercom-article img {
  max-width: 100%;
}
.markdown.intercom-article h2, .markdown.intercom-article h3 {
  text-transform: none;
  margin-bottom: 0.7em;
}
.markdown.intercom-article p {
  line-height: 1.5em;
}

.message-view {
  background-color: var(--light-grey);
  padding: 1.5em;
}
.message-view .message-view-recipients .message-view-recipients-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.message-view .message-view-recipients .message-view-recipients-text {
  max-width: 73%;
}
.message-view .message-view-recipients .message-view-recipients-text .message-view-recipients-text-label {
  margin-bottom: 0.5em;
}
.message-view .message-view-recipients .message-view-recipients-text.mailchimp {
  display: inline;
}
.message-view .message-view-recipients .message-view-recipients-text.mailchimp .message-view-recipients-text-label {
  margin-bottom: 0;
}
.message-view .message-view-recipients .message-view-recipients-buttons {
  display: flex;
  gap: 2em;
}
.message-view .message-view-recipients .message-view-recipients-prev, .message-view .message-view-recipients .message-view-recipients-next {
  cursor: pointer;
  user-select: none;
  color: var(--darkest-grey);
}
.message-view .message-view-recipients .message-view-recipients-prev:hover, .message-view .message-view-recipients .message-view-recipients-prev:focus, .message-view .message-view-recipients .message-view-recipients-next:hover, .message-view .message-view-recipients .message-view-recipients-next:focus {
  color: var(--main-color-dark);
}
.message-view .message-view-recipients .message-view-recipients-prev.disabled, .message-view .message-view-recipients .message-view-recipients-next.disabled {
  cursor: not-allowed;
  color: var(--dark-grey);
}
.message-view .message-view-recipients .message-view-recipients-prev.disabled:hover, .message-view .message-view-recipients .message-view-recipients-prev.disabled:focus, .message-view .message-view-recipients .message-view-recipients-next.disabled:hover, .message-view .message-view-recipients .message-view-recipients-next.disabled:focus {
  color: var(--dark-grey);
}
.message-view .message-view-header {
  border-radius: 4px 4px 0 0;
}
.message-view .message-view-header-container {
  display: grid;
  grid-template-columns: 4% 74% 18%;
  column-gap: 2%;
  row-gap: 0.5em;
}
.message-view .message-view-header-container.no-sender {
  display: flex;
  justify-content: space-between;
}
.message-view .message-view-header-container .message-view-header-icon {
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--blue-color);
}
.message-view .message-view-header-container .message-view-header-icon .message-view-header-icon-sms {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background-image: var(--sms-icon-color);
  color: var(--white-color);
}
.message-view .message-view-header-container .message-view-header-icon .message-view-header-icon-sms i {
  font-size: 10px;
}
.message-view .message-view-header-container .message-view-header-from {
  grid-column: 2/3;
  grid-row: 1/2;
  overflow: hidden;
  overflow-wrap: break-word;
}
.message-view .message-view-header-container .message-view-header-from .message-view-header-from-name {
  margin-right: 10px;
  display: inline;
}
.message-view .message-view-header-container .message-view-header-date {
  grid-column: 3/4;
  grid-row: 1/2;
  justify-self: end;
}
.message-view .message-view-header-container .message-view-header-subject {
  grid-column: 2/3;
  grid-row: 2/2;
  font-weight: 690;
}
.message-view .message-view-body {
  border-radius: 4px;
}
.message-view .message-view-body.with-header {
  margin-top: 2px;
  border-radius: 0 0 4px 4px;
}
.message-view .message-view-body .message-view-body-sms {
  margin-left: 32px;
}
.message-view .message-view-footer {
  margin-top: 5px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 1em;
  text-align: left;
}
.file-item img {
  width: 20px;
  height: 22px;
}
.file-item i {
  align-self: flex-start;
}

.VehicleDetailsSection-photos {
  display: flex;
  gap: 1em;
  width: 100%;
}
.VehicleDetailsSection-photos-primary {
  flex: 2;
  height: 100%;
  border-radius: 4px;
}
.VehicleDetailsSection-photos-secondary {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1em;
  align-content: space-between;
}
.VehicleDetailsSection-photos-secondary-item {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.VehicleDetailsSection-photos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.MailchimpDetailsSection {
  grid-template-areas: "header";
}
.MailchimpDetailsSection .ContentSection-body {
  display: none;
}
.MailchimpDetailsSection.with-reason {
  grid-template-areas: "header" "body";
}
.MailchimpDetailsSection.with-reason .ContentSection-body {
  display: initial;
}

.NotesDetailSection .material-icons.yellow, .DetailModal .material-icons.yellow {
  color: var(--sheep-yellow);
}

.SettingsView-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1em;
  min-width: 550px;
  flex-wrap: wrap;
}
.SettingsView-body {
  margin-top: 25px;
  min-width: 550px;
  margin-bottom: 100px;
}
@media screen and (max-width: 900px) {
  .SettingsView-body {
    min-width: 90vw;
  }
}
.SettingsView-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white-color);
  padding: 1em;
  border-top: 1px solid var(--light-grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease-in-out;
}
.SettingsView-footer-hidden {
  bottom: -70px;
}
.SettingsView-footer-actions {
  display: flex;
  gap: 1em;
  margin-right: 5em;
}
.SettingsView-footer-info {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.SettingsView-footer-info-warning {
  color: var(--amber-color);
}
.SettingsView-footer-info-success {
  color: var(--main-color);
}

.SettingsViewSection {
  overflow: visible;
  height: min-content;
}
.SettingsViewSection-header-title {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.SettingsViewSection-header-title-text {
  margin-bottom: 0;
}
.SettingsViewSection-body {
  margin-top: 2.5em;
}
.SettingsViewSection-body .input-label {
  line-height: 1.5em;
  overflow: hidden;
  overflow-wrap: break-word;
}

.PartnerConnectionButtons-buttons {
  display: flex;
  gap: 1em;
}
.PartnerConnectionButtons-buttons .button {
  margin-bottom: 0;
}

.GivingSummary-top {
  display: grid;
  grid-template-columns: minmax(145px, 0.4fr) 1fr;
}
.GivingSummary-top.one-column {
  grid-template-columns: 1fr;
}
.GivingSummary-top .GivingSummary-details {
  height: min-content;
}
.GivingSummary-top .GivingSummary-chart {
  min-width: 100%;
}
@media only screen and (max-width: 1023px) {
  .GivingSummary-top {
    grid-template-columns: 1fr;
  }
  .GivingSummary-top .GivingSummary-details .ContentSection-subsection-body > .ContentSection-list {
    flex-direction: row;
    text-align: center;
  }
}

.DonationsContentSectionItemSubsection-details-image {
  width: 40%;
}
.DonationsContentSectionItemSubsection-details-image img {
  width: 100%;
  height: auto;
}

.FormFieldInput.deletable {
  display: flex;
  justify-content: space-between;
}
.FormFieldInput.deletable .delete-button {
  align-self: flex-end;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.breadcrumb a {
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb a.back {
  color: var(--main-color);
}
.breadcrumb > .material-symbols-outlined {
  color: #D9D9D9;
}

.breadcrumb-dropdown {
  display: inline-flex;
  flex-direction: column;
}
.breadcrumb-dropdown .chooser {
  min-width: 100%;
}
.breadcrumb-dropdown .chooser .title {
  font-size: 1em;
}
.breadcrumb-dropdown .chooser .title:after {
  top: 13px;
}

.breadcrumb-children {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
}
.breadcrumb-children.collapsible {
  overflow: hidden;
  max-height: 8.5em;
}
.breadcrumb-children.collapsible.full {
  overflow: initial;
  max-height: 9999px;
}
.breadcrumb-children.flex-nowrap {
  flex-wrap: nowrap;
}

.breadcrumb-collapsible-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb-collapsible-button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  gap: 0.5em;
}
.breadcrumb-collapsible-button-content:hover {
  cursor: pointer;
}

.breadcrumb-button {
  background-color: var(--main-color-lighter);
  border-color: var(--main-color-lighter);
  display: inline-flex;
  padding: 12px 16px;
  flex-direction: row;
  justify-content: flex-start;
  border-radius: 0.5em;
  gap: 10px;
  align-items: center;
  color: var(--black-color);
  text-transform: none;
}
.breadcrumb-button.active, .breadcrumb-button:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}
.fixed-width-buttons .breadcrumb-button {
  flex-grow: 0;
  flex-basis: 400px;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.page-size-filter .page-size-option {
  cursor: pointer;
  color: var(--main-color);
}
.page-size-filter .page-size-option:hover {
  text-decoration: underline;
}
.page-size-filter .page-size-selected {
  font-weight: 600;
}

.chooser {
  flex: 1;
  position: relative;
  margin-right: 30px;
  min-width: 200px;
  cursor: pointer;
}
.chooser .category-chooser .choices,
.chooser .category-chooser .title {
  font-weight: 600;
  padding: 0.75em 1.2em;
  position: relative;
  padding-left: 0;
}
.chooser .category-chooser .title {
  color: var(--main-color);
  font-weight: 500;
}
.chooser .category-chooser .title:after {
  content: "expand_more";
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-size: 24px;
  position: absolute;
  top: 12px;
  right: 18px;
  height: 24px;
  width: 24px;
  z-index: 0;
}
.chooser .category-chooser .choices {
  z-index: 2;
  position: absolute;
  top: 3em;
  left: 0;
  display: none;
  background-color: var(--white-color);
  border: 1px solid var(--light-grey);
}
.chooser .category-chooser .choices .choices-label {
  color: var(--main-color-lighter);
  position: relative;
  z-index: 1;
}
.chooser .category-chooser .choices .choice {
  font-weight: 500;
}
.chooser .category-chooser .choices .choice:not(:first-child) {
  margin-top: 1.25em;
}
.chooser .category-chooser .choices .choice.selected, .chooser .category-chooser .choices .choice:hover {
  color: var(--main-color);
}
.chooser .category-chooser .choices .choice .direction-indicator {
  float: right;
}
.chooser .category-chooser.open .choices {
  display: block;
  padding: 1em;
  left: -1em;
}

.tree {
  padding: 2em 0;
}
.tree .flex {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 1em;
}
.tree .flex.justify-space-between {
  justify-content: space-between;
}
.tree .flex.tree-item {
  align-self: flex-start;
}
.tree .flex.tree-item td {
  align-self: flex-start;
  margin-top: 0.5em;
  z-index: 1;
}
.tree > .nestedList .listItem::before {
  border-left: none;
}
.tree > .nestedList::before {
  border-left: none;
  height: 0;
}
.tree .nestedList {
  margin: 0 0 0 1em; /* indentation */
  margin-left: 0.5em; /* (indentation/2) */
  padding: 0;
  list-style: none;
  color: #369;
  position: relative;
}
.tree .nestedList::before {
  content: "";
  display: block;
  width: 0;
  position: absolute;
  top: -2.8em;
  bottom: 0;
  left: 0;
  border-left: 1px solid var(--light-grey);
}
.tree .nestedList:last-of-type::before {
  top: calc(-100% + 1.5em);
}
.tree .nestedList:first-of-type::before {
  border-left: 0;
}
.tree .nestedList:first-of-type > .listItem-holder > .listItem::before {
  border-top: none;
}
.tree .nestedList:last-child::before {
  background: transparent; /* same with body background */
  height: calc(100% - 0.5em);
  bottom: 0;
}
.tree .nestedList .listItem {
  margin: 0;
  padding: 0 0 0 1em; /* indentation + .5em */
  line-height: 2em; /* default list item's `line-height` */
  font-weight: bold;
  position: relative;
}
.tree .nestedList .listItem::before {
  content: "";
  display: block;
  width: 1em; /* same with indentation */
  height: 0;
  border-top: 1px solid var(--light-grey);
  border-left: none;
  margin-top: 0; /* border top width */
  position: absolute;
  top: 1em; /* (line-height/2) */
  left: 0;
}
.tree .nestedList .listItem:last-child::before {
  background: transparent; /* same with body background */
  border-left: none;
  height: auto;
  top: 1em; /* (line-height/2) */
  bottom: 0;
}
.tree .nestedList .listItem-details {
  display: flex;
  flex: 0 0 50vw;
  padding: 0 2em;
  justify-content: space-between;
}

.Toastify .Toastify__toast-container {
  top: 5em;
}

@media print {
  .Toastify__toast-container {
    display: none;
  }
}
.events-calender {
  margin-top: 1em;
}
.events-calender-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 8px;
  margin-bottom: 1em;
}
.events-calender-header .calendar-button {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.events-calender-header .calendar-button i {
  font-size: 14px;
}
.events-calender-header .calendar-view-button {
  background-color: var(--main-color);
  border-radius: 4px;
  color: var(--white-color);
  padding: 10px;
  padding-left: 12px;
  padding-right: 30px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%22293%22%20height%3D%22165%22%20viewBox%3D%220%200%20293%20165%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%3Cpath%20d%3D%22M287%205.4C285.321%203.65379%20283.3%202.27288%20281.063%201.3437C278.826%200.41452%20276.422%20-0.0429254%20274%202.58628e-06H18.4C13.4%202.58628e-06%209.1%201.8%205.5%205.4C3.76039%207.04694%202.3753%209.03167%201.42957%2011.2326C0.483847%2013.4336%20-0.00261069%2015.8045%20-4.84478e-06%2018.2C-4.84478e-06%2023.2%201.8%2027.5%205.4%2031.1L133.4%20159C137%20162.6%20141.2%20164.4%20146.2%20164.4C151.2%20164.4%20155.4%20162.6%20159%20159L287%2031C290.5%2027.5%20292.4%2023.2%20292.4%2018.2C292.4%2013.2%20290.5%209%20286.9%205.4H287Z%22%20fill%3D%22white%22/%3E%0A%3C/svg%3E%0A");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.events-calender-header .calendar-button:hover,
.events-calender-header .calendar-view-button:hover {
  background-color: var(--main-color-dark);
  color: var(--white-color);
  transition: 0.2s ease-in-out;
}
.events-calender-header h1 {
  font-size: 28px;
  position: relative;
  display: flex;
}
.events-calender-header h1 > div {
  position: absolute;
  top: -8px;
  right: -50px;
}
.events-calender-header h1,
.events-calender-header .button {
  margin-bottom: 0;
}
.events-calender-header .button,
.events-calender-header .calendar-button {
  padding: 10px 16px;
  border-radius: 4px;
}
.events-calender .calendar-view-buttons .button:disabled {
  background-color: var(--main-color);
}
.events-calender .calendar-view-buttons .button:not(:disabled) {
  background-color: var(--main-color-lighten);
}
.events-calender .calendar-view-buttons .button:not(:disabled):hover {
  background-color: var(--main-color);
}
.events-calender-buttons {
  display: flex;
  grid-gap: 8px;
}
.events-calender .toastui-calendar-detail-container {
  width: auto;
  max-width: 400px;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-event-title {
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 6px;
  word-break: break-word;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-template-popupDetailDate {
  margin-top: 12px;
  font-size: 14px;
  height: unset;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-template-popupDetailDate .detail-date {
  display: grid;
  letter-spacing: -0.5px;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-template-popupDetailDate .detail-date span {
  font-weight: normal;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-template-popupDetailDate .detail-date strong {
  padding-left: 2px;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-header .toastui-calendar-content {
  height: unset;
  margin: 8px 0px;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-detail {
  display: none;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-edit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
  width: 100%;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-edit-button .toastui-calendar-content {
  height: unset;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-edit-button .view-event-details {
  font-size: 14px;
  font-weight: 600;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-edit-button .view-event-details:hover {
  color: var(--main-color);
  cursor: pointer;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-edit-button .toastui-calendar-icon {
  display: none;
  margin-right: unset;
  top: unset;
}
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-vertical-line,
.events-calender .toastui-calendar-detail-container .toastui-calendar-section-button .toastui-calendar-delete-button {
  display: none;
}
.events-calender .toastui-calendar-weekday-grid-date.toastui-calendar-weekday-grid-date-decorator {
  background-color: #5379D0 !important;
}
.events-calender .toastui-calendar-grid-cell-more-events {
  color: var(--darkest-grey);
  border-radius: 5px;
  transition: 0.3s ease;
}
.events-calender .toastui-calendar-grid-cell-more-events:hover {
  background: var(--light-grey);
}
.events-calender .toastui-calendar-weekday-event-title span {
  color: white;
}
.events-calender .toastui-calendar-weekday-event-dot + .toastui-calendar-weekday-event-title span {
  color: #333;
}
.events-calender .container {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.sheep-helper {
  backface-visibility: hidden;
  background: var(--main-color);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 6px;
  right: 12px;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  transform: scale(0.5);
  z-index: 10;
  transition: 0.2s ease-in-out;
  transform: scale(0.5);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sheep-helper i {
  padding-top: 2px;
  padding-left: 1px;
  color: var(--white-color);
  font-size: 2em;
}
.sheep-helper-loaded {
  height: 50px;
  opacity: 1;
  transform: scale(1);
  width: 50px;
}
@media only screen and (max-height: 800px) {
  .sheep-helper-loaded {
    height: 30px;
    width: 30px;
  }
  .sheep-helper-loaded i {
    font-size: 1.2em;
  }
}
.sheep-helper:focus {
  outline: 0;
}
.sheep-helper:hover {
  background: var(--main-color-dark);
  transition: 0.2s ease-in-out;
}

.markdown-container {
  border-radius: 4px;
  overflow: hidden;
}
.markdown-container .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid #ccc;
}
.markdown-container .ql-toolbar.ql-snow button:hover, .markdown-container .ql-toolbar.ql-snow button:focus, .markdown-container .ql-toolbar.ql-snow button.ql-active, .markdown-container .ql-toolbar.ql-snow .ql-picker-label:hover, .markdown-container .ql-toolbar.ql-snow .ql-picker-label.ql-active, .markdown-container .ql-toolbar.ql-snow .ql-picker-item:hover, .markdown-container .ql-toolbar.ql-snow .ql-picker-item.ql-selected {
  color: var(--main-color);
}
.markdown-container .ql-toolbar.ql-snow button:hover .ql-stroke, .markdown-container .ql-toolbar.ql-snow button:hover .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow button:focus .ql-stroke, .markdown-container .ql-toolbar.ql-snow button:focus .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow button.ql-active .ql-stroke, .markdown-container .ql-toolbar.ql-snow button.ql-active .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow .ql-picker-label:hover .ql-stroke, .markdown-container .ql-toolbar.ql-snow .ql-picker-label:hover .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-stroke, .markdown-container .ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow .ql-picker-item:hover .ql-stroke, .markdown-container .ql-toolbar.ql-snow .ql-picker-item:hover .ql-stroke-miter, .markdown-container .ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-stroke, .markdown-container .ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: var(--main-color);
}
.markdown-container .ql-container.ql-snow {
  border: none;
  min-height: 16em;
}
.markdown-container .ql-container.ql-snow a {
  color: var(--main-color);
}
.markdown-container .ql-formats .material-symbols-outlined {
  font-size: 18px;
}
.markdown-container .ql-editor {
  line-height: 1.6;
  max-height: 400px;
  word-break: break-word;
}
.markdown-container .ql-editor p,
.markdown-container .ql-editor h1,
.markdown-container .ql-editor h2,
.markdown-container .ql-editor h3,
.markdown-container .ql-editor h4,
.markdown-container .ql-editor h5,
.markdown-container .ql-editor h6,
.markdown-container .ql-editor ul,
.markdown-container .ql-editor ol {
  margin-bottom: 1rem;
}
.markdown-container .ql-editor h3 {
  font-weight: 400;
}
.markdown-container .ql-fieldadder .ql-picker-label:before, .markdown-container .ql-logicadder .ql-picker-label:before {
  padding-right: 20px;
  content: attr(data-label);
}
.markdown-container .ql-fieldadder .ql-picker-item:before, .markdown-container .ql-logicadder .ql-picker-item:before {
  content: attr(data-label);
}

.DirectoryIntroductionModal {
  margin: -1em 0 -1em 0;
}
.DirectoryIntroductionModal .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 0.5em;
}
.DirectoryIntroductionModal .header i {
  cursor: pointer;
  font-size: 24px;
}
.DirectoryIntroductionModal .directory-intro-content {
  padding-top: 2px;
}
.DirectoryIntroductionModal .directory-intro-content .important-info {
  line-height: 28px;
}

.DirectoryIntroductionActions .right-button-area .button {
  background: transparent;
}

.KeepDatabaseModal-description {
  line-height: 2em;
  text-align: justify;
}

.BulkActionsModal .modal-content-body {
  min-height: 320px;
}
.BulkActionsModal .modal-content-body .modal-content-body-form-fields {
  max-width: 100%;
}

.client-side-segments {
  padding: 2em;
}
.client-side-segments .client-side-segments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.client-side-segments .client-side-segments-header .section {
  display: flex;
  align-items: center;
  gap: 20px;
}
.client-side-segments .client-side-segments-header .section.debug-info {
  display: block;
  padding: 1em;
  border: 1px solid var(--darker-grey);
  background-color: var(--main-color-lightest);
  margin-bottom: 1em;
  margin-right: 1em;
}
.client-side-segments .client-side-segments-header .section.debug-info ul {
  list-style: initial;
}
.client-side-segments .client-side-segments-header .section.debug-info li {
  margin-left: 1.2em;
  margin-bottom: 0.6em;
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-info-header {
  min-height: 0;
  display: flex;
  justify-content: space-between;
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-info-header .debug-info-close {
  padding: 0;
  top: 1em;
  right: 1em;
}
.client-side-segments .client-side-segments-header .section.debug-info .notice-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.client-side-segments .client-side-segments-header .section.debug-info .notice-info button {
  padding-right: 2em;
  text-decoration: underline;
  color: var(--darker-grey);
}
.client-side-segments .client-side-segments-header .section.debug-info .notice-info button:hover {
  color: var(--darkest-grey);
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-columns {
  max-height: 150px;
  overflow-y: auto;
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-info-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-info-details > p {
  text-align: right;
}
.client-side-segments .client-side-segments-header .section.debug-info .debug-info-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
}
.client-side-segments .client-side-segments-header .section.main-section {
  flex: 1;
  min-width: 45vw;
}
.client-side-segments .client-side-segments-header .section i {
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.client-side-segments .client-side-segments-header .section i:hover {
  color: var(--darker-grey);
  transition: 0.2s ease-in-out;
}
.client-side-segments .table-fixed table {
  table-layout: fixed;
}
.client-side-segments .table-fixed table th, .client-side-segments .table-fixed table td {
  width: 100%;
}
.client-side-segments .table-fixed table .string-default {
  word-break: break-word;
}
.client-side-segments-sidepanel {
  display: grid;
  gap: 1.5em;
}
.client-side-segments-sidepanel .fetch-segment-uri {
  font-size: 12px;
  font-weight: 400;
  color: var(--darker-grey);
}
.client-side-segments-sidepanel .fetch-segment-uri span {
  font-weight: 600;
  color: var(--darkest-grey);
}
.client-side-segments-sidepanel .fetch-segment-input {
  padding: 0.9em;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  width: 100%;
}
.client-side-segments-sidepanel .fetch-segment button {
  min-width: 10em;
}
.client-side-segments-sidepanel .add-column, .client-side-segments-sidepanel .remove-column {
  font-size: 13px;
}
.client-side-segments-sidepanel .add-column .FieldComponent-dropdown__control, .client-side-segments-sidepanel .remove-column .FieldComponent-dropdown__control {
  background-color: white;
  border: 1px solid var(--light-grey);
}
.client-side-segments-sidepanel .add-column .FieldComponent-dropdown__control .material-symbols-outlined, .client-side-segments-sidepanel .remove-column .FieldComponent-dropdown__control .material-symbols-outlined {
  opacity: 1;
}
.client-side-segments-sidepanel .add-column button, .client-side-segments-sidepanel .remove-column button {
  text-align: center;
  justify-content: center;
  min-width: 10em;
}
.client-side-segments-sidepanel .column-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.client-side-segments-sidepanel .column-actions .add-field {
  width: 300px;
}
.client-side-segments-sidepanel .column-actions .add-option-list {
  width: calc(366px + 25vw);
  max-width: 908px;
  position: absolute;
  background-color: var(--white-color);
}
.client-side-segments-sidepanel .column-actions .add-option-list .FieldComponent-dropdown__menu-list {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  overflow-y: auto;
  max-height: 500px;
  padding: 1rem;
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option-close {
  position: absolute;
  right: 1rem;
  padding: 0.75em 0.75em 1em 0.75em;
  cursor: pointer;
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option.active, .client-side-segments-sidepanel .column-actions .add-option-list .add-option:hover {
  color: var(--main-color);
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option label, .client-side-segments-sidepanel .column-actions .add-option-list .add-option input {
  pointer-events: none;
  font-weight: 500;
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option input[type=checkbox] {
  margin-right: 0.5em;
  width: 12px;
  height: 12px;
}
.client-side-segments-sidepanel .column-actions .add-option-list .add-option input[type=checkbox]:checked {
  filter: hue-rotate(255deg);
}
.client-side-segments-sidepanel .column-actions button {
  height: fit-content;
}
.client-side-segments-sidepanel .filter-wrapper {
  padding: 0 4px;
}
.client-side-segments-sidepanel .index-filters {
  margin-bottom: 0.6em;
}
.client-side-segments-sidepanel .index-filters [data-rbd-draggable-id] {
  left: unset !important;
}
.client-side-segments-sidepanel .index-filters .drag-element {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 1em;
  background-color: var(--lightest-grey);
  border: 1px solid var(--light-grey);
  user-select: none;
}
.client-side-segments-sidepanel .index-filters .drag-element > .drag_handle {
  padding: 0 0.5em;
}
.client-side-segments-sidepanel .index-filters .drag-element > i {
  color: var(--darkest-grey);
}
.client-side-segments-sidepanel .index-filters .drag-element > div {
  width: 100%;
}
.client-side-segments-sidepanel .index-filters .drag-element .disabled-drag_indicator {
  opacity: 30%;
  cursor: not-allowed;
}
.client-side-segments-sidepanel .index-filters .drag-element .index-filter-field {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.3fr;
  font-size: 12px;
  gap: 0.5em;
}
.client-side-segments-sidepanel .index-filters .drag-element .index-filter-field input {
  font-size: 12px;
}
.client-side-segments-sidepanel .index-filters-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 0.75em 0.75em 0;
}
.client-side-segments-sidepanel .index-filters-item .FieldComponent + .FieldComponent {
  margin-top: unset;
}
.client-side-segments-sidepanel .index-filters-item .FieldComponent-betterSelect .FieldComponent-dropdown__value-container .FieldComponent-dropdown__multi-value {
  background-color: var(--light-grey);
}
.client-side-segments-sidepanel .index-filters-item .item-wrapper {
  align-items: center;
}
.client-side-segments-sidepanel .index-filters-item .item-wrapper i {
  padding-bottom: 0;
}
.client-side-segments-sidepanel .index-filters-item label {
  margin-bottom: 0.4em;
  font-size: 13px;
}
.client-side-segments-sidepanel .index-filters-item input {
  width: 100%;
  transition: 0.2s ease-in-out;
  background-color: white;
  border: 1px solid var(--light-grey);
}
.client-side-segments-sidepanel .index-filters-item input:disabled {
  background-color: var(--light-grey);
  cursor: not-allowed;
  transition: 0.2s ease-in-out;
}
.client-side-segments-sidepanel .index-filters-item input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  display: block;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: 14px;
}
.client-side-segments-sidepanel .index-filters-item input[type=search]::-webkit-search-cancel-button:hover {
  cursor: pointer;
}
.client-side-segments-sidepanel .index-filters-item .filter-actions {
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.client-side-segments-sidepanel .index-filters-item .filter-actions:hover {
  transition: 0.2s ease-in-out;
}
.client-side-segments-sidepanel .index-filters-item .filter-actions.top {
  align-self: baseline;
}
.client-side-segments-sidepanel .index-filters-item .delete {
  color: var(--warning-color);
}
.client-side-segments-sidepanel .index-filters-item .delete:hover {
  color: var(--red-color);
}
.client-side-segments-sidepanel .index-filters-item .disabled {
  opacity: 70%;
  pointer-events: none;
  cursor: not-allowed;
}
.client-side-segments-sidepanel .index-filters-item .not-visible-input input {
  background-color: var(--light-grey);
}
.client-side-segments-sidepanel .index-filters-item .visible {
  color: var(--dark-grey);
}
.client-side-segments-sidepanel .index-filters-item .visible:hover {
  color: var(--darker-grey);
}
.client-side-segments-sidepanel .index-filters-item .not-visible {
  color: var(--darker-grey);
}
.client-side-segments-sidepanel .index-filters .add-field {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.8em;
  padding-top: 1em;
}
.client-side-segments-sidepanel .index-filters .add-field > div {
  max-width: 370px;
  width: 100%;
}
.client-side-segments-sidepanel .index-filters .add-field i {
  opacity: 0;
  pointer-events: none;
}
.client-side-segments-sidepanel .index-filters .add-field label {
  margin-bottom: 0.4em;
}

.rbc-row-content {
  z-index: auto !important;
}

.rbc-current-time-indicator {
  z-index: 1 !important;
}

.overlay-dashed {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.6) 10%, rgba(255, 255, 255, 0.6) 30%);
  border-color: #fff;
}

.overlay-striped, .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.75) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.75) 75%, transparent 75%, transparent);
}

.NestedInputList.NestedInputList-level-0 {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList.NestedInputList-level-1 {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList.NestedInputList-level-2 {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList.NestedInputList-level-3 {
  background-color: #dee2e6;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList.NestedInputList-level-4 {
  background-color: #ced4da;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList.NestedInputList-level-5 {
  background-color: #adb5bd;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px;
  margin: 4px 0;
}
.NestedInputList .NestedInputList-label-container {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.NestedInputList .NestedInputList-nesting-indicator {
  font-size: 12px;
  color: #6c757d;
  margin-left: 8px;
}
.NestedInputList .NestedInputList-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: space-between;
}
.NestedInputList .NestedInputList-level-indicator {
  font-size: 12px;
  color: #6c757d;
  margin-right: 8px;
  font-weight: bold;
}
.NestedInputList .NestedInputList-item-content {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.NestedInputList .NestedInputList-duplicate-key {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.NestedInputList .NestedInputList-duplicate-key:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.NestedInputList-json-view {
  background-color: #f8f9fa;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  font-family: "monospace";
  font-size: 14px;
  line-height: 1.4;
  overflow: auto;
  max-height: 60vh;
  white-space: pre-wrap;
  word-break: break-word;
}

.NestedInputList-modal-footer {
  text-align: right;
}

.NestedInputList-invalid-json {
  background-color: #fff5f5;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  padding: 12px 16px;
  color: #842029;
  margin-bottom: 12px;
}

.NestedInputList-error-details {
  font-size: 13px;
  color: #b02a37;
  margin-bottom: 8px;
}

.NestedInputList-suggestion-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}