/* Core */
/* Imports with variables */
/* Same as the frontend/core/tooltip.css with the color variables materialized */
:root {
  --brand-purple-dark: #321750;
  --brand-purple: #47266C;
  --brand-purple-light: #824FF9;
  --brand-purple-light-alt: #644f7f;
  --brand-purple-light-alt2: #87719F;
  --brand-purple-alt: #B99BFF;
  --brand-yellow: #FFEC00;
  --brand-yellow-light: #FFF680;
  --brand-yellow-lighter: #FFFBC6;
  --brand-blue: #4F9BF9;
  --brand-cyan: #00F0FF;
  --brand-cyan-light: #C6FCFF;
  --brand-green: #37CC84;
  --brand-pink: #E64FF9;
  --brand-orange: #F9884F;
  --brand-red: #F94F4F;

  --progress-indicator-1: var(--brand-purple-dark);
  --progress-indicator-2: #6E5986;
  --progress-indicator-3: #AC9CBD;
  --progress-indicator-4: #CABADB;

  --bg-white: #fff;
  --bg-light: #F4F4F4;
  --bg-lighter: #FBFBFB;
  --bg-superlight: #F9F9F9;
  --bg-disabled: #E9E9E9;
  --bg-inactive: #E6E6E6;
  --bg-invalid: #F3DCE2;
  --bg-external: #F6F9FC;
  --bg-hint-OK: #C7EAD9;
  --bg-dark: var(--brand-purple-dark);
  --bg-hint-optional: var(--brand-cyan-light);
  --bg-hint-mandatory: var(--brand-yellow-lighter);
  --bg-hint-error: var(--bg-invalid);
  --bg-gray: #B0B0B0;
  --bg-light-gray: #D8D8D8;
  --bg-lighter-gray: #E6E6E6;
  --bg-lightest-gray: #DDDDDD;
  --bg-black: #000000;
  --bg-dim: rgba(0, 0, 0, .2);
  --bg-light-purple: #EDE9F1;

  --link: var(--brand-purple-light);
  --action-primary: var(--brand-yellow);
  --action-primary-hover: var(--brand-yellow-light);
  --action-secondary: var(--bg-white);
  --action-secondary-hover: var(--bg-lighter-gray);
  --action-warning: #EC4575;
  --action-warning-hover: #FF5E8C;
  --action-green: var(--brand-green);
  --action-disabled: var(--bg-disabled);
  --action-dark: var(--brand-purple-dark);
  --action-rail: #ACACAC;

  --width-border-action: 1px;
  --width-border-active: 2px;
  --width-border-gray: 1px;
  --width-border-transparent: 1px;
  --width-border-total: 3px;

  --border-action: var(--width-border-action) solid var(--action-dark);
  --border-active: var(--width-border-active) solid var(--action-primary);
  --border-invalid: var(--width-border-gray) solid var(--action-warning);
  --border-gray: var(--width-border-gray) solid var(--bg-inactive);
  --border-lighter-gray: var(--width-border-gray) solid var(--bg-lightest-gray);
  --border-transparent: var(--width-border-transparent) solid transparent;
  --border-total: var(--width-border-total) solid var(--brand-purple-dark);

  --shadow-focus: 0 0 1px 2px var(--brand-purple-light);
  --shadow-drop: 0 0 1px 0 rgba(150, 0, 0, 0.25);
  --shadow-white: 0 0 1px 1px var(--text-light);
  --shadow-light: 0 0 2px 0 rgba(220, 0, 0, 0.05);
  --shadow-calendar: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  --shadow-calendar-row: 0 0 2px 0 rgba(150, 0, 0, 0.1);
  --shadow-invalid: 0 0 0 1px var(--action-warning);
  --shadow-popover: 0 10px 16px rgba(117, 117, 117, .3);
  --shadow-drag: 0 20px 16px 0 rgba(117, 117, 117, .3);

  --text-black: var(--brand-purple-dark);
  --text-dark: #333;
  --text-medium: #707070;
  --text-disabled: #B4B4B4;
  --text-light: #fff;
  --text-gray: #919191;
  --text-warning: var(--action-warning);

  --additional-red: #F94F80;
  --additional-blue: #4F9BF9;
  --additional-lilac: #B99BFF;
  --additional-orange: #F9884F;
  --additional-green: #37CC84;
  --additional-pink: #E64FF9;
  --additional-light-grey: #DADADA;
  --additional-lighter-grey: #D9D9D9;
  --additional-dark-grey: #AAAAAA;

  --table-hover-view: #FAF8FC;
  --table-hover-click: #EDE9F1;
  --table-border-black: 1px solid var(--brand-purple-dark);
  --table-border-gray: 1px solid var(--bg-lightest-gray);
  --table-drag-shadow: 0 20px 16px 0 rgba(117, 117, 117, .3);
}
:root {
  --overlay-low: 9;
  --overlay-medium: 99;
  --overlay-high: 999;
}
.overlay--low {
  z-index: 9;
  z-index: var(--overlay-low);
}
.overlay--medium {
  z-index: 99;
  z-index: var(--overlay-medium);
}
.overlay--high {
  z-index: 999;
  z-index: var(--overlay-high);
}
.overlay__backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.overlay__content {
  position: relative;
  z-index: 1;
}
.overlay__backdrop--dimmed {
  background-color: rgba(0, 0, 0, .2);
  background-color: var(--bg-dim);
}
.ReactModal__Overlay {
  background-color: rgba(0, 0, 0, .2) !important;
  background-color: var(--bg-dim) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  z-index: var(--overlay-high);
}
.ReactModal__Content:focus {
  outline: none !important;
  box-shadow: none !important;
}
.setup-notification {
  display: block;
  line-height: 47px;
  max-height: 47px;
  font-size: 16px;
  text-align: center;
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
}
/* Drop a bit of padding at the top, making it appear the trial notification is overlaying it */
.setup-notification ~ .view  > .view__header {
  margin-top: 0;
  padding-top: 0;
}
/* Imports with resets */
html, body, div, form, fieldset, legend, label {
 margin: 0;
 padding: 0;
}
figure {
  margin-top: 0;
  margin-left: 0;
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}
th, td {
 text-align: left;
 vertical-align: top;
}
h1, h2, h3, h4, h5, h6, th, td, caption {
  font-weight: normal;
}
img {
  border: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
/* Styling inputs directly is not ideal, consider refactoring this to pseudo-elements down the line */
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #321750;
  border: var(--border-action);
  border-radius: 3px;
  background-color: transparent;
  width: 1rem;
  height: 1rem;
  vertical-align: baseline;
  margin: 0 .3em -.25em .2em;
  background-size: 100%;
  background-repeat: no-repeat;
  background-clip: border-box;
}
input[type=checkbox] {
  margin: 0 .5em -.25em .2em;
}
input[type=radio] {
  border-radius: .5rem
}
input[type=checkbox]:checked {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20stroke%3D%22%23fff%22%20fill%3D%22none%22%20d%3D%22M1%204l2%202%204-4%22%2F%3E%3C%2Fsvg%3E');
  background-color: #321750;
  background-color: var(--action-dark);
}
input[type=radio]:checked {
  padding: 2px;
  background-clip: content-box;
  background-color: #321750;
  background-color: var(--action-dark);
}
input[type=checkbox] + label,
input[type=radio] + label {
  line-height: 2;
}
input[type=checkbox]:disabled,
input[type=radio]:disabled,
input[type=checkbox]:disabled:hover,
input[type=radio]:disabled:hover {
  cursor: not-allowed;
  border-color: #B4B4B4;
  border-color: var(--text-disabled);
  background-color: #E9E9E9;
  background-color: var(--action-disabled);
}
input[type=checkbox]:disabled:checked,
input[type=radio]:disabled:checked,
input[type=checkbox]:disabled:hover:checked,
input[type=radio]:disabled:hover:checked {
  cursor: not-allowed;
  border-color: #B4B4B4;
  border-color: var(--text-disabled);
  background-color: #B4B4B4;
  background-color: var(--text-disabled);
}
dd, dt, ul, ol {
  margin-top: 0;
  margin-bottom: 0;
}
dd, dt {
  margin-left: 0;
}
.flat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spaced-list {
  padding-left: 20px;
}
.spaced-list li {
  padding-bottom: 0.5rem;
}
.inline-list > * {
  display: inline;
}
.keyvalue-list,
.keyvalue-list-triple {
  display: grid;
  align-items: baseline;
  grid-template: auto / auto;
  row-gap: .5rem;
  margin-bottom: 1em;
}
.keyvalue-list.search-field {
  grid-template-columns: 100px auto;
}
.keyvalue-list a {
  text-decoration: none;
}
.keyvalue-list a:hover {
  text-decoration: underline;
}
/* Merge this with above when all of Stager is white-blocked */
.white-block .keyvalue-list,
.purple-block .keyvalue-list {
  margin-bottom: 0;
}
.keyvalue-list > *,
.keyvalue-list-triple > * {
  line-height: 2rem; /* Line height equal to height of input fields or buttons for outlining */
}
.keyvalue-list > label,
.keyvalue-list-triple > label {
  padding-right: 0.5rem;
  align-self: start;
}
.keyvalue-list > label.valign-center,
.keyvalue-list-triple > label.valign-center {
  align-self: center;
}
.keyvalue-list--min-height > * {
  min-height: 2rem;
}
.keyvalue-list--bold-labels > label {
  font-weight: bold;
}
.keyvalue-list--align-top {
  align-items: flex-start;
}
.keyvalue-list.keyvalue-list--spacing-large > * {
  margin-bottom: 1rem;
}
.keyvalue-list > div > custom-select {
  padding-left: 0.625rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .keyvalue-list {
    grid-template: auto / 12rem 1fr;
  }

  .keyvalue-list.checkbox-first {
    grid-template-columns: 50px auto;
  }

  .keyvalue-list-triple {
    grid-template: auto / 12rem 20rem auto;
  }

  .keyvalue-list-triple.checkbox-first {
    grid-template-columns: 50px 14rem auto;
    align-items: inherit !important;
  }

  .keyvalue-list-triple > .field--textarea-large {
    width: 50% !important;
  }
}
@media (min-width: 480px) {
  .keyvalue-list {
    grid-template-columns: 13.5rem 1fr;
  }
}
.keyvalue-list .button,
/* When there are no inputs, buttons or other larger elements the spacing can be kept small */
.keyvalue-list--small-rows > * {
  line-height: 1.4;
}
.add-schedule-activity__keyvalue-list {
  grid-template-columns: 160px 1fr;
}
.grid-list {
  display: grid;
  align-items: baseline;
  grid-template: auto / auto;
  grid-column-gap: .5rem;
  max-width: 960px;
}
.grid-list:not(.radio-list):not(.radio-list-trio) > * {
  margin-bottom: .3rem;
}
@media (min-width: 640px) {
  .grid-list {
    grid-template: auto / 1fr 1fr;
  }

  .grid-list > :nth-child(odd):last-child {
    grid-column: 1 / 3; /* Span both columns when only element on row */
  }
}
@media (min-width: 1024px) {
  /* keep lower breakpoint styling for smaller version */
  .grid-list:not(.grid-list--small) {
    grid-template: auto / 1fr 1fr 1fr;
  }

  .grid-list:not(.grid-list--small) > :nth-child(odd):last-child {
    grid-column: auto; /* reset two-column behaviour in three-column situation */
  }

  .grid-list:not(.grid-list--small) > :nth-child(3n+1):last-child {
    grid-column: 1 / 4; /* Span all columns when only element on row */
  }

  .grid-list:not(.grid-list--small) > :nth-child(3n+2):last-child {
    grid-column: 2 / 4; /* Span all columns when second element on row of three columns */
  }
}
@media (min-width: 1400px) {
  .grid-list.radio-list-smallest {
    grid-template: auto / 0.25fr 1fr 1fr;
  }

  .grid-list.radio-list-small {
    grid-template: auto / 0.35fr 1fr 1fr;
  }

  .grid-list.radio-list {
    grid-template: auto / 0.5fr 1fr 1fr;
  }

  .grid-list.radio-list-trio {
    grid-template: auto / 0.5fr 0.5fr 1.5fr;
  }
}
:root {
  --margin-line: 1.225rem;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/public/fonts/open-sans-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/public/fonts/open-sans-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/public/fonts/open-sans-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.4;
  font-size: .875rem;
  color: #321750;
  color: var(--text-black);
}
hgroup {
  margin: 0;
}
h1, h2, h3, h4, h5, h6, p, table, dl, ul, ol {
  font-size: inherit;
}
/* Vertical rhythmn */
h1,h2,h3,h4,h5,h6,
ul,ol,dl,
figure,
pre,table,fieldset,hr {
  margin-top: 0;
  margin-bottom: calc(2 * 1.225rem);
  margin-bottom: calc(2 * var(--margin-line));
}
p {
  margin-top: 0;
  margin-bottom:1.225rem;
  margin-bottom:var(--margin-line);
}
.h0 {
  font-size: 2rem;
  font-weight: 700;
}
.h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.225rem;
  margin-bottom: var(--margin-line);
}
@media (min-width: 1080px) {
.h1 {
    font-size: 1.75rem
}
  }
.h2 {
  font-size: 1.15rem;
  margin-bottom: 1.225rem;
  margin-bottom: var(--margin-line);
}
@media (min-width: 1080px) {
.h2 {
    font-size: 1.25rem
}
  }
.h2>a {
  text-decoration: none;
}
.h2>a:hover {
  text-decoration: underline;
}
.h3 {
  font-size: 1rem;
  margin-bottom: 1.225rem;
  margin-bottom: var(--margin-line);
}
.inline {
  display: inline;
}
.bold {
  font-weight: bold;
}
.strike-through {
  text-decoration: line-through !important;
}
.italic {
  font-style: italic;
}
.capitalized {
  text-transform: capitalize;
}
.lowercase {
  text-transform: lowercase;
}
.truncated {
  overflow: hidden;
  text-overflow: ellipsis;
}
.smaller-font {
  font-size: .75rem !important;
}
.small-font {
  font-size: .65rem;
}
.lh-1 {
  line-height: 1.4;
}
.alert,
.required {
  color: #E50000;
}
.ok {
  color: #1F9F09;
}
::-moz-selection {
  color: white;
  background-color: #47266C;
  background-color: var(--brand-purple);
}
::selection {
  color: white;
  background-color: #47266C;
  background-color: var(--brand-purple);
}
/* Imports of reusable classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only--focusable:active,
.sr-only--focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media screen and (min-width: 48em) {
  .order-overview-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
}
.animated--short {
  animation-duration: .5s;
  animation-fill-mode: both;
}
.animated--fade-in {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}
@keyframes slideDownMenu {
	0% {
    -webkit-transform: translateY(-20px);
    opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0%);
    opacity: 1;
	}
}
.badge {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: .75em;
  padding: .10em .35em;
  min-width: 1.25em;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.5em;
  font-size: .8rem;
  line-height: 1.1em;
  text-align: center;
  color: #fff;
  color: var(--text-light);
  background-color: #EC4575;
  background-color: var(--action-warning);
  text-decoration: none;
  margin-left: 2px;
}
.badge--outline {
  background-color: transparent;
  border: 1px solid #321750;
  border: 1px solid var(--brand-purple-dark);
  color: #321750;
  color: var(--brand-purple-dark);
}
.badge--small {
  margin-top: 0.15rem;
  padding: 0.08em .35em;
  font-size: 0.7rem;
  min-width: 1.15em;
  height: 1.4em;
}
.badge--validated {
  background-color: #37CC84 !important;
  background-color: var(--action-green) !important;
}
button {
  cursor: pointer;
}
.button,
.button:visited {
  display: inline-block;
  font-size: .8rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: .25em 1em .3em;
  min-height: 2em;
  min-width: 7em;
  border-radius: 1em;
  background: #fff;
  background: var(--action-secondary);
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  color: #321750;
  color: var(--text-black);
  text-decoration: none;
  vertical-align: baseline;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 1080px) {
.button,
.button:visited {
    font-size: .85rem
}
  }
.button:hover:not(.disabled) {
  background: #E6E6E6;
  background: var(--action-secondary-hover);
  color: #321750;
  color: var(--text-black);
  text-decoration: none;
}
.button:focus {
  outline: none;
}
.button--active {
  background: #E6E6E6;
  background: var(--action-secondary-hover);
  color: #321750;
  color: var(--text-black);
  text-decoration: none;
}
.button--active-alt,
.button--active-alt:hover {
  background: #321750;
  background: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  text-decoration: none;
}
.button--active-alt i,
.button--active-alt:hover i {
  color: #fff;
  color: var(--text-light);
}
.button--link,
.button--link:hover {
  background: transparent;
  border: none;
  min-height: initial;
  min-width: initial;
  border-radius: 0;
  padding: 0;
  vertical-align: initial;
  text-align: inherit;
  text-decoration: underline;
  color: #824FF9;
  color: var(--link);
}
.button--circle,
.button--remove,
.button--back {
  padding: .0625rem 0;
  min-width: initial;
  min-height: initial;
  height: 1.5rem;
  width: 1.5rem;
  text-align: center;
}
.button--remove-xs {
  height: 1rem !important;
  width: 1rem !important;
}
.button--circle-xs {
  padding: .05rem 0;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 99rem;
}
.button--circle-lg {
  height: 2rem;
  width: 2rem;
  padding: 0;
  border-radius: 99rem;
}
.button--icon {
  width: auto;
  height: auto;
  border-radius: 1em;
  min-width: initial;
  padding: .15em 1em .3em;
}
.button--icon.button--icon-responsive {
  height: 2rem;
  width: 2rem;
  border-radius: 99rem;
  min-width: 0;
  padding: .3em;
}
@media (min-width: 1280px) {
.button--icon.button--icon-responsive {
    width: auto;
    height: auto;
    border-radius: 1em;
    min-width: initial;
    padding: .15em 1em .3em
}
  }
.button--icon .button--icon-text {
  display: inline-block;
}
.button--icon.button--icon-responsive .button--icon-text {
  display: none;
}
@media (min-width: 1280px) {
.button--icon.button--icon-responsive .button--icon-text {
    display: inline-block
}
  }
.button--icon .button--icon-text {
  margin-left: 0.35rem;
}
.button--icon.button--icon-align-right .button--icon-text {
  margin-right: 0.35rem;
}
.button--remove {
  padding: 0.0700em;
  border-radius: 1em;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #D8D8D8;
  background-color: var(--bg-light-gray);
  border: 1px solid transparent;
  border: var(--border-transparent);
  color: #fff;
  color: var(--text-light);
  line-height: 1;
  min-width: 1.5rem;
}
.button--remove::before {
  content: '✕';
}
.button--remove:hover  {
  background-color: #B0B0B0;
  background-color: var(--bg-gray);
  color: #fff;
  color: var(--text-light);
}
.button--remove.button--remove-alt {
  width: 1.6rem;
  height: 1.6rem;
  color: #707070;
  color: var(--text-medium);
  background-color: #E6E6E6;
  background-color: var(--bg-lighter-gray);
}
.button--remove.button--remove-alt:hover {
  background-color: #B0B0B0;
  background-color: var(--bg-gray);
  color: #fff;
  color: var(--text-light);
}
.button--auto-width {
  min-width: initial;
  width: auto;
}
/* Using attribute selector to style since a .button might be a link.
 * Using [disabled] on a link is not valid HTML but might happen.
 */
.button--primary:not([disabled]),
.button--add:not([disabled]):not(.button--add-grey),
.button--back:not([disabled]) {
  border: 1px solid transparent;
  border: var(--border-transparent);
  background: #FFEC00;
  background: var(--action-primary);
}
.button--back:not([disabled]) {
  box-shadow: 0 0 1px 0 rgba(150, 0, 0, 0.25);
  box-shadow: var(--shadow-drop);
}
.button--primary:not([disabled]):hover,
.button--add:not([disabled]):not(.button--add-grey):hover,
.button--back:not([disabled]):hover {
  background: #FFF680;
  background: var(--action-primary-hover);
}
.button--warning:not([disabled]) {
  border: 1px solid transparent;
  border: var(--border-transparent);
  background: #EC4575;
  background: var(--action-warning);
  color: #fff;
  color: var(--text-light);
  line-height: 1.3;
}
.button--warning:not([disabled]):hover {
  background: #FF5E8C;
  background: var(--action-warning-hover);
  color: #fff;
  color: var(--text-light);
}
.button--secondary:not([disabled]) {
  border: 1px solid transparent;
  border: var(--border-transparent);
  background: #321750;
  background: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  line-height: 1.3;
}
.button--secondary:not([disabled]):hover {
  background: #462e61;
  color: #fff;
  color: var(--text-light);
}
.button--add:before {
  content: '+';
  display: inline-block;
  width: 1.1em;
  text-align: left;
  font-size: .9rem;
  line-height: 0.85;
}
.button--add-small {
  font-size: .8rem;
}
.button--add-small:before {
  width: 1em;
  font-size: .8rem;
}
.button--add-grey {
  background: #fff;
  background: var(--action-secondary);
}
.button--back::before {
  content: '';
  display: inline-block;
  width: .65em;
  height: .65em;
  border: 0.12em solid #321750;
  border: 0.12em solid var(--text-black);
  border-top: none;
  border-left: none;
  margin: .25em;
  margin-top: -3px;
  transform-origin: center center;
  transform: rotate(135deg) translate(0.125em,-0.3125em);
}
.button--dropdown:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: .25rem solid transparent;
  border-right: .25rem solid transparent;
  border-top: .25rem solid #321750;
  border-top: .25rem solid var(--text-black);
  margin: .15em 0 .1em .5em;
  vertical-align: middle;
}
.button--warning.button--dropdown:after {
  border-top-color: #fff;
  border-top-color: var(--text-light);
}
.button--secondary.button--dropdown:after {
  border-top-color: #fff;
  border-top-color: var(--text-light);
}
.button--dropdown[disabled]:after {
  border-top-color: #B4B4B4;
  border-top-color: var(--text-disabled);
}
button[disabled],
.button[disabled],
.button[disabled]:hover {
  cursor: not-allowed;
}
.button[disabled],
.button[disabled]:hover {
  background: #E9E9E9;
  background: var(--action-disabled);
  color: #B4B4B4;
  color: var(--text-disabled);
}
.button + .button {
  margin-left: .3rem;
}
.button--ml {
  margin-left: .3rem;
}
.button--mr {
  margin-right: .3rem;
}
@media (min-width: 1280px) {
  .button + .button {
    margin-left: .5rem;
  }
  .button--ml {
    margin-left: .5rem;
  }
  .button--mr {
    margin-right: .5rem;
  }
}
.new.button {
  margin-bottom: 1.225rem;
  margin-bottom: var(--margin-line);
}
.button--above{
  margin: 1em;
  right: 1em;
  position: relative;
  bottom: 1em;
}
.error {
  display: block;
  color: #EC4575;
  color: var(--text-warning);
  margin-bottom: 0;
}
.field,
td .select2-container .select2-selection--single {
  height: 2rem;
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  color: #333;
  color: var(--text-dark);
  font-size: .8125rem;
  border-radius: 3px;
  background-color: #fff;
  background-color: var(--bg-white);
  padding: 0 .5rem;
  border-width: 1px;
}
.field {
  width: 15rem;
}
.error > .field, /* selector for editable record fields */
.field--invalid {
  border: 1px solid #EC4575;
  border: var(--border-invalid);
}
.field--text:-moz-read-only {
  cursor: not-allowed;
  background-color: #E9E9E9;
  background-color: var(--action-disabled);
  color: #B4B4B4;
  color: var(--text-disabled);
}
.field--text:read-only,
.field:disabled {
  cursor: not-allowed;
  background-color: #E9E9E9;
  background-color: var(--action-disabled);
  color: #B4B4B4;
  color: var(--text-disabled);
}
.field--date[readonly]:focus {
  box-shadow: 0 0 1px 2px #824FF9 !important;
  box-shadow: var(--shadow-focus) !important;
}
.field--number,
.field--price {
  width: 6rem;
  border-width: 1px;
}
.field--date {
  width: 7rem;
  border-width: 1px;
}
.field--xsm {
  width: 7rem !important;
  min-width: 7rem !important;
}
.field--date-time,
.field--sm {
  width: 10rem !important;
  min-width: 10rem !important;
}
.field--md {
  width: 12rem !important;
  min-width: 12rem !important;
}
.field--xl {
  width: 22.5rem !important;
  min-width: 18rem !important;
}
.field--xxl {
  width: 21rem !important;
  min-width: 21rem !important;
}
.field--xxxl {
  width: 25rem !important;
  min-width: 25rem !important;
}
.field--textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: block; /* fix alignment in grid */
  padding-top: 0.4em;
}
.field--no-pointer {
  pointer-events: none;
}
.field--textarea.field--textarea-medium {
  min-height: 5em;
  width: 100%;
}
@media (min-width: 1280px) {
.field--textarea.field--textarea-medium {
    min-width: 50%;
    width: auto
}
  }
.field--textarea-emailcomponent {
  width: 100%;
  min-height: 25em;
  resize: vertical;
}
.field--textarea-guestextractor {
  width: 100%;
  min-height: 15em;
  padding: 1em;
  line-height: 1.35;
  resize: vertical;
}
.field--textarea.field--textarea-large {
  min-height: 8em;
  width: 100%;
}
@media (min-width: 1280px) {
.field--textarea.field--textarea-large {
    min-width: 50%;
    width: auto
}
  }
.field--textarea.field--textarea-comment {
  width: 100%;
  min-width: 380px;
  max-width: 380px;
  max-height: 380px;
  min-height: 100px;
}
.field--number,
.field--price {
  text-align: right;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.field--checkbox {
  margin-left: 0 !important;
}
.field--text,
.field--search,
.field--select {
  padding: 0 1rem 0 .5rem;
  min-width: 15rem;
  width: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-width: 1px;
}
.field--select-sm {
  min-width: 6rem;
  width: 6rem;
}
.field--select-md {
  min-width: 8rem;
  width: 8rem;
}
.field--postal-code {
  padding: 0 1rem 0 .5rem;
  width: 11ch;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field--select {
  padding-right: 1.5rem;
  background-position: calc(100% - 8px) center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22%2F%3E%3C%2Fsvg%3E');
  background-size: 10px 10px;
}
.field--select-time,
.field--select-inline {
  min-width: auto;
  width: 8em;
}
.field--select-time-avails {
  min-width: auto;
  width: 6rem;
}
.field--select-crew-member {
  min-width: auto;
  max-width: 15rem;
}
.field--select-time {
  margin-right: 1px;
}
.field--two-rows {
  height: 3.2rem;
  padding-left: .8rem;
}
.field--select-inline {
  margin: 0;
}
.field--select-time {
  width: auto !important;
  min-width: 3rem;
}
@media (max-width: 1660px) {
.field--select-time {
    min-width: 0;
    margin-top: .5rem
}
  }
.field--half-width {
  width: 50%;
}
.field--full-width {
  width: 100%;
}
.field--hidden {
  display: none;
}
.field--small {
  width: 4rem;
  min-width: 4rem;
}
.field--min-height-300 {
  min-height: 300px;
  overflow: auto;
}
.field--min-height-65 {
  min-height: 65px;
}
.field--min-height-50 {
  min-height: 50px;
}
.field--email-spacing {
  width: 13.5em;
}
.field--phoneNumber-spacing {
  width: 13.5em;
}
.field--website-spacing {
  width: 13.5em;
}
.field--auto-width {
  width: auto !important;
}
.field--grayed-out {
  color: #919191;
  color: var(--text-gray);
}
.field--aligned-right {
  display: inline-block;
  float: right;
}
.field--tooltip-info {
  resize: none;
  height: 96px;
  width: 240px;
}
td.icon-dropdown-field .select2-container .select2-selection--single {
  width: 54px !important;
}
td .select2-container .select2-selection__arrow b {
  padding-right: 1.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M233.4%20406.6c12.5%2012.5%2032.8%2012.5%2045.3%200l192-192c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L256%20338.7%2086.6%20169.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3l192%20192z%22%2F%3E%3C%2Fsvg%3E');
  background-size: 10px 10px;
  background-color: transparent;
  border: none !important;
  height: 10px !important;
  top: 45% !important;
  left: 0 !important;
}
td .select2-container--disabled .select2-selection--single {
  background-color: #E9E9E9 !important;
  background-color: var(--action-disabled) !important;
}
td .select2-container--disabled .select2-selection--single span {
  color: #B4B4B4 !important;
  color: var(--text-disabled) !important;
}
td .select2-container--disabled {
  pointer-events: none !important;
}
td .select2-container .select2-selection__rendered {
  padding: 0 !important;
  height: 2rem;
}
.select2-results div {
  font-size: .8125rem;
}
.select2-results span,
td.icon-dropdown-field .select2-container .select2-selection--single {
  font-size: 17px !important;
}
.crew-schedule__table td .select2-container,
.crew-schedule__table td .select2-container .select2-selection--single {
  max-width: 300px;
}
.hint {
  font-weight: normal;
  background-color: #FFFBC6;
  background-color: var(--bg-hint-mandatory);
  padding: 1rem 1.2rem;
  max-width: 32rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  border-bottom: 1px #DDDDDD solid;
  border-right: 1px #DDDDDD solid;
}
/* Empty hints can be used as placeholder for async validation errors */
.hint:empty {
  display: none;
}
.hint:first-child {
  margin-top: 0;
}
.hint:last-child {
  margin-bottom: 0;
}
.hint--error {
  background-color: #F3DCE2;
  background-color: var(--bg-hint-error);
}
.hint--success {
  background-color: #C7EAD9;
  background-color: var(--bg-hint-OK);
}
.hint--optional {
  background-color: #C6FCFF;
  background-color: var(--bg-hint-optional);
}
.hint--sticky {
  position: sticky;
  top: 1rem;
}
.hint--full-width {
  width: 100%;
  max-width: none;
}
.hint ul {
  padding-left: 10px;
}
.hint ul.flat-list {
  padding-left: 0;
}
.hint ul li {
  padding-bottom: 4px;
}
.hint--error-pushUp{
  bottom: 4.5em !important;
}
.hint--onTop{
  z-index: 99;
}
.white-block .hint {
  margin-top: 0;
}
#crosspage-selectall {
  margin-top: -3px;
}
/* Default color for all FontAwesome icons. */
.fa,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fad,
.fa-duotone,
.fat,
.fa-thin,
.fa-sharp,
.fak,
.fa-kit {
  color: #321750;
  color: var(--brand-purple-dark)
}
/* Overriding default icon size styling */
.fa-xs {
  font-size: 10px;
}
.fa-sm {
  font-size: 11px;
}
.fa-lg {
  font-size: 15px;
}
.fa-xl {
  font-size: 18px;
}
.fa-xxl {
  font-size: 24px;
}
.back-icon,
.next-icon {
  display: inline-block !important;
  margin-top: 0.6rem;
  margin-left: 0.5rem;
}
.back-icon.header, .next-icon.header {
  margin-top: 0.2rem;
}
.back-icon.no-text, .next-icon.no-text {
  margin-right: 0;
  margin-left: 0;
}
.showtime-icon--dark-purple {
  color: #321750;
  color: var(--bg-dark);
}
.showtime-icon--black {
  color: #000000;
  color: var(--bg-black);
}
.deprecated::after {
  content: "Deprecated";
  margin-left: 1em;
  font-size: 14px;
  padding: 0.25em 0.75em;
  background-color: #F94F80;
  background-color: var(--additional-red);
  color: #fff;
  color: var(--text-light);
}
.scroll-container {
  overflow-x: auto;
  width: 100%;
}
.align-center {
  text-align: center !important;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.align-right {
  margin-right: 0;
  display: block;
  margin-left: auto;
}
.flex-box {
  display: flex;
}
@media (min-width: 1080px) {
.flex-box--lg {
    display: flex
}
  }
.flex-block--half {
  flex: 0 0 50%;
  width: 50%;
}
.flex-block--60 {
  flex: 0 0 60%;
  width: 60%;
}
.flex-block--40 {
  flex: 0 0 40%;
  width: 40%;
}
.flex-direction-column {
  flex-direction: column;
}
.flex-direction-row {
  flex-direction: row;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-start {
  align-self: flex-start;
}
.section-gap {
  gap: 25px;
}
.gap-large {
  gap: 1em;
}
.gap-medium {
  gap: 0.5em;
}
.gap-small {
  gap: 0.375em;
}
.gap-tiny {
  gap: 0.275em;
}
.gap-tiniest {
  gap: 0.2em;
}
.flex-wrap {
  flex-wrap: wrap;
}
.w-full {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-60-truncate {
  width: 60%;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w-half {
  width: 50%;
}
.w-half-truncate {
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w9 {
  width: 9rem
}
.w-40 {
  width: 40%;
}
.wh-full {
  width: 100%;
  height: 100%;
}
.border-bottom {
  border-bottom: 1px solid #E6E6E6 !important;
  border-bottom: var(--border-gray) !important;
}
.border-top {
  border-top: 1px solid #E6E6E6 !important;
  border-top: var(--border-gray) !important;
}
.border--none{
  border: none !important;
}
.hidden {
  display: none !important;
}
.cursor-pointer {
  cursor: pointer;
}
.inline-block {
  display: inline-block;
}
.fit-content {
  height: -moz-fit-content !important;
  height: fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.mw-512 {
  max-width: 512px;
}
.mw-860 {
  max-width: 860px;
}
.mw-1024 {
  max-width: 1024px;
}
.mw-1280 {
  max-width: 1280px;
}
.position--move-up {
  position: relative;
  top: -30px;
}
.photo{
  height: 7rem;
  float: left;
}
.link {
  display: inline-block;
  text-decoration: none;
}
.overflow-visible {
  overflow: visible !important;
}
.white-space-normal {
  white-space: normal !important;
}
a,
button{
    color: #824FF9;
    color: var(--link);
    cursor: pointer;
}
a.button:hover {
  text-decoration: none;
}
.link--overview {
  color: #321750;
  color: var(--brand-purple-dark);
  cursor: pointer;
  text-decoration: none;
}
.link--overview:hover {
  text-decoration: underline;
}
.link--overview--icon-left i {
  margin-right: 0.5rem;
  float: left;
}
.link--overview--icon-right i {
  margin-left: 0.5rem;
}
.link--paging--icon-left i {
  margin-right: 0.5rem;
  display: inline;
  line-height: 2.5;
  vertical-align: top;
}
.link--paging--icon-right i {
  margin-left: 0.5rem;
  display: inline;
  line-height: 2.5;
  vertical-align: top;
}
.link--event-calendar {
  cursor: pointer;
  text-decoration: none;
}
button {
  background-color: inherit;
  font-size: inherit;
  border: none;
}
.link--no-line {
  text-decoration: none;
}
.stager-loader__screen {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
  z-index: 9999;
	background: rgb(255, 255, 255, 0.7);
}
.stager-loader__screen--dialog {
  top: 60px;
  height: calc(100% - 60px);
}
.stager-loader__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.stager-loader__loader {
  display: inline-block;
  width: 50px;
  height: 50px;
}
.stager-loader__loader:after {
  content: ' ';
  display: block;
  width: 32px;
  height: 32px;
  margin: 0px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #321750 transparent #321750 transparent;
  border-color: var(--brand-purple-dark) transparent var(--brand-purple-dark) transparent;
  animation: lds-dual-ring 1s linear infinite;
}
.stager-loader__loader--sm {  
  width: 30px;
  height: 30px;
}
.stager-loader__loader--sm:after {
  width: 21px;
  height: 21px;
  border: 3px solid #fff;
  border-color: #321750 transparent #321750 transparent;
  border-color: var(--brand-purple-dark) transparent var(--brand-purple-dark) transparent;
}
.stager-loader__loader--xs {  
  width: 10px;
  height: 10px;
  margin-left: 4px;
}
.stager-loader__loader--xs:after {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-color: #321750 transparent #321750 transparent;
  border-color: var(--brand-purple-dark) transparent var(--brand-purple-dark) transparent;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Margins - specifically positioned at the bottom to overwrite previous statements */
.margin--default {
  margin-bottom: 1.5em !important;
}
.margin--eighth {
  margin-bottom: 0.19em !important;
}
.margin--quarter {
  margin-bottom: 0.375em !important;
}
.margin--half {
  margin-bottom: 0.75em !important;
}
.margin--single {
  margin-bottom: 1em !important;
}
@media (min-width: 1380px) {
.margin--single {
    margin-bottom: 1.5em !important
}
  }
.margin--double {
  margin-bottom: 2em !important;
}
@media (min-width: 1380px) {
.margin--double {
    margin-bottom: 2.5em !important
}
  }
.margin--triple {
  margin-bottom: 3em !important;
}
@media (min-width: 1380px) {
.margin--triple {
    margin-bottom: 4em !important
}
  }
.margin--quadruple {
  margin-bottom: 4em !important;
}
@media (min-width: 1380px) {
.margin--quadruple {
    margin-bottom: 5em !important
}
  }
.margin--none {
  margin-bottom: 0 !important;
}
.margin--section {
  margin-bottom: 25px !important;
}
.margin--keyvalue-list {
  margin-bottom: 0.5rem !important
}
.margin--auto {
  margin: 0 auto;
}
.mr-none {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.2rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 1rem;
}
.mr-4 {
  margin-right: 1.5rem;
}
.mr-5 {
  margin-right: 2.5rem;
}
.ml-none {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 1rem;
}
.ml-4 {
  margin-left: 1.5rem;
}
.ml-5 {
  margin-left: 2rem;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: .3rem;
}
.mt-2 {
  margin-top: .7rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: .5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.pt-1 {
  padding-top: .2rem;
}
.pt-2 {
  padding-top: .5rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pt-4 {
  padding-top: 1.5rem;
}
.pb-0 {
  padding-bottom: 0rem;
}
.pb-1 {
  padding-bottom: .2rem;
}
.pb-2 {
  padding-bottom: .5rem;
}
.pb-3 {
  padding-bottom: 1rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-3 {
  padding-left: 1rem;
}
.pl-5 {
  padding-left: 2rem;
}
.pr-5 {
  padding-right: 2rem;
}
.pill {
  display: inline-block;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  color: white;
  border-radius: 1rem;
  padding: 0 .75rem .2rem .75rem;
  margin-right: .25rem;
  overflow: hidden;
  font-size: 0.8rem;
}
.pill__dismiss {
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: 1rem;
  margin: 0 -.75rem 0 0;
  border-radius: 1rem;
  position: relative;
  top: 0.1rem;
}
.pill__audience {
  background-color: #824FF9 !important;
  background-color: var(--brand-purple-light) !important;
}
.pill__audience-larger {
  height: 2.3em;
  padding: .35em 1em .3em;
  vertical-align: bottom;
  white-space: nowrap;
}
/* .pill__dismiss:hover {
  background-color: var(--brand-purple-light);
} */
button.segmented-button,
a.segmented-button{
  position: relative;
  display: inline-block;
  height: 1.7rem;
  background-color: #E6E6E6;
  background-color: var(--bg-inactive);
  color: #707070;
  color: var(--text-medium);
  margin: 0 -.4rem;
  padding: .4rem 1.3rem;
  font-size: .8rem;
  z-index: 0;
  text-decoration: none;
  line-height: 1.1;
  border: none;
}
@media (min-width: 1440px) {
button.segmented-button,
a.segmented-button{
    height: 2rem;
    margin: 0 -.5rem;
    padding: .5rem 2rem;
    font-size: .9rem
}
  }
button.segmented-button:hover,
a.segmented-button:hover{
  color: #333;
  color: var(--text-dark);
}
button.segmented-button--active,
a.segmented-button--active{
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  border-radius: 1rem;
  z-index: 1;
  cursor: default;
}
button.segmented-button--active:hover,
a.segmented-button--active:hover{
  color: #fff;
  color: var(--text-light);
}
/* 
  ideally, the pseudoclass would be sufficient, 
  but the segmented button might not be grouped
*/
.segmented-button:first-child,
.segmented-button--first-item {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  margin-left: 1rem;
}
.segmented-button.segmented--margin-half:first-child {
  margin-left: .15rem;
}
.segmented-button:last-child,
.segmented-button--last-item {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  margin-right: 1rem;
}
.segmented-button--container{
  min-width:300px;
}
.segmented-button--container-small{
  min-width: 200px;
}
.sortable .sortHandle {
    cursor: grab;
}
.sortable.ui-sortable-helper {
    background-color: #fff;
    background-color: var(--bg-white);
    box-shadow: 0 20px 16px 0 rgba(117, 117, 117, .3);
    box-shadow: var(--shadow-drag);
    cursor: grabbing;
}
.sortable.ui-sortable-helper td {
    border: none;
}
.sortHandle {
  cursor: grab;
}
.sortHandle:hover .fa-grip-lines {
  color: #321750 !important;
  color: var(--text-black) !important;
}
tr:has(> td.sortHandle).ui-sortable-helper {
  background-color: #fff;
  background-color: var(--bg-white);
  box-shadow: 0 20px 16px 0 rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-drag);
  cursor: grabbing;
}
tr:has(> td.sortHandle).ui-sortable-helper td {
  border: none;
  cursor: grabbing;
}
/* All tables have a default width of 100%, when another width is desired, overwrite it with inline styling
I have chosen to do other sizes in steps of 50% to keep it consistent. If a table is wider than 100%,
an overflow container should be added so that the table can be properly viewed without looking scuffed */
/* For the widths of the columns, it ended up working best with a combination of dynamic and static widths.
- Static widths are done in pixels and have their own reusable styles in this file.
  Columns should be static when the column contents are always the same size,
  or if a column need a certain amount of width to be displayed properly
- Dynamic widths are applied to all other fields (I.e. name, description) as inline styling.
  inline styling is chosen because using a class with a styling of width: 50% takes just as much effort
  as the inline styling equivalent. I feel like it would clog up the file with styles that dont have a specific purpose */
/* BASE */
.table-default,
.table-clickable,
.calculations-table,
.matching-events__calculations-table,
.guest-stats__calculations-table {
  color: #321750;
  color: var(--text-black);
  margin-bottom: 0;
  white-space: nowrap;
  table-layout: fixed;
  width: 100%;
}
.table-default th, .table-default td, .table-clickable th, .table-clickable td, .calculations-table th, .calculations-table td, .guest-stats__calculations-table th, .guest-stats__calculations-table td {
    height: 52px;
    padding-inline: 0.5rem;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.table-clickable th, .table-default th, .calculations-table th, .matching-events__calculations-table th, .guest-stats__calculations-table th {
    font-weight: bold;
  }
.table-default tbody tr, .table-clickable tbody tr {
    border-bottom: 1px solid #DDDDDD;
    border-bottom: var(--table-border-gray);
  }
.table-default thead tr, .table-clickable thead tr, .calculations-table thead tr, .matching-events__calculations-table thead tr {
    border-bottom: 1px solid #321750;
    border-bottom: var(--table-border-black);
  }
.contact-information-table {
  margin-bottom: 1em;
  width: 100%;
  border-top: 1px solid #DDDDDD !important;
  border-top: var(--table-border-gray) !important;
}
.contact-information-table td {
  height: 52px;
  padding-inline: 0.5rem;
  vertical-align: middle;
  border-bottom: 1px solid #DDDDDD !important;
  border-bottom: var(--table-border-gray) !important;
}
/* LINKS & BUTTONS */
.table-default a, .table-clickable a {
    text-decoration: none;
  }
.table-default a:hover, .table-clickable a:hover {
    text-decoration: underline;
  }
/* buttons in white blocks have an automatic top margin,
this needs to be unset if the button is in a table data cell */
.table-default td .button, .table-clickable td .button {
    margin-top: 0 !important;
  }
/* TABLE ROW HOVERS */
.table-default tbody tr:hover {
  background-color: #FAF8FC;
  background-color: var(--table-hover-view);
}
.table-clickable tbody tr:hover {
  background-color: #EDE9F1;
  background-color: var(--table-hover-click);
}
.table-clickable tbody tr {
  cursor: pointer;
}
/* disables click style of row in clickable table */
.table-clickable .row-unclickable {
  cursor: default;
}
.table-clickable .row-unclickable:hover {
  background-color: #FAF8FC;
  background-color: var(--table-hover-view);
}
/* RESPONSIVE TABLE STYLE FOR MOBILE */
/*
Styling that makes turns tables into stacked layout with vertical table headers on mobile devices.
To use, add .table-responsive to the table, and .transposed to the rows you want transposed.
Rows without .transposed will not get a header in front and will span the entire width (needed for public avails)
*/
.table-responsive td .tdBefore {
  display: none;
}
@media only screen and (max-width: 768px) {

  /* Prevent tables from shrinking too much on mobile by using automatic column sizing */
  .table-default,
  .table-clickable,
  .calculations-table,
  .matching-events__calculations-table,
  .guest-stats__calculations-table {
    table-layout: auto;
  }

  .table-responsive table,
  .table-responsive thead,
  .table-responsive tbody,
  .table-responsive th,
  .table-responsive td,
  .table-responsive tr {
    display: block;
  }

  .table-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    border-bottom: 2px solid #333;
  }

  .table-responsive tbody tr {
    border-bottom: 1px solid #DDDDDD;
    border-bottom: var(--table-border-gray);
    padding: 20px 0;
  }

  .table-responsive td {
    height: auto;
  }

  .table-responsive td.transposed {
    border: none !important;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    height: 32px;
  }

  .table-responsive td.transposed > div:first-child {
    width: 80px;
  }

  .table-responsive td.transposed > div:not(:first-child) {
    width: 160px;
    flex-wrap: wrap;
  }

  .table-responsive td .tdBefore {
    display: block;
    overflow-wrap: break-word;
    text-align: left !important;
  }
}
/* CALCULATION TABLE STYLES */
/* no gray border on the last row, otherwise the darker border of the foot wont show */
.calculations-table tbody tr:not(:last-child) {
  border-bottom: 1px solid #DDDDDD;
  border-bottom: var(--table-border-gray);
}
.calculations-table tfoot tr {
  border-top: 1px solid #321750;
  border-top: var(--table-border-black);
}
.calculations-table tfoot td, .matching-events__calculations-table tfoot td, .guest-stats__calculations-table tfoot td {
    font-weight: bold;
  }
/* for the vertical lines in the calculation tables, apply to head, body & foot data cells where needed */
.table-column__border-right {
  border-right: 1px solid #321750;
  border-right: var(--table-border-black);
}
.table-column__border-left {
  border-left: 1px solid #321750;
  border-left: var(--table-border-black);
}
/* the guest stats table is written in jsx, which means the styling worked a bit differently */
.guest-stats__calculations-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #DDDDDD;
  border-bottom: var(--table-border-gray);
}
.guest-stats__calculations-table tfoot td {
  border-top: 1px solid #321750;
  border-top: var(--table-border-black);
}
.guest-stats__calculations-table thead th {
  border-bottom: 1px solid #321750;
  border-bottom: var(--table-border-black);
}
/* the matching events table is a table inside another table. to make it easier to read,
 and to fit it on the screen better, this table has its own unique styling. (see sales insights -> sales overview) */
.matching-events__calculations-table {
  font-size: 0.8rem;
}
.matching-events__calculations-table tfoot tr {
  border-top: 1px solid #321750;
  border-top: var(--table-border-black);
  border-bottom: none;
}
.matching-events__calculations-table tbody tr:last-child {
  border-bottom: none;
}
.matching-events__calculations-table th, .matching-events__calculations-table td, .matching-events__calculations-table th, .matching-events__calculations-table td {
    height: 34px;
    padding-inline: 0.5rem;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
  }
.matching-events__dropdown-row td, .matching-events__dropdown-row th, .matching-events__dropdown-row td, .matching-events__dropdown-row th {
    cursor: default;
    background-color: #fff;
    background-color: var(--bg-white);
    overflow: visible !important;
  }
/* DRAGGABLE TABLE ROWS */
/* for the reusable js that is connected to these styles and their implied functionalities,
see: `draggableTableRows.js`*/
/* the ui-sortable-helper is the class name of the row that is being dragged, might save some searching */
.table__row-draggable.ui-sortable-helper {
  box-shadow: 0 20px 16px 0 rgba(117, 117, 117, .3);
  box-shadow: var(--table-drag-shadow);
  background-color: #fff;
  background-color: var(--bg-white);
  border: none;
}
.table__row-draggable:hover .fa-grip-lines {
  color: #87719F;
  color: var(--brand-purple-light-alt2);
}
.table-data-cell__drag-icon {
  cursor: grab;
}
.table-data-cell__drag-icon .fa-grip-lines {
  color: #DDDDDD;
  color: var(--bg-lightest-gray);
}
.table-data-cell__drag-icon:hover .fa-grip-lines {
  color: #321750;
  color: var(--brand-purple-dark);
}
tr:has(> td.table-data-cell__drag-icon).ui-sortable-helper td {
  cursor: grabbing;
}
/* SORTABLE TABLES */
/* these styles are used in combination with js to show arrows that indicate by which column the table is being sorted,
and in which direction. for a fully fleshed out example, see: `TicketsManageTable.js` */
.table__column-sortable {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNTEyIj48cGF0aCBmaWxsPSIjMzIxNzUwIiBkPSJNMTM3LjQgNDEuNGMxMi41LTEyLjUgMzIuOC0xMi41IDQ1LjMgMGwxMjggMTI4YzkuMiA5LjIgMTEuOSAyMi45IDYuOSAzNC45cy0xNi42IDE5LjgtMjkuNiAxOS44TDMyIDIyNGMtMTIuOSAwLTI0LjYtNy44LTI5LjYtMTkuOHMtMi4yLTI1LjcgNi45LTM0LjlsMTI4LTEyOHptMCA0MjkuM2wtMTI4LTEyOGMtOS4yLTkuMi0xMS45LTIyLjktNi45LTM0LjlzMTYuNi0xOS44IDI5LjYtMTkuOGwyNTYgMGMxMi45IDAgMjQuNiA3LjggMjkuNiAxOS44czIuMiAyNS43LTYuOSAzNC45bC0xMjggMTI4Yy0xMi41IDEyLjUtMzIuOCAxMi41LTQ1LjMgMHoiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: 8px center;
  cursor: pointer;
  padding-left: 28px !important;
}
.table__column-sortable--ascending {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23321750' d='M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h256c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z'/%3E%3C/svg%3E") !important;
}
.table__column-sortable--descending {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23321750' d='M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h256c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z'/%3E%3C/svg%3E") !important;
}
/* DISABLED ROWS */
/* the empty message style is used when displaying a row that tells the user that no items are in the table yet,
or when there are no matching items with a search query */
.table-data-cell__empty-message {
  font-style: italic;
  border-bottom: 1px solid #DDDDDD;
  border-bottom: var(--table-border-gray);
}
.table-data-cell__empty-message:hover {
  cursor: default;
  background-color: #fff;
  background-color: var(--bg-white);
  pointer-events: none;
}
.table-row--disabled {
  pointer-events: none;
  color: #707070;
  color: var(--text-medium);
  cursor: default;
}
.booking-offers__table-row--disabled td:not(:last-child) {
  color: #707070;
  color: var(--text-medium);
  text-decoration: line-through
}
/* CHECKBOX & CHECKMARK COLUMNS */
/* if the checkboxes dont listen to you when you want to center them:
checkboxes have to be centered using `block-centered` on the checkbox input itself */
.table__column-option-checkmarks {
  width: 72px;
  text-align: center;
}
.table__column-multi-select-checkboxes {
  width: 40px;
}
.table__column-opt-in-checkmarks {
  width: 100px;
  text-align: center;
}
.summary__table__column-done-checkmark {
  width: 60px;
  text-align: center;
}
/* BUTTONS */
/* this style is used for any generic button in a table data cell. since pixel widths depend on the word displayed
in the button, these will also be added inline */
.table-data-cell__generic-button {
  overflow: visible !important;
  text-align: center;
}
.table__column-download-or-copy-button {
  width: 120px;
  text-align: center;
}
.table__column-registration-radio-button {
  width: 90px;
  text-align: center;
}
.table__column-remove-buttons {
  width: 40px;
}
.table__column-remove-with-default {
  width: 65px;
  text-align: center;
}
.table-data-cell__multi-action-button {
  width: 116px;
  overflow: visible !important;
  text-align: center;
}
.table_column-external-link-button {
  width: 35px;
  text-align: center;
  overflow: visible !important;
}
/* ICONS */
.table__column-drag-icons {
  width: 30px;
}
.table__column-topic-icons {
  width: 45px;
  overflow: visible !important;
}
.table__column-phone-icon {
  width: 65px;
  overflow: visible !important;
  text-align: center;
}
/* FIELDS */
/* makes the fields in tables adaptive */
.table-default td:not(.cash) .field,
.table-clickable td .field,
.contact-information-table td .field {
  width: 100% !important;
  min-width: unset !important;
}
/* tables with the `cash` class have a symbol like % or € before or after them. to not have the fields overflow,
these field widths are have a calculation to compensate for the width of these icons */
.table-default .cash .field {
  width: calc(100% - 12px) !important;
  min-width: unset !important;
}
.table-column__date-time-fields {
  width: 240px;
}
/* UNCATEGORIZED */
/* all numbers and prices in tables should be aligned to the right to make it easier to read */
.table-data-cell__number {
  text-align: right !important;
}
.table-overflow-container {
  overflow-x: auto;
  width: 100%;
}
/* sticky behaviour (only works when overflow of parent div is NOT set to hidden, scroll, auto, or overlay) */
.table__sticky-footer {
  position: sticky;
  bottom: 0;
}
.tasks__table-subject-header {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}
.table--cloned {
  position: absolute;
  top: 0;
  left: 0;
}
.tabs {
  height: 3.7rem;
  overflow: hidden;
}
.tabs__list {
  padding: .25rem 0 0 0;
  padding-left: calc(var(--view-horizontal-padding) - 1.5rem); /* compensate for padding of tab link */
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  height: auto;
  background: transparent;
  font-weight: 600;
  list-style: none;
  padding-bottom: 2rem;
}
.tabs__item {
  display: inline-block;
}
.tabs__item a {
  display: inline-block;
  margin: 0 -1rem;
  padding: 1rem 2.5rem;
  background: none;
  color: inherit;
  text-decoration: none;
}
.tabs__item--active a {
  border-bottom: 2px solid #FFEC00;
  border-bottom: var(--border-active);
  border-bottom-width: 4px;
}
.vis-timeline {
  background-color: white;
  max-height: calc(100vh * .85);
  border: none;
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
}
.vis-group-level-1 {
  background-color: white !important;
  padding-left: 5px;
}
.vis-group-level-2 {
  background-color: rgba(0, 0, 0, .05) !important;
}
.vis-item {
  border-color: #321750;
  border-color: var(--brand-purple-dark);
}
.vis-label.vis-nesting-group.expanded::before,
.vis-label.vis-nesting-group.collapsed::before {
  background-color: #FFEC00;
  background-color: var(--action-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  content: "\276F" !important;
  font-size: 13px;
}
.vis-label.vis-nesting-group.expanded::before {
  transform: rotate(90deg);
}
.vis-timeline .vis-tooltip {
  font-family: 'Open sans', sans-serif;
  background-color: #321750;
  background-color: var(--bg-dark);
  color: white;
  white-space: pre-line;
  padding: 10px;
  opacity: 0.9;
}
/*
Turns a checkbox input into a toggle slider.
1. Put a label around the input with class "toggle"
2. Inside the label, under the input, put a span with class "slider"

Kotlin example:

  label("toggle") {
    input {
      type = InputType.checkBox
      name = toNameString(CreateEventFormDto::showAsMultipleDays)
      checked = eventMainTabFormDto.showAsMultipleDays
      value = "true"
      disabled = !isEditable
    }
    span("slider") {}
  }

*/
.toggle {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25.5px;
}
.toggle input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888;
  transition: 0.3s;
  border-radius: 25.5px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 19.5px;
  width: 19.5px;
  left: 3px;
  bottom: 3px;
  background-color: #FFF;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #311B50;
}
input:checked + .slider:before {
  transform: translateX(19.5px);
}
/* Old tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip--icon {
  width: 20px;
}
.tooltip__link {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}
.tooltip__content {
  visibility: hidden;
  position: absolute;
  top: -7px;
  right: calc(100% + 10px);
  padding: 5px;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  border: 5px solid #321750;
  border: 5px solid var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  font-size: 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 99;
}
.tooltip__content.tooltip__content--arrow-bottom {
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
}
.tooltip--icon .tooltip__content {
  right: 33px;
}
.tooltip__content.tooltip__content--dark {
  border: 5px solid #321750;
  border: 5px solid var(--bg-dark);
  background-color: #321750;
  background-color: var(--bg-dark);
}
.tooltip__content--medium {
  min-width: 9rem;
}
.tooltip__content::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  right: 0;
  top: 12px;
  border: 8px solid transparent;
  border-right: 0;
  border-left: 8px solid #321750;
  border-left: 8px solid var(--brand-purple-dark);
  transform: translate(calc(100% + 5px), -50%);
}
.tooltip__content.tooltip__content--arrow-bottom::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  right: 50%;
  top: auto;
  bottom: 0;
  border: 8px solid transparent;
  border-right: 0;
  border-left: 8px solid #321750;
  border-left: 8px solid var(--brand-purple-dark);
  transform: translate(calc(100% + 5px), -50%);
}
.tooltip__content.tooltip__content--small-arrow::before {
  top: 6px;
  border: 4px solid transparent;
  border-right: 0;
  border-left: 4px solid #321750;
  border-left: 4px solid var(--brand-purple-dark);
  transform: translate(calc(100% + 5px), -50%);
}
.tooltip__content.tooltip__content--dark::before {
  border-left: 8px solid #321750;
  border-left: 8px solid var(--bg-dark);
}
.tooltip__link:hover + .tooltip__content {
  visibility: visible;
}
/* New tooltip */
.tooltip-wrap:hover,
.tooltip-wrap-manual,
[data-tooltip-bottom]:hover,
[data-tooltip-left]:hover,
[data-tooltip-right]:hover,
[data-tooltip]:hover {
	position: relative;
}
[data-tooltip-bottom]:hover::after,
[data-tooltip-left]:hover::after,
[data-tooltip-right]:hover::after,
[data-tooltip]:hover::after,
.tooltip-wrap:hover::after,
.tooltip-wrap-manual::after {
	all: initial;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #321750;
	border-top: 8px solid var(--brand-purple-dark);
	position: absolute;
	bottom: 100%;
  content: '';
  font-size: 0.8rem;
	left: 50%;
	transform: translate(-50%, 0);
	margin-bottom: 1px;
}
.tooltip-delayed:hover::after {
  animation-name: fadeIn;
  opacity: 0;
  animation-duration: 0s;
  animation-delay: .5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
[data-tooltip-right]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(90deg) translate(0, -50%);
	left: 100%;
	top: 50%;
	margin-left: 2px;
	margin-top: 2px;
}
[data-tooltip-left]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(-90deg) translate(0, -50%);
	left: auto;
	right: 100%;
	top: 50%;
	margin-right: -7px;
	margin-top: -1px;
}
[data-tooltip-bottom]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(180deg) translate(-50%, 0);
	top: 100%;
	margin-left: -20px;
	margin-top: 5px;
}
.tooltip-wrap:hover .tooltip-dynamic-bottom,
.tooltip-wrap:hover .tooltip-dynamic-left,
.tooltip-wrap:hover .tooltip-dynamic-right,
.tooltip-wrap:hover .tooltip-dynamic,
.tooltip-wrap-manual .tooltip-dynamic,
[data-tooltip-bottom]:hover::before,
[data-tooltip-left]:hover::before,
[data-tooltip-right]:hover::before,
[data-tooltip]:hover::before {
	all: initial;
	font-family: 'Open sans', sans-serif;
	visibility: visible;
	height: auto;
	border-radius: 3px;
	padding: 8px;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  font-size: 0.8rem;
	content: attr(data-tooltip);
	color: #f9f9f9;
	position: absolute;
	bottom: 100%;
  max-width: 200px;
  min-width: 150px;
  z-index: 99;
  width: auto !important;
	left: 50%;
	transform: translate(-50%, 0);
	margin-bottom: 8px;
}
.tooltip-delayed:hover .tooltip-dynamic-bottom,
.tooltip-delayed:hover .tooltip-dynamic-left,
.tooltip-delayed:hover .tooltip-dynamic-right,
.tooltip-delayed:hover .tooltip-dynamic,
[data-tooltip-bottom]:hover::before,
[data-tooltip-left]:hover::before,
[data-tooltip-right]:hover::before,
[data-tooltip]:hover::before {
  transition-property: visibility;
  transition-delay: 500ms;
}
[data-tooltip].tooltip--smaller-text:hover::before {
  font-size: 0.7rem;
}
.tooltip-wrap:hover .tooltip-dynamic-bottom,
.tooltip-wrap:hover .tooltip-dynamic-left,
.tooltip-wrap:hover .tooltip-dynamic-right,
.tooltip-wrap:hover .tooltip-dynamic,
.tooltip-wrap-manual .tooltip-dynamic {
  text-align: left;
  padding: 10px;
  z-index: 99;
}
.tooltip-wrap:hover .tooltip-dynamic-right,
[data-tooltip-right]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	transform: translate(0, -50%);
	left: 100%;
	top: 50%;
	content: attr(data-tooltip-right);
	margin-left: 8px;
}
.tooltip-wrap:hover .tooltip-dynamic-left,
[data-tooltip-left]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	transform: translate(0, -50%);
	left: auto;
	right: 100%;
	top: 50%;
	content: attr(data-tooltip-left);
	margin-right: 8px;
}
.tooltip-wrap:hover .tooltip-dynamic-bottom,
[data-tooltip-bottom]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	top: 100%;
	content: attr(data-tooltip-bottom);
	margin-top: 15px;
}
.tooltip-wrap .tooltip-dynamic-bottom,
.tooltip-wrap .tooltip-dynamic-left,
.tooltip-wrap .tooltip-dynamic-right,
.tooltip-wrap .tooltip-dynamic {
  height: 0;
  width: 0;
  display: inline-block;
  visibility: hidden;
  overflow: hidden;
}
.tooltip-list {
  padding-left: 20px;
}
.tooltip-wider:hover .tooltip-dynamic {
  max-width: 300px !important;
  min-width: 200px !important;
  white-space: pre-line;
}
.tooltip-small-font {
  font-size: 12px !important;
}
.tooltip--auto-width,
[data-tooltip]:hover::before {
  min-width: auto !important;
}
.tooltip--no-break,
[data-tooltip]:hover::before {
  word-break: keep-all !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}
.block-container {
  display: flex;
  color: white;
}
.block-container.block-container--active-waiting-room {
}
.block-container.block-container--sales {
  justify-content: space-between;
  gap: 1em;
}
.block {
  padding: 1.5em;
  display: block;
}
.block-centered {
  display: block;
  margin: 0 auto !important;
}
.block__name {
  font-size: 0.750em;
}
.block__name + .block__title {
  margin-top: .5em;
}
.block__title {
  font-size: 1em;
}
.block__content {
  font-size: 1.250em;
  font-weight: bold;
}
.block__scrollable {
  overflow-x: scroll;
  margin-bottom: 10px;
}
.block-container--waiting-room-statistics > .block {
  margin-right: 1em;
  background-color: #47266C;
  background-color: var(--brand-purple);
  min-width: 15%;
}
.block-container--active-waiting-room > .block {
  margin-right: 1em;
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
  min-width: 20%;
}
.block-container--sales > .block {
  flex: 1 1 0;
}
.block-container--sales > .block h4:last-child {
  font-weight: bold;
  font-size: 1.250em;
}
.block--revenue {
  background-color: #37CC84;
  background-color: var(--brand-green);
}
.block--paid-tickets {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.block--free-tickets {
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
}
.block--imported-tickets {
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  color: #321750;
  color: var(--brand-purple-dark);
}
.block--sales-type {
  background-color: #4F9BF9;
  background-color: var(--brand-blue);
}
.block--average-age {
  background-color: #37CC84;
  background-color: var(--brand-green);
}
.white-block {
  background-color: #fff;
  background-color: var(--bg-white);
  padding: 25px;
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-inactive);
  margin-bottom: 25px !important;
}
.white-block.less-padding-bottom {
  padding: 25px 25px 8px 25px;
}
.white-block .no-border-bottom {
  border-bottom: 0;
}
.block--disabled {
  pointer-events: none;
  cursor: default;
}
.margin--white-block {
  margin-bottom: 25px !important;
}
.white-block .table-default,
.white-block .table-clickable,
.white-block .table-draggable {
  background-color: inherit;
}
.white-block .table-default thead tr th,
.white-block .table-clickable thead tr th,
.white-block .table-draggable thead tr th {
  border-bottom: 1px solid #312750;
}
.white-block .table-default input[type="text"],
.white-block .table-clickable input[type="text"],
.white-block .table-draggable input[type="text"] {
  width: 480px;
}
.white-block .table-default input[type="number"],
.white-block .table-clickable input[type="number"],
.white-block .table-draggable input[type="number"],
.white-block .table-default select,
.white-block .table-clickable select,
.white-block .table-draggable select {
  width: 240px;
}
.white-block .button {
  margin-top: 8px;
}
.white-block .button.no-margin-top {
  margin-top: 0px;
}
.purple-block {
  background-color: #EDE9F1;
  background-color: var(--bg-light-purple);
  padding: 25px;
  border-bottom: 1px solid #E3DDEA;
  margin-bottom: 25px !important;
}
.radio-list > label {
  margin-right: 1rem;
}
.radio-list > label:last-child {
  margin-right: 0;
}
.text--disabled {
  color: #B4B4B4;
  color: var(--text-disabled)
}
.not-in-use-add:hover {
  font-weight: 300;
  height: 14px;
  width: 25px;
  cursor: pointer;
}
.not-in-use-add,
.not-in-use-add::before,
.not-in-use-add-static,
.not-in-use-add-static::before {
  height: 14px;
}
.not-in-use-add:hover::before {
  content: '\f067'; /* Font awesome '+' icon */
}
.not-in-use-add:hover::before,
.not-in-use-add-static::before {
  color: black;
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0.8px #FFEC00;
  box-shadow: 0 0 0 0.8px var(--brand-yellow);
  text-align: center;
  padding: 0.5px 3.5px;
  margin-left: 1px;
  margin-right: 1px;
  cursor: pointer;
}
th.icon-td,
td.icon-td {
  width: 54px;
  text-align: center;
}
.big-button {
  min-height: 30px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}
.view-publish-button {
  background-color: #51BC80 !important;
  color: #fff !important;
  color: var(--text-light) !important;
}
tr.strikethrough td:first-child {
  text-decoration: line-through;
}
tr.optional-booking {
  color: #707070;
  color: var(--text-medium);
  font-style: italic;
}
.linked-item-button {
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  line-height: 1rem;
}
.big-bottom-margin {
  margin-bottom: 43px;
}
.background-brand-purple {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.overlap-warning:hover .tooltip-dynamic {
  min-width: 185px;
}
.view__header-program {
  max-height: 148px;
  padding-bottom: 10px; /* Safari */
  position: sticky;
  top: 0;
  z-index: 7;
}
.view__header--program-actions {
  display: inline-flex;
}
.booking-status-select {
  margin-top: 18px;
  font-size: 15px;
  border-radius: 1em;
  text-align: center;
  min-width: 170px;
}
.program-main-form {
  padding: 25px 25px 10px;
  margin-bottom: 25px;
  background-color: #fff;
  background-color: var(--bg-white);
  border-bottom: 1px solid 1px solid #E6E6E6;
  border-bottom: 1px solid var(--border-gray);
}
.program-section .field,
.program-main-form .field,
.existing-section-file .field,
.template-section-file .field,
#external-guest-textarea {
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}
.program-main-form .keyvalue-list {
  margin-bottom: 0;
}
.view__header-program,
.program-section,
.program-main-form {
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-inactive);
}
.program-section {
  scroll-margin-top: 155px;
  font-size: 16px;
  padding-bottom: 25px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 25px;
  background-color: #fff;
  background-color: var(--bg-white);
  min-width: 610px;
}
.program-section .delete-topic-button {
  margin: 12px 1.2% 12px 12px;
}
.program-section > * {
  padding-left: 20px;
  padding-right: 20px;
}
.schedule-container {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}
.program-section .schedule--readonly {
  padding: 0 10px 10px 10px;
}
.program-section > b {
  line-height: 3em;
}
.program-section p {
  margin-top: 1.225rem;
  margin-top: var(--margin-line);
}
.program-section-header {
  color: white;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-height: 38px;
}
.program-section-header .button,
.program-section-header i {
  margin-left: -1px;
  font-size: 14px;
  color: white;
  background-color: inherit;
  border-color: rgba(255, 255, 255, 0.3);
  vertical-align: middle;
}
.program-section-header button {
  border-radius: 0;
}
.program-section-header button:first-of-type {
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}
.program-section-header button:last-of-type {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}
.newFileUpload {
  padding: 0;
}
.button-label {
  cursor: pointer;
  padding: 0.375rem 2rem;
  line-height: 1;
}
.program-item-contact-email a {
  margin-left: 15px;
}
.program-item-contact-email {
  vertical-align: middle;
}
.program-contact-search__form .field:not(.field--invalid) {
  border: 0;
}
.program-contact-search__form .field {
  background-color: white;
  margin-bottom: 0;
  padding-left: 15px;
  height: 45px;
  width: 100%;
}
.new-contact-template td {
  padding: 0;
}
.new-contact-template td:last-child {
  vertical-align: middle;
}
.spotify-artist-result {
  position: absolute;
  z-index: 9;
  background-color: #fff;
  background-color: var(--bg-white);
  border: 1px solid #DDDDDD;
  border: var(--border-lighter-gray);
  cursor: pointer;
}
.spotify-artist {
  padding: 0 10px;
}
.spotify-artist:hover {
  background-color: #D8D8D8;
  background-color: var(--bg-light-gray);
}
.spotify-link {
  margin-left: 10px;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.spotify-link-img--small {
  position: relative;
  top: 3px;
}
.spotify-link-img {
  position: relative;
  top: 5px;
}
.spotify-remove {
  position: relative;
  left: -30px;
}
.section-title {
  font-size: 15px;
  padding: 5px 0 5px 0;
  color: #919191;
  color: var(--text-gray);
}
#existing-general-section .existing-section,
#existing-general-section .template-section {
  width: 48%;
}
.template-section .editor-toolbar,
.existing-section .editor-toolbar {
  background-color: #D8D8D8;
  background-color: var(--bg-light-gray);
}
.existing-section textarea,
.template-section .CodeMirror,
.existing-section .CodeMirror {
  min-height: 103px;
  font-size: 14px;
  padding: 3px;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}
.existing-section textarea {
  resize: vertical;
}
.template-section .editor-statusbar,
.existing-section .editor-statusbar {
  padding-bottom: 0;
  padding-top: 0;
}
#program-item-guests {
  background-color: #DADADA;
  background-color: var(--additional-light-grey);
}
.guestListExtractor {
  margin: 5px 0 17px 0;
}
.template-section .field--textarea,
.existing-section .field--textarea {
  overflow: hidden;
  background-color: #FFFBC6;
  background-color: var(--brand-yellow-lighter);
  resize: none;
  width: 100%;
  min-height: 160px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 17px;
}
.response-section,
.template-section .CodeMirror,
.existing-section .CodeMirror,
.template-section .editor-toolbar,
.existing-section .editor-toolbar,
.template-section .field--textarea,
.existing-section .field--textarea {
  font-size: 14px;
}
.existing-section-file,
.template-section-file,
.itinerary-image {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.existing-section-file,
.template-section-file {
  margin-top: 10px;
}
.existing-advancing-section .existing-section-file {
  margin-top: 0;
  margin-bottom: 10px;
}
.template-section-file > *,
.existing-section-file > *,
.itinerary-image > * {
  margin-right: 12px;
}
.template-section-file input,
.existing-section-file input {
  margin-bottom: 0;
}
.template-section-file .fas,
.existing-section-file .fas {
  font-size: 26px;
}
.existing-section-file.new-file {
  margin-top: 10px;
}
.template-section-file button,
.existing-section-file button {
  min-width: 6em;
}
.template-section-file .file-name,
.template-section-file .file-size,
.existing-section-file .file-name,
.existing-section-file .file-size {
  font-size: 11px;
}
.template-section-file .file-name,
.existing-section-file .file-name {
  color: #333;
  color: var(--text-dark);
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}
.template-section-file .file-size,
.existing-section-file .file-size {
  color: #B4B4B4;
  color: var(--text-disabled);
}
.existing-advancing-section .template-section,
.existing-advancing-section .existing-section,
.existing-advancing-section .collapsable-existing-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.collapsable-existing-section:last-child {
  margin-bottom: 0 !important;
}
.collapsable-response-section,
.response-section .response,
.response-section .no-response {
  white-space: pre-line;
}
.collapsable-response-section,
.response-section .response {
  color: #333;
  color: var(--text-dark);
}
.no-response {
  font-style: italic;
  color: #919191;
  color: var(--text-gray);
}
.advanceform-collapsable-preview {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding-left: 40px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  transition: max-height 0.2s ease-out;
}
.advanceform-collapsable-preview .existing-advancing-section {
  width: 100%;
}
.existing-advancing-section .question-section,
.existing-advancing-section .collapsable-question-section,
.existing-advancing-section .response-section,
.existing-advancing-section .collapsable-response-section {
  flex: 1 0 45%;
  width: 49%;
  word-wrap: break-word;
}
.section-flex-outer-box {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
.section-flex-box {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 49%;
}
.existing-section-file .field,
.template-section-file .field {
  max-width: 24rem;
  flex: 2 1 auto;
}
.template-section-file .template-button-delete,
.template-section-file .template-button-delete-file,
.existing-section-file .button-delete-file,
.existing-section-file .button-delete {
  min-width: 0;
  padding: 0;
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 auto;
}
.template-section-file .template-button-delete .fas,
.existing-section-file .button-delete .fas {
  font-size: 16px;
}
.itinerary__tooltip-image {
  width: 150px;
}
.contacts-div {
  overflow-x: auto;
}
.contact-email,
.contact-phone {
  text-decoration: underline;
}
.template-schedule-hint {
  margin: 0 0 10px 0;
  width: 22.5rem !important;
}
.program-summary-section-header {
  margin-top: 20px;
}
.linked-item-status {
  flex-wrap: wrap;
  display: inline-flex;
  float: right;
  align-items: center;
  line-height: 1;
}
.linked-item-status .topic-status-table {
  line-height: 1.5;
}
/* TABLES */
.program-summary-table {
  color: #321750;
  color: var(--text-black);
}
.program-summary-table > thead > tr > th:first-of-type {
  padding-left: 5px !important;
  padding-right: 21px;
}
.program-summary-table > tbody > tr > td:first-of-type {
  padding-left: 5px !important;
}
.program-summary-table > tbody > tr {
  height: 60px;
}
.select-topics-table {
  background-color: #fff;
  background-color: var(--bg-white);
  width: 22.5rem !important;
  line-height: 0;
}
.select-topics-table--advancing,
.select-topics-table--itinerary {
  width: 35rem !important;
}
.select-topics-table > tbody {
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  border-radius: 3px;
}
.select-topics-table > tbody > tr > td:first-of-type,
.select-topics-table--advancing > tbody > tr > td:nth-of-type(3),
.select-topics-table--itinerary > tbody > tr > td:nth-of-type(3) {
  padding: 19px 0 19px 14px !important;
  width: 55px;
}
.select-topics-table > tbody > tr:focus-within {
  box-shadow: 0 0 1px 2px #824FF9;
  box-shadow: var(--shadow-focus);
}
.select-topics-table--advancing > tbody > tr > td:nth-of-type(2) ~ td,
.select-topics-table--itinerary > tbody > tr > td:nth-of-type(2) ~ td {
  font-size: 12px;
}
.topic-status-table .topic-clickable {
  cursor: pointer;
}
.topic-status-table > thead > tr > th,
.topic-status-table > tbody > tr > td {
  padding: 3px 15px;
  text-align: center;
}
.topic-status-table {
  margin-bottom: 0;
}
@media (min-width: 1760px) {
  .topic-status-table {
    margin-right: 30px;
  }
}
.non-editable-contacts-table td {
  padding: 10px 15px;
}
.schedule-table,
.contacts-table,
.non-editable-contacts-table {
  margin-bottom: calc(1.225rem * 1.5);
  margin-bottom: calc(var(--margin-line) * 1.5);
}
.contacts-table td:last-child {
  vertical-align: middle;
}
.contacts-table .field:not(.field--invalid) {
  border: 0;
}
.contacts-table .field {
  background-color: white;
  margin-bottom: 0;
  padding-left: 15px;
  height: 45px;
  width: 100%;
}
.contacts-table,
.non-editable-contacts-table {
  background-color: #fff;
  background-color: var(--bg-white);
  font-size: 14px;
  width: 98%;
  border-collapse: collapse;
}
.schedule-table th,
.contacts-table th,
.non-editable-contacts-table th {
  white-space: nowrap;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 15px;
}
.schedule-table td,
.contacts-table td,
.non-editable-contacts-table td {
  border: 1px solid #E6E6E6;
  border: 1px solid var(--bg-inactive);
}
.contacts-table tr:not(.added-non-editable-program-item-contact) td:last-child button {
  margin-right: 15px;
}
.added-non-editable-program-item-contact td,
.schedule-table td {
  font-size: 13px;
  color: #333;
  color: var(--text-dark);
  padding: 10px 15px;
}
@media (max-width: 768px) {
  .non-editable-contacts-table td {
    padding: 5px 0;
  }
}
/*
external-pages includes css of pages that organizers share with third parties,
as they have the same CSS specifications.
*/
.event-insights__main,
.external-guest-list_main,
.external-optins_main,
.advanceForm__main,
.availForm__main,
.itinerary__main,
.itinerary-collection__main {
  min-height: 100vh;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background: linear-gradient(
    -12deg,
    #F6F9FC 0%,
    #F6F9FC 50%,
    #00F0FF 50%,
    #00F0FF 100%
  );
  background: linear-gradient(
    -12deg,
    var(--bg-external) 0%,
    var(--bg-external) 50%,
    var(--brand-cyan) 50%,
    var(--brand-cyan) 100%
  );
}
hr {
  width: 99.2%;
  margin-bottom: 20px;
  color: #47266C;
  color: var(--brand-purple)
}
.lang-menu {
  position: fixed;
  top: 50px;
  right: 14%;
  z-index: 999;
}
.event-insights-legend,
.advanceForm-legend,
.itinerary-desktop-legend,
.legend {
  background: white;
  max-width: 254px;
  width: 13%;
  position: fixed;
  border-width: 1px;
  border-style: solid;
}
.event-insights-legend-header,
.advanceForm-legend-header,
.itinerary-desktop-legend__menu,
.legend-header {
  padding: 10px 0 10px 0;
  display: flex;
  flex-flow: column nowrap;
}
.event-insights-legend,
.itinerary-desktop-legend,
.itinerary-desktop-legend,
.legend {
  margin-left: -15%;
  min-width: 210px;
}
.itinerary-desktop-legend > div:not(:last-child) {
  border-bottom: 1px solid #321750;
  border-bottom: 1px solid var(--brand-purple-dark);
}
.event-insights-legend-item,
.external-guest-list-legend-item,
.itinerary-desktop-legend__menu-item,
.legend-item {
  padding: 14px 28px 14px 28px;
}
.event-insights-legend-item,
.external-guest-list-legend-item,
.advanceForm-legend-item,
.itinerary-desktop-legend__menu-item,
.legend-item {
  text-decoration: none;
  color: #47266C;
  color: var(--brand-purple);
}
.event-insights-legend-item > span,
.external-guest-list-legend-item > span,
.advanceForm-legend-item > span,
.itinerary-desktop-legend__menu-item > span,
.legend-item > span {
  margin-right: 15px;
}
.event-insights-legend-item:hover,
.advanceForm-legend-item:hover,
.itinerary-desktop-legend__menu-item:hover,
.legend-item:hover {
  background: #FFEC00;
  background: var(--brand-yellow);
}
.event-insights-legend-footer,
.advanceForm-legend-footer,
.itinerary-desktop-legend__print-container,
.legend-footer {
  display: flex;
  flex-flow: column nowrap;
  background: white;
}
.event-insights-legend-footer div,
.advanceForm-legend-footer div,
.legend-footer div {
  margin: 15px 15px 0 15px;
}
.legend-print-button {
  background: #FFEC00;
  background: var(--brand-yellow);
  margin: 5px 10px;
}
.legend-last-modified {
  padding: 0 10px;
}
.event-insights-legend-footer span,
.advanceForm-legend-footer span,
.legend-footer span {
  margin: 15px;
}
.event-insights,
.external-guest-list,
.advanceForm,
.availForm,
.external-optins,
.itinerary,
.itinerary-collection {
  display: flex;
  max-width: 1140px;
  width: 59%;
  flex-flow: column nowrap;
  row-gap: 20px;
  margin: 50px 0 50px 0;
  align-self: flex-start;
  position: relative;
  overflow-x: hidden;
}
.event-insights-item,
.external-guest-list-item,
.external-optins-item,
.advanceForm-item,
.availForm-item,
.itinerary-item,
.itinerary-collection-item {
  background-color: #fff;
  background-color: var(--bg-white);
  border-width: 1px;
  border-style: solid;
}
.event-insights-item:first-child,
.advanceForm-item:first-child,
.availForm-item:first-child,
.itinerary-item:first-child {
  padding-top: 40px;
}
.event-insights-section-header,
.external-guest-list-section-header,
.advanceForm-section-header,
.availForm-section-header,
.itinerary-section-header,
.itinerary-collection-section-header,
.external-optins-section-header {
  color: white;
}
.advanceForm-topic-section-header,
.availForm-topic-section-header,
.itinerary-topic-section-header {
  background: #311B50;
}
.external-guest-list-section-header,
.external-optins-section-header {
  padding: 10px 10px;
}
.event-insights-section-header,
.advanceForm-section-header,
.advanceForm-topic-section-header,
.availForm-section-header,
.availForm-topic-section-header,
.itinerary-section-header,
.itinerary-topic-section-header,
.itinerary-collection-section-header {
  margin-bottom: 10px;
  padding: 10px 10px;
}
.eventInsights__header-image img,
.external-guest-list__header-image img,
.advanceForm__header-image img,
.availForm__header-image img,
.itinerary__header-image img,
.itinerary-collection__header-image img,
.external-optins__header-image img {
  max-width: 100%;
  max-height: 520px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.organization-logo {
  max-width: 200px;
}
@media (min-width: 768px) {
.organization-logo {
    float: right
}
  }
.event-insights__header-info,
.advanceForm__header-info,
.availForm__header-info,
.itinerary__header-info,
.itinerary-collection__header-info,
.external-optins__header-info {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.advanceForm__topic-section,
.itinerary__topic-section {
  padding-bottom: 40px;
}
.advanceForm__topic-section .response-file {
  margin-bottom: 20px;
}
.itinerary .schedule-table,
.itinerary__contact-table {
  margin-left: 40px;
  margin-right: 40px;
}
.public-file-icon {
  font-size: 30px;
  margin-right: 15px;
}
.event-insights-section-header,
.event-insights__header-info,
.event-insights-item-content,
.external-guest-list-section-header,
.advanceForm__text-item,
.advanceForm-file-link,
.advanceForm__response-item,
.advanceForm__file-response-item,
.advanceForm-section-header,
.advanceForm-topic-section-header,
.advanceForm__header-info,
.availForm__header-info,
.itinerary__text-item,
.itinerary-file-link,
.itinerary__event-info-tables,
.itinerary-section-header,
.itinerary-topic-section-header,
.itinerary__header-info,
.itinerary-collection__header-info,
.itinerary-collection__intro,
.itinerary-collection__itineraries,
.itinerary-collection-section-header,
.external-optins-section-header,
.external-optins__header-info {
  padding-left: 40px;
  padding-right: 40px;
}
.advanceForm__file-response-item {
  max-width: 50%;
}
.file-link {
  line-break: anywhere;
  max-width: calc(100% - 30px);
}
.advanceForm__response-item .field {
  color: #321750;
  color: var(--text-black);
}
@media only screen and (max-width: 1300px) {
  .availForm {
    width: 85%;
  }
}
@media only screen and (max-width: 1400px) {
  .event-insights,
  .advanceForm,
  .itinerary,
  .itinerary-collection {
    margin-right: 5%;
    width: 65%;
  }

  .lang-menu {
    right: 9%;
  }

  .event-insights__main,
  .advanceForm__main,
  .itinerary__main,
  .itinerary-collection__main {
    align-items: flex-end;
    justify-content: end;
  }

  .event-insights-legend,
  .advanceForm-legend,
  .itinerary-desktop-legend,
  .legend {
    margin-left: -250px !important;
  }
}
/* Itinerary specific styling */
.itinerary-desktop-legend__print-container {
  gap: 10px
}
.itinerary-desktop-legend__print-container button {
  background: #FFEC00;
  background: var(--brand-yellow);
  width: 100%;
}
.itinerary-desktop-legend__stager-logo,
.itinerary-desktop-legend__stager-logo a {
  display: flex;
  align-items: center;
}
.itinerary-desktop-legend__print-container,
.itinerary-desktop-legend__stager-logo {
  padding: 16px 28px;
}
.itinerary-desktop-legend__stager-logo a {
  width: 8.5rem;
  margin: 0;
}
.itinerary-desktop-legend__stager-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.itinerary-collection__mobile-extra-header,
.itinerary-mobile-header {
  height: 60px !important;
  margin-top: -60px;
}
.itinerary-mobile-header--extended {
  height: 100px !important;
  margin-top: -100px !important;
}
.itinerary-mobile-header__menu,
.itinerary-mobile-header__back {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.itinerary-mobile-header__menu {
  height: 60px;
  margin: 0 20px;
  justify-content: space-between;
}
.itinerary-mobile-header__back {
  height: 40px;
  padding: 0 20px;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.desktop-legend__back {
  padding: 16px 28px;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.desktop-legend__back a,
.itinerary-mobile-header__back a {
  text-decoration: none;
  color: #fff;
  color: var(--bg-white);
  display: flex;
  align-items: center;
}
.desktop-legend__back i,
.itinerary-mobile-header__back i {
  color: #fff;
  color: var(--bg-white);
  margin-right: 8px;
}
.desktop-legend__back i {
  font-size: 1.6em;
}
.itinerary-item .schedule-container {
  padding: 0 40px 40px 40px;
}
.itinerary-item h2 {
  margin: 0;
  font-size: 16px
}
.itinerary__event-info-tables {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
}
.itinerary__event-info-tables table {
  width: 50%;
}
.itinerary__event-info-tables table tbody {
  width: 100%;
  display: table;
}
.itinerary__event-info-tables table tr {
  border-top: 1px solid #E6E6E6;
  border-top: 1px solid var(--bg-inactive);
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-inactive);
}
.itinerary__event-info-tables table td {
  padding: 15px;
}
.itinerary__event-info-tables table th {
  padding: 15px;
  font-weight: bold;
}
.itinerary__contact-table {
  overflow-x: auto;
}
.itinerary__contact-table .contacts-table {
  width: 100%;
}
.itinerary .production-schedule {
  overflow-x: auto;
}
/* Itinerary collection specific styling */
.itinerary-collection__header {
  background-color: #fff;
  background-color: var(--bg-white);
}
.itinerary-collection__header .h1,
.itinerary-collection__header .h2 {
  margin-bottom: 0;
}
.itinerary-collection-section-header h2 {
  margin: 0;
  font-size: 16px
}
.itinerary-collection__intro {
  padding-top: 30px;
  padding-bottom: 10px;
}
.itinerary-collection__itineraries,
.itinerary-collection__itinerary,
.itinerary-collection__itinerary-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.itinerary-collection__itineraries {
  padding-top: 20px;
  padding-bottom: 30px;
  gap: 10px
}
.itinerary-collection__itinerary {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 1px solid #DDDDDD;
  border: 1px solid var(--bg-lightest-gray);
}
.itinerary-collection__itinerary:hover {
  background-color: #E6E6E6;
  background-color: var(--action-secondary-hover);
}
.itinerary-collection__itineraries a,
.itinerary-collection__itineraries a:visited,
.itinerary-collection__itineraries a:focus,
.itinerary-collection__itineraries a:active {
  color: inherit;
  text-decoration: none;
}
.itinerary-collection__itinerary-info {
  gap: 4px;
}
.itinerary-collection__itinerary-info p {
  margin-bottom: 0;
}
.itinerary-collection__itinerary-info p:nth-of-type(1) {
  font-weight: bold;
}
.itinerary-collection__itinerary-info p:nth-of-type(3) {
  color: #919191;
  color: var(--text-gray);
}
.itinerary-collection__itinerary-redirect {
  flex: auto 0 0;
  font-size: 32px;
}
.itinerary-collection__footer {
  display: block;
  width: 100%;
}
.itinerary-collection__footer img {
  float: left;
  width: 160px;
}
.itinerary-collection__footer-image--dark {
  display: block;
}
.itinerary-collection__footer-image--light {
  display: none;
}
/* Advance form specific styling */
.advanceForm-legend-item {
  padding: 14px 10px 14px 28px;
}
.advanceForm-legend-item .fas {
    color: #47266C;
    color: var(--brand-purple)
  }
.guest-list {
  padding: 16px 24px 24px 24px;
}
@media (min-width: 768px) {
.guest-list {
    padding: 40px
}
  }
.guest-list-table-guests-col {
  width: 108px;
}
@media (min-width: 768px) {
.guest-list-table-guests-col {
      width: auto
}
    }
.guest-list-guest-actions-div {
  display: flex;
  flex-wrap: nowrap;
}
.guest-list-remove-guest,
.guest-list-add-guest {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.guest-list-remove-guest--disabled,
.guest-list-add-guest--disabled {
  background-color: #988DA7;
}
.guest-list-remove-guest--disabled,
.guest-list-add-guest--disabled,
.guest-list-remove-guest,
.guest-list-add-guest {
  color: white;
  padding: 0;
  font-weight: 700;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  float: left;
  width: 24px;
  line-height: 24px;
  text-align: center;
  border: none;
}
.guest-list-guest-amount {
  float: left;
  width: 24px;
  height: 24px;
  text-align: center;
  padding: 0;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 24px;
  margin-left: 10px;
  margin-right: 10px;
}
.advanceForm-item:last-child {
  margin-bottom: 30px;
}
.advanceForm__topic-section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.advanceForm__topic-section .advanceForm__advance-schedule-section {
  display: flex;
  flex-flow: column nowrap;
  box-sizing: inherit;
}
.advanceForm__topic-section > .advanceForm-section__item {
  flex: 1 0 50%;
}
.advanceForm-section__item > textarea {
  width: 100%;
  min-height: 8em;
  height: 16em;
  resize: vertical;
}
.advanceForm__text-item {
  overflow-wrap: break-word;
  width: 40%;
}
.advanceForm__advance-schedule {
  box-sizing: inherit;
  flex: 1 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
}
.itinerary-topic-section-header,
.advanceForm-topic-section-header {
  display: flex;
  justify-content: space-between;
}
.external-guest-list-item:first-child h2 {
  font-size: 3em;
}
.external-optins-option {
  width: 55%;
  display: flex;
  justify-content: space-between;
  margin: 9px 0;
}
@media (max-width: 768px) {
.external-optins-option {
    width: 100%;
}
  }
.external-optins-option {
  align-items: center;
}
.external-optins-option input[type="checkbox"] {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
}
.external-guest-list-item textarea {
  resize: none;
  border: #321750 1px solid;
  border: var(--brand-purple-dark) 1px solid;
  width: 100%;
}
.external-guest-list-item:first-child,
.external-guest-list-add {
  padding: 32px 40px;
}
.external-guest-list-add textarea {
  padding: 24px;
}
.external-guest-list-section-header h2 {
  margin-bottom: 5px;
}
.itinerary-topic-section-header h2,
.advanceForm-topic-section-header h2,
.availForm-topic-section-header h2 {
  margin-bottom: 0;
  color: white;
}
.advanceForm-section__confirmed-info {
  padding-bottom: 2px;
  align-self: flex-end;
}
.advanceForm-section__confirmed-info span.fas {
  font-size: 20px;
  width: 25px;
  vertical-align: middle;
  color: #51BC80;
}
.advanceForm-section__confirmed-info span:not(.fas) {
  color: white;
}
.itinerary-topic-section-header span.fas:not(.fa-circle-check),
.itinerary-topic-section-header span.far:not(.fa-circle-check),
.advanceForm-topic-section-header span.fas:not(.fa-circle-check),
.advanceForm-topic-section-header span.far:not(.fa-circle-check),
.availForm-topic-section-header span.fas:not(.fa-circle-check),
.availForm-topic-section-header span.far:not(.fa-circle-check) {
  color: white
}
.advanceForm__file-response-item .pretty-file-input {
  width: 100%;
  min-height: 8em;
  border: 2px solid gray;
  border-radius: 2px;
  background-color: #F6F9FC;
  background-color: var(--bg-external);
  cursor: pointer;
}
.advanceForm__file-response-item .pretty-file-input > * {
  cursor: pointer;
}
.advanceForm__file-response-item .pretty-file-input .file-input {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 80%;
  outline: none;
  opacity: 0;
}
.advanceForm__file-response-item .pretty-file-input p {
  position: relative;
  text-align: center;
  top: 40px;
}
/* MOBILE styling */
.event-insights-item-mobile-scrollable {
  display: block;
  overflow: auto;
}
.event-insights-mobile-header,
.external-guest-list-mobile-header,
.advanceForm-mobile-header,
.itinerary-mobile-header,
.itinerary-mobile-header--extended,
.itinerary-collection__mobile-extra-header,
.mobile-header {
  display: block;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  position: fixed;
  overflow: hidden;
  z-index: 10;
}
.event-insights-mobile-header,
.external-guest-list-mobile-header,
.advanceForm-mobile-header,
.mobile-header {
  margin: 0 auto;
  height: 60px !important;
}
.event-insights-mobile-header > span,
.external-guest-list-mobile-header > span,
.advanceForm-mobile-header > span,
.itinerary-mobile-header > span,
.itinerary-collection__mobile-extra-header > span,
.mobile-header > span {
  float: right;
  margin: 20px;
  color: #47266C;
  color: var(--brand-purple);
}
#eventInsightsSidebarMenu,
#externalGuestListSidebarMenu,
#advanceFormSidebarMenu,
#itinerarySidebarMenu {
  height: 100%;
  position: fixed;
  left: 0;
  width: 250px;
  margin-top: 60px;
  transform: translateX(-250px);
  transition: transform 250ms ease-in-out;
  background: white;
  z-index: 98;
  overflow-y: scroll;
}
#itinerarySidebarMenu {
  top: 0;
}
.eventInsightsSidebarMenuInner,
.externalGuestListSidebarMenuInner,
.advanceFormSidebarMenuInner,
.itinerary-mobile-header__menu-content {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.eventInsightsSidebarMenuInner li,
.externalGuestListSidebarMenuInner li,
.advanceFormSidebarMenuInner li,
.itinerary-mobile-header__menu-content li {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.eventInsightsSidebarMenuInner li:last-child,
.externalGuestListSidebarMenuInner li:last-child,
.advanceFormSidebarMenuInner li:last-child,
.itinerary-mobile-header__menu-content li:last-child {
  margin-bottom: 60px;
}
.eventInsightsSidebarMenuInner li a > span,
.externalGuestListSidebarMenuInner li a > span,
.advanceFormSidebarMenuInner li a > span,
.itinerary-mobile-header__menu-content li a > span {
  margin-right: 15px;
}
.eventInsightsSidebarMenuInner li a,
.externalGuestListSidebarMenuInner li a,
.advanceFormSidebarMenuInner li a,
.itinerary-mobile-header__menu-content li a {
  cursor: pointer;
  color: #47266C;
  color: var(--brand-purple);
  text-decoration: none;
}
.eventInsightsSidebarMenuInnerLogo,
.externalGuestListSidebarMenuInnerLogo,
.advanceFormSidebarMenuInnerLogo,
.itinerary-mobile-header__menu-logo {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 4.5rem;
}
.eventInsightsSidebarMenuInnerLogoLink,
.externalGuestListSidebarMenuInnerLogoLink,
.advanceFormSidebarMenuInnerLogoLink,
.itinerary-mobile-header__menu-logo-link {
  width: 7.5rem;
  height: auto;
  position: absolute;
  bottom: 3.7rem;
}
.eventInsightsLogo,
.advanceFormLogo {
  width: 8.5rem;
  height: auto;
  margin-left: 25%;
}
@media (max-width: 1800px) {
.eventInsightsLogo,
.advanceFormLogo {
    margin-left: 15%
}
  }
.eventInsightsLogoLink,
.advanceFormLogoLink {
  display: block;
  margin-left: 1rem;
  margin-top: 0.5rem;
  bottom: 0.5rem;
  position: relative;
  width: 8.5rem;
}
#openEventInsightsSidebarMenu:checked ~ #eventInsightsSidebarMenu,
#openExternalGuestListSidebarMenu:checked ~ #externalGuestListSidebarMenu,
#openAdvanceFormSidebarMenu:checked ~ #advanceFormSidebarMenu,
#openItinerarySidebarMenu:checked ~ #itinerarySidebarMenu {
  transform: translateX(0);
}
#openEventInsightsSidebarMenu,
#openExternalGuestListSidebarMenu,
#openAdvanceFormSidebarMenu,
#openItinerarySidebarMenu {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}
.eventInsightsSidebarIconToggle,
.externalGuestListSidebarIconToggle,
.advanceFormSidebarIconToggle,
.itinerary-mobile-header__menu-toggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  height: 16px;
  width: 22px;
}
.eventInsightsSidebarIconToggle,
.externalGuestListSidebarIconToggle,
.advanceFormSidebarIconToggle {
  position: fixed;
  top: 22px;
  left: 20px;
}
.event-insights-menu-spinner,
.external-guest-list-menu-spinner,
.advanceForm-menu-spinner,
.itinerary-mobile-header__menu-spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: fixed;
  height: 3px;
  width: 100%;
  background-color: #47266C;
  background-color: var(--brand-purple);
}
.event-insights-menu-horizontal,
.external-guest-list-menu-horizontal,
.advanceForm-menu-horizontal,
.itinerary-mobile-header__menu-spinner--horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.event-insights-menu-diagonal.part-1,
.external-guest-list-menu-diagonal.part-1,
.advanceForm-menu-diagonal.part-1,
.itinerary-mobile-header__menu-spinner--diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.event-insights-menu-diagonal.part-2,
.external-guest-list-menu-diagonal.part-2,
.advanceForm-menu-diagonal.part-2,
.itinerary-mobile-header__menu-spinner--diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
#openEventInsightsSidebarMenu:checked ~ .eventInsightsSidebarIconToggle > .event-insights-menu-horizontal,
#openExternalGuestListSidebarMenu:checked ~ .externalGuestListSidebarIconToggle > .external-guest-list-menu-horizontal,
#openAdvanceFormSidebarMenu:checked ~ .advanceFormSidebarIconToggle > .advanceForm-menu-horizontal,
#openItinerarySidebarMenu:checked ~ .itinerary-mobile-header__menu-toggle > .itinerary-mobile-header__menu-spinner--horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}
#openEventInsightsSidebarMenu:checked ~ .eventInsightsSidebarIconToggle > .event-insights-menu-diagonal.part-1,
#openExternalGuestListSidebarMenu:checked ~ .externalGuestListSidebarIconToggle > .external-guest-list-menu-diagonal.part-1,
#openAdvanceFormSidebarMenu:checked ~ .advanceFormSidebarIconToggle > .advanceForm-menu-diagonal.part-1,
#openItinerarySidebarMenu:checked ~ .itinerary-mobile-header__menu-toggle > .itinerary-mobile-header__menu-spinner--diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}
#openEventInsightsSidebarMenu:checked ~ .eventInsightsSidebarIconToggle > .event-insights-menu-diagonal.part-2,
#openExternalGuestListSidebarMenu:checked ~ .externalGuestListSidebarIconToggle > .external-guest-list-menu-diagonal.part-2,
#openAdvanceFormSidebarMenu:checked ~ .advanceFormSidebarIconToggle > .advanceForm-menu-diagonal.part-2,
#openItinerarySidebarMenu:checked ~ .itinerary-mobile-header__menu-toggle > .itinerary-mobile-header__menu-spinner--diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -9px;
}
#updateNotificationContainer {
  height: inherit;
  margin-left: 50px;
  margin-right: 15px;
  margin-top: 20px;
  float: right;
}
.external-optins-section {
  padding: 25px 45px;
}
.external-optins-section-title {
  margin-bottom: 0;
}
.pre-line{
  white-space: pre-line;
}
.advanceForm-mobile-menu,
.mobile-menu {
  display: none;
}
.event-insights-mobile-header,
.external-guest-list-mobile-header,
.advanceForm-mobile-header,
.itinerary-mobile-header,
.itinerary-mobile-header--extended,
.itinerary-collection__mobile-extra-header,
.mobile-header {
  display: none;
}
@media only screen and (max-width: 768px) {
  .powered-by-stager,
  .event-insights-legend,
  .advanceForm-legend,
  .itinerary-desktop-legend,
  .legend {
    display: none;
  }

  .lang-menu {
    top: 15px;
    margin-right: 0;
    right: 20px;
  }

  .event-insights,
  .external-guest-list,
  .advanceForm,
  .availForm,
  .itinerary,
  .itinerary-collection,
  .external-optins {
    row-gap: 0;
    margin-right: 0;
    width: 100%;
  }

  .external-optins_main {
    background: white;
  }

  .availForm {
    margin-top: 0;
  }

  .event-insights-item,
  .external-guest-list-item,
  .advanceForm-item,
  .itinerary-item,
  .itinerary-collection-item,
  .availForm-item,
  .external-optins-item {
    border: none;
  }


  .external-optins-optin {
    border: 1px solid;
    margin: 6px;
  }


  .itinerary-collection,
  .itinerary--normal-header {
    margin-top: 60px;
  }

  .itinerary--extended-header {
    margin-top: 100px;
  }

  #itinerarySidebarMenu.extended {
    margin-top: 100px !important;
  }

  .itinerary,
  .itinerary-collection {
    margin-bottom: 0;
  }

  .itinerary-collection__intro {
    padding-top: 0;
    padding-bottom: 0;
  }

  .itinerary-collection__header h2 {
    display: none;
  }

  .itinerary-collection__footer {
    background-color: #321750;
    background-color: var(--brand-purple-dark);
    padding: 20px 18px;
  }

  .itinerary-collection__footer-image--dark {
    display: none;
  }

  .itinerary-collection__footer-image--light {
    display: block;
  }

  .itinerary-collection__itinerary {
    padding: 16px;
  }

  .advanceForm-item:last-child {
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .advanceForm-section__item > textarea {
    max-width: 270px;
  }

  .itinerary-item .schedule-container {
    padding: 0 20px 20px 20px;
  }

  .itinerary__event-info-tables {
    flex-wrap: wrap;
    gap: 0;
  }

  .itinerary__event-info-tables table {
    width: 100%;
    margin-bottom: -1px;
  }

  .itinerary__event-info-tables table:last-of-type {
    margin-bottom: 30px;
  }

  .itinerary__event-info-tables table tr th:first-of-type {
    width: 40%;
  }

  .external-optins-section {
    padding: 25px 30px;
  }


  .event-insights-section-header,
  .event-insights__header-info,
  .external-guest-list-section-header,
  .advanceForm__text-item,
  .advanceForm-file-link,
  .advanceForm__response-item,
  .advanceForm__file-response-item,
  .advanceForm-section-header,
  .advanceForm-topic-section-header,
  .advanceForm__header-info,
  .availForm__header-info,
  .itinerary__text-item,
  .itinerary-file-link,
  .itinerary__event-info-tables,
  .itinerary-section-header,
  .itinerary-topic-section-header,
  .itinerary__header-info,
  .itinerary-collection__header-info,
  .itinerary-collection__intro,
  .itinerary-collection__itineraries,
  .itinerary-collection-section-header,
  .external-optins-section-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .itinerary .schedule-table,
  .itinerary__contact-table {
    margin-left: 20px;
    margin-right: 20px;
  }

  .advanceForm-mobile-menu,
  .mobile-menu {
    display: block;
  }

  .event-insights-mobile-header,
  .external-guest-list-mobile-header,
  .advanceForm-mobile-header,
  .itinerary-mobile-header,
  .itinerary-mobile-header--extended,
  .itinerary-collection__mobile-extra-header,
  .mobile-header {
    display: block;
  }
}
@media print {
  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    margin: 0;
  }

  .itinerary {
    width: 90%;
    margin-left: 20px;
  }

  .itinerary-item {
    margin: 0 0 16px 0;
  }

  .itinerary__header-image img {
    margin: 15px 0 0 0;
  }

  .itinerary__topic-section,
  .itinerary-item .itinerary__text-item {
    padding: 0;
    margin: 0 0 12px 0;
  }

  .itinerary__header-info {
    padding: 10px 0 0 0;
    margin: 0;
  }

  .public-file-icon {
    font-size: 15px;
  }

  .itinerary-item .schedule-container {
    margin: 0 0 10px 0;
    padding: 0;
  }

  p,
  .itinerary__topic-section a,
  .itinerary__header-info h3,
  .itinerary__event-info-tables,
  .itinerary__event-info-tables table,
  .itinerary__event-info-tables table td,
  .itinerary__event-info-tables table th,
  .itinerary__contact-table {
    margin: 0;
    padding: 0;
  }

  .itinerary__contact-table table td {
    border: 0;
    padding: 0;
  }

  .external-guest-list-section-header,
  .itinerary-section-header,
  .itinerary-topic-section-header {
    background: white;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
    border-bottom: 1px solid #E6E6E6;
    border-bottom: 1px solid var(--bg-inactive);
  }

  .itinerary-section-header h2,
  .itinerary-topic-section-header h2 {
    color: #47266C;
    color: var(--brand-purple);
    font-weight: bold;
  }

  .itinerary__event-info-tables {
    flex-flow: column nowrap;
    gap: 0;
  }

  .itinerary__event-info-tables table {
    width: 100%;
  }

  .itinerary__event-info-tables table th {
    width: 20%;
  }

  .itinerary__event-info-tables table tr {
    border-top: 0;
    border-bottom: 0;
  }

  .itinerary__topic-section,
  .itinerary-item .itinerary__text-item,
  .itinerary__event-info-tables table td,
  .itinerary__event-info-tables table th,
  .itinerary-item .schedule-container,
  .itinerary-item .schedule-container input,
  .itinerary__contact-table table td {
    font-size: 11px;
  }

  .schedule__row .schedule__cell:nth-child(3) {
    flex-basis: 45%;
  }

  .itinerary__contact-table table th {
    display: none;
  }
}
@media only screen and (max-width: 350px) {
  #updateNotificationContainer {
    margin-top: 10px
  }
}
.schedule-preview {
  font-size: 1rem;
}
.schedule-preview__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5em;
}
.schedule-preview th {
  padding: 0.25em 0;
}
.schedule-preview .smaller-font {
  font-size: 0.8em !important;
}
.schedule-preview__table--event,
.schedule-preview__table--schedule {
  white-space: wrap !important;
}
.schedule-preview__table--event {
  margin-bottom: 0 !important;
}
.schedule-preview__table--event td {
  width: 50%;
  border: none !important;
  padding: 0.25rem 0;
  vertical-align: top !important;
}
.schedule-preview__table-column--event {
  display: flex;
  flex-direction: column;
}
.schedule-preview__table-column--event > div {
  display: flex;
  flex-direction: row;
}
.schedule-preview__table-column--event div p:first-child {
  color: #321750;
  color: var(--text-black);
}
.schedule-preview__table-column--event p {
  font-size: 1em;
  margin-bottom: .375em !important;
}
.schedule-preview__table--schedule td {
  border: none !important;
  padding: 1em 1em 1em 0;
  vertical-align: top !important;
}
.schedule-preview__table--schedule div {
  display: flex;
  flex-direction: column;
}
.schedule-preview__table--schedule p {
  margin-bottom: 0 !important;
}
.schedule-preview__table-sub-header--schedule th {
  border-bottom: none !important;
}
.schedule-preview__table-sub-header--schedule:not(:first-child) th {
  padding: 1em 0 .25em 0 !important;
}
.schedule-preview__table-sub-header--schedule:first-child th {
  padding: 0.25em 0 .25em 0 !important;
}
.schedule-preview__labels {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  padding-top: 0.25rem;
  gap: 0.25rem;
}
.schedule-preview__label {
  border-radius: 0.75rem;
  border: 1px solid black;
  padding: 0.1rem 0.5rem;
}
.schedule-preview__print-footer, .schedule-preview__print-footer-space {
  display: none;
}
.gap {
  gap: 1em;
}
@media print {
  @page {
    margin-top: 0;
    margin-bottom: 0;
  }
  body {
    padding-top: 1cm;
  }

  .schedule-preview {
    font-size: 0.8em;
  }
  .schedule-preview .view__title, .view__subtitle {
    margin-bottom: 0;
  }
  .schedule-preview .h2 {
    margin: 0;
  }

  .schedule-preview__container {
    gap: 0;
  }

  .schedule-preview__container div {
    border: none !important;
    padding: 0 !important;
  }

  .schedule-preview__table--event,
  .schedule-preview__table--schedule {
    max-width: 100% !important;
  }

  .schedule-preview__table--event td {
    padding: 0.5rem 0;
  }

  .schedule-preview__table-header {
    height: 2cm;
    padding: 0 0 0.25em 0 !important;
    vertical-align: bottom !important;
  }

  .schedule-preview__table-sub-header--schedule:first-child th {
    padding: 0.5em 0 .25em 0 !important;
  }

  .schedule-preview__print-footer-space {
    height: calc(1cm + 2rem + 0.5rem);
  }

  .schedule-preview__print-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 1cm;
    left: 0;
    height: 2rem;
    width: 100%;
    color: #321750 !important;
    color: var(--brand-purple-dark) !important;
  }
  .schedule-preview__print-footer__logo {
    height: 100%;
    display: flex;
  }
  .schedule-preview__print-footer__logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }

  .schedule__cell {
    min-width: 8rem;
  }
}
@media print {
  .itinerary__text-item p {
    margin-bottom: 12px;
    white-space: pre-line;
  }

  .itinerary__text-item br {
    display: none;
  }
}
@media print {
  .program-summary-section p {
    margin-bottom: 12px;
  }

  .table-default td,
  .table-default th {
    overflow: hidden !important;
    text-overflow: ellipsis;
  }

  .table-default {
    width: 125% !important;
  }
}
* {
  box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: inherit
}
input:not(:disabled):focus,
textarea:not(:disabled):focus,
select:not(:disabled):focus,
button:not(:disabled):focus,
option:not(:disabled):focus,
area:not(:disabled):focus,
div:not(:disabled):focus,
span:not(:disabled):focus,
collapse-content:not(:disabled):focus,
custom-select:not(:disabled):focus
{
  outline: none;
  box-shadow: 0 0 1px 2px #824FF9;
  box-shadow: var(--shadow-focus);
}
[readonly]:focus {
  outline: none;
  box-shadow: none !important;
}
.Select-control *:focus {
  box-shadow: none !important;
}
[hidden] {
  display: none;
}
.alt-hidden {
  visibility: hidden !important;
}
/* Components */
.app-menu__list {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.app-menu__list .app-menu__list {
  border-left: 2px solid #FFEC00;
  border-left: var(--border-active);
  padding-left: 1.5rem;
  margin-left: 2.875rem;

  animation-duration: .8s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);
  animation-name: slideDownMenu;
}
.app-menu__list-item {
  margin: 1.5rem 0;
}
.app-menu__list-item .app-menu__list-item {
  margin: 1rem 0;
}
.app-menu__list-item > a {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.app-menu__list-item > a:active,
.app-menu__list-item--active > a,
.app-menu__list-item--active .app-menu__list-item-icon i {
  color: #FFEC00;
  color: var(--action-primary);
}
.app-menu__list-item:not(.app-menu__list-item--active):hover > a,
.app-menu__list-item:not(.app-menu__list-item--active):hover .app-menu__list-item-icon i {
  color: #FFF680;
  color: var(--brand-yellow-light);
}
.app-menu__list-item-icon {
  display: inline-block;
  width: 2.625rem;
  text-align: center;
}
.app-menu__list-item-icon i {
  color: #fff;
  color: var(--text-light);
  font-size: 1rem;
}
/* Toggle behaviour */
.app-menu__list-item .app-menu__list {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.app-menu__list-item--open .app-menu__list {
  display: block;
  opacity: 1;
  visibility: visible;
}
.app-sidebar {
  --narrow: 4.625rem;
  --wide: 14rem;
  width: var(--wide);
  height: 100vh;
  max-height: inherit;
  flex: 0 0 auto;
  font-size: 0.9375rem;
}
.app-sidebar__container {
  width: var(--wide);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  color: #fff;
  color: var(--text-light);
  box-shadow: 0 0 32px 8px rgba(117, 117, 117, .3);
  z-index: 999;
  z-index: var(--overlay-high);
  height: 100%;
  overflow-x: hidden;
  transition: all .15s ease;
  position: relative;
  z-index: 5;
}
.app-sidebar__production {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.app-sidebar__test {
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
}
.app-sidebar__impersonate {
  background-color: #F94F4F;
  background-color: var(--brand-red);
}
.app-sidebar__localhost {
  background-color: #37CC84;
  background-color: var(--brand-green);
}
.app-sidebar__logo {
  display: flex;
  flex: 0 0 auto;
  padding: 2rem 1rem 1rem;
  width: var(--wide);
  max-width: 100%;
}
.app-sidebar a {
  text-decoration: none;
}
.app-sidebar__app-menu {
  flex: 1 1 100%;
  padding: 0 1rem 1rem;
  overflow-y: hidden;
  animation-duration: .4s;
  animation-delay: .1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}
.app-sidebar__app-menu:hover {
  overflow-y: auto;
}
.app-sidebar.app-sidebar__is-collapsed .app-sidebar__collapse-menu-link {
  display: none;
}
.app-sidebar:not(.app-sidebar__is-collapsed) .app-sidebar__collapse-menu-link {
  position: absolute;
  top: 2.4rem;
  right: -1rem;
  opacity: 1;
  transition: opacity 0.1s;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  line-height: 1.9rem;
  text-align: left;
  vertical-align: middle;
}
@media (min-width: 1080px) {
.app-sidebar:not(.app-sidebar__is-collapsed) .app-sidebar__collapse-menu-link {
    opacity: 0
}
  }
.app-sidebar__collapse-menu-link i {
  padding-left: .3rem;
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 1.2rem;
  vertical-align: middle;
}
.app-sidebar:not(.app-sidebar__is-collapsed):hover .app-sidebar__collapse-menu-link {
  opacity: 1;
}
.app-sidebar:hover .app-sidebar__container {
  z-index: 999;
  z-index: var(--overlay-high);
}
.app-sidebar__extend-menu-link {
  display: inline-block;
  position: absolute;
  top: 2.3rem;
  left: 4.5rem;
  z-index: 8;

  color: #DADADA;

  color: var(--additional-light-grey);
  border-bottom-right-radius: 2.3rem;
  border-top-right-radius: 2.3rem;
  
  margin: 0 1em 1em 0;
  width: 1.15rem;
  height: 2.3rem;
  
  line-height: 2.1rem;
  text-align: center;
  vertical-align: middle;
}
.app-sidebar__extend-menu-link i {
  color: #fff;
  color: var(--text-light);
  font-size: 1.2rem;
  vertical-align: middle;
  padding-right: .3rem;
}
.app-sidebar__app-user {
  width: var(--wide);
}
.app-sidebar__app-user {
  justify-self: self-end;
}
/* If sidebar is collapse, change width to narrow */
.app-sidebar__is-collapsed,
.app-sidebar__is-collapsed .app-sidebar__container {
  width: var(--narrow);
}
/* Hide narrow menu element if sidebar is not shrunk */
.app-sidebar:not(.app-sidebar__is-collapsed) .app-sidebar__app-menu--narrow {
  display: none;
}
/* Hide certain elements in shrunk mode */
.app-sidebar__is-collapsed .app-sidebar__app-menu--wide,
.app-sidebar__is-collapsed .app-sidebar__logo-text,
.app-sidebar__is-collapsed .app-sidebar__app-user {
  display: none;
}
/* If the side menu is shrunk, include a hover state */
.app-sidebar__is-collapsed-hover:hover .app-sidebar__container {
  position: fixed;
  width: var(--wide);
}
.app-sidebar__is-collapsed-hover:hover .app-sidebar__app-menu--narrow {
  display: none;
}
.app-sidebar__is-collapsed-hover:hover .app-sidebar__app-menu--wide,
.app-sidebar__is-collapsed-hover:hover .app-sidebar__app-user,
.app-sidebar__is-collapsed-hover:hover .app-sidebar__logo-text {
  display: block;
}
.ui-datepicker  {
  display: none;
  z-index: 999 !important;
}
.date-picker__overlay,
.ui-datepicker {
  position: absolute;
  background: #fff;
  background: var(--bg-white);
  box-shadow: 0 10px 16px rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-popover);
  padding-bottom: 1rem;
  width: 20rem;
  /* The datepicker popup should always be above all the other content on the page */
  z-index: 1000 !important;
}
.date-picker__overlay-top {
  top: 0px;
}
.date-picker__header,
.ui-datepicker-header {
  background: #321750;
  background: var(--bg-dark);
  color: #fff;
  color: var(--text-light);
  padding: 0 1rem;
  font-weight: bold;
}
.ui-datepicker-calendar,
.date-picker__calender {
  width: 100%;
  border-spacing: 0;
}
.ui-datepicker-calendar {
  margin-bottom: 1em;
}
.date-picker__day-header,
.ui-datepicker-calendar th {
  text-align: center;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  font-weight: bold;
  padding: .75rem;
}
.date-picker__calender td {
  text-align: center;
}
.date-picker__day,
.ui-datepicker-calendar a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  font-size: inherit;
  display: inline-block;
  margin: .75rem .25rem .25rem .25rem;
  padding: .25rem .5rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  border-radius: 2px;
  min-width: 2rem;
}
.date-picker__day:hover,
.ui-datepicker-calendar a:hover {
  background: #E6E6E6;
  background: var(--action-secondary-hover);
}
.date-picker__day--selected,
.date-picker__day--selected:hover,
.ui-datepicker-calendar a:active,
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-active:hover {
  background: #FFEC00;
  background: var(--action-primary);
}
/* Select boxes */
.date-picker__month,
.date-picker__year,
.ui-datepicker-month,
.ui-datepicker-year {
  display: inline;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  border: none;
  margin: 1em 0;
  padding-right: 0;
}
#date-picker-month option,
#date-picker-year option,
.ui-datepicker-month option,
.ui-datepicker-year option {
  color: #333;
  color: var(--text-dark);
}
.date-picker__prev,
.date-picker__next,
.ui-datepicker-prev,
.ui-datepicker-next {
  min-width: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* Reset button appearance */
  background: none; /* Reset button appearance */
  border: none; /* Reset button appearance */
  position: absolute;
  top: .9rem;
  right: 1rem;
}
.date-picker__prev,
.ui-datepicker-prev {
  right: 5rem;
}
.date_picker__disabled {
  color: #ccc !important;
}
/*
 * Hide previous/next text, replace with buttons.
 * Ideally the component would use the .sr-only class
 */
.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.date-picker__prev::before,
.date-picker__next::after,
.ui-datepicker-prev::before,
.ui-datepicker-next::after {
  display: inline-block;
  width: .75em;
  height: .75em;
  border: .1875rem solid #fff;
  border: .1875rem solid var(--text-light);
  border-top: none;
  border-left: none;
  transform-origin: center center;
}
.date-picker__prev:before,
.ui-datepicker-prev:before {
  content: '';
  transform: rotate(135deg);
}
.date-picker__next:after,
.ui-datepicker-next:after {
  content: '';
  transform: rotate(-45deg);
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #C6FCFF;
  background: var(--brand-cyan-light);
}
.date-picker__day--today {
  background: #C6FCFF;
  background: var(--brand-cyan-light);
}
/* Time picker */
.ui-timepicker-div {
  margin-top: 1em;
  padding: 1em 0.8em;
  border-top: 1px solid #e7e7e7;
}
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; margin: 0; padding: 0; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0;}
.ui-timepicker-div dl dd { margin: 0 10px 10px 30%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
.ui-timepicker-div .ui_tpicker_unit_hide{ display: none; }
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input { background: none; color: inherit; border: none; outline: none; border-bottom: solid 1px #555; width: 95%; }
.ui-timepicker-div .ui_tpicker_time .ui_tpicker_time_input:focus { border-bottom-color: #aaa; }
.ui-datepicker-buttonpane {
  padding: 0 0.8em;
}
.ui-datepicker-buttonpane button {
  margin-right: 6px;
  font-size: 0.9rem;
}
.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 30% 10px 10px; }
.ui-timepicker-div .ui_tpicker_time {
  margin-left: 28%;
}
.ui-timepicker-div .ui_tpicker_hour,
.ui-timepicker-div .ui_tpicker_minute {
  margin-top: 15px;
}
.ui_tpicker_hour_slider,
.ui_tpicker_minute_slider {
  border-radius: 5px;
  border: 1px solid #eee;
  height: .8em;
  position: relative;
  text-align: left;
}
.ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  top: -.3em;
  margin-left: -.6em;
  border: 1px solid #e7e7e7;
  background: #d7d7d7;
  width: 1.2em;
  height: 1.2em;
  border-radius: 5px;
}
/* React datepicker */
/* the react datepicker places the email datepicker popper on the wrong place, so have to overwrite the CSS */
.email-datepicker-popper {
  position: static !important;
  transform: none !important;
}
.react-datepicker-popper .react-datepicker {
  border: 0;
  border-radius: 0;
  background: #fff;
  background: var(--bg-white);
  box-shadow: 0 10px 16px rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-popover);
}
.react-datepicker-popper .react-datepicker__header {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  border-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.react-datepicker-popper .react-datepicker__current-month {
  color: #fff;
  color: var(--text-light);
}
.react-datepicker-popper .react-datepicker__current-month,
.react-datepicker-popper .react-datepicker-time__header {
  font-size: .85rem;
}
.react-datepicker-popper .react-datepicker__navigation {
  border: 0.35rem solid transparent;
}
.react-datepicker-popper .react-datepicker__navigation--previous {
  border-right-color: #fff;
  border-right-color: var(--text-light);
}
.react-datepicker-popper .react-datepicker__navigation--next {
  border-left-color: #fff;
  border-left-color: var(--text-light);
}
.react-datepicker-popper .react-datepicker__navigation {
  top: 12px;
}
.react-datepicker-popper .react-datepicker__day-names {
  margin-top: .5rem;
  background: #F4F4F4;
  background: var(--bg-light);
}
.react-datepicker-popper .react-datepicker__triangle,
.react-datepicker-popper .react-datepicker__triangle::before {
  border-bottom-color: #321750 !important;
  border-bottom-color: var(--brand-purple-dark) !important;
}
.react-datepicker-popper .react-datepicker__triangle {
  margin-top: -7px !important;
}
.react-datepicker-popper .react-datepicker__day-names .react-datepicker__day-name {
  font-weight: bold;
  color: #321750;
  color: var(--brand-purple-dark);
}
.react-datepicker-popper .react-datepicker__day-name,
.react-datepicker-popper .react-datepicker__day,
.react-datepicker-popper .react-datepicker__time-name {
  color: #321750;
  color: var(--brand-purple-dark);
  width: 2rem;
  line-height: 2rem;
  margin: .15rem;
}
.react-datepicker-popper .react-datepicker__day--keyboard-selected,
.react-datepicker-popper .react-datepicker__day--selected,
.react-datepicker-popper .react-datepicker__day--in-selecting-range,
.react-datepicker-popper .react-datepicker__day--in-range
.react-datepicker-popper .react-datepicker__day--selected:hover,
.react-datepicker-popper .react-datepicker__day--in-selecting-range:hover,
.react-datepicker-popper .react-datepicker__day--in-range:hover {
  color: #321750;
  color: var(--brand-purple-dark);
  background-color: #FFEC00;
  background-color: var(--action-primary);
  font-weight: normal;
}
.react-datepicker-popper .react-datepicker-time__header {
  color: #fff;
  color: var(--text-light);
}
.react-datepicker-popper .react-datepicker__day--today {
  background: #C6FCFF;
  background: var(--brand-cyan-light);
  color: #321750;
  color: var(--brand-purple-dark);
  font-weight: normal;
}
.react-datepicker-popper ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  color: #321750;
  color: var(--brand-purple-dark);
  background-color: #FFEC00;
  background-color: var(--action-primary);
  font-weight: normal;
}
.react-datepicker__day--disabled {
  color: #ccc !important;
}
.dialog-box__backdrop:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 999;
  z-index: var(--overlay-high);
  background-color: rgba(0, 0, 0, .2);
  background-color: var(--bg-dim);
}
.ui-dialog,
.dialog-box__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-width: 18.75rem;
  max-width: 41rem;
  min-height: 10rem;
  overflow-y: auto;
  box-shadow: 0 10px 16px rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-popover);
  background-color: #fff;
  background-color: var(--bg-white);
}
.dialog-box__bg_alt{
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}
.dialog-box__main--overflow-inherit{
  overflow-y: inherit;
}
.ui-dialog-titlebar,
.dialog-box__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  color: #fff;
  color: var(--text-light);
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  padding: 1rem 2rem;
}
.dialog-box__header--notice-warning,
.dialog-box__header--warning {
  background-color: #EC4575;
  background-color: var(--action-warning);
}
.ui-dialog-titlebar-close,
.dialog-box__close {
  flex: 0 0 auto;
  padding: 0;
  display: block;
  width: .75rem;
  height: .75rem;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(to bottom right, transparent 43%, #fff 45%, #fff 55%, transparent 57%),
              linear-gradient(to bottom left , transparent 43%, #fff 45%, #fff 55%, transparent 57%);
}
.dialog-box__content {
  flex: 1 1 auto;
  padding: 2rem 2rem 0;
  font-size: .85rem;
  height: auto;
  max-height: 70vh;
}
@media (min-width: 1080px) {
.dialog-box__content {
    font-size: .9rem;
}
  }
.dialog-box__content {
  overflow-y: auto;
}
.dialog-box__content--overflow-visible {
  overflow-y: visible;
}
.dialog-box__buttons {
  flex: 0 0 auto;
  padding: 2rem;
  white-space: nowrap;
  text-align: center;
  font-size: .85rem;
}
@media (min-width: 1080px) {
.dialog-box__buttons {
    font-size: .9rem
}
  }
.dialog-box__results {
  overflow-y: auto;
  max-height: 60vh;
}
/* Temporary.css jquery ui dialog fixes */
.ui-dialog-titlebar-close .ui-button-text {
  display: none;
}
.ui-dialog-buttonpane {
  padding: 1rem 2rem 1.5rem;
}
:host {
  display: block;
  box-shadow: none !important;
}
.collapse--white-bg {
  background: #fff;
  border-left: 1px solid #E6E6E6;
  border-left: var(--border-gray);
  border-right: 1px solid #E6E6E6;
  border-right: var(--border-gray);
}
collapse-content + collapse-content {
  border-top: none;
  margin-top: calc(1.225rem * -1);
  margin-top: calc(var(--margin-line) * -1);
}
.collapse-content__toggle {
  display: flex;
  background: transparent;
  border: none;
  min-height: auto;
  min-width: 100%;
  font-family: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  align-items: center;
  text-align: inherit;
}
a.collapse-content__toggle:hover {
  text-decoration: none;
}
.collapse-content__toggle--inline {
  display: inline-block;
  min-width: 15rem;
}
.collapse-content__open-indicator {
  --indicator-width: 1.5rem;
  flex: 0 0 var(--indicator-width);
  margin: 0 calc(var(--padding-left) - var(--indicator-width)) 0 calc(var(--padding-left) * -1);
  transform: rotate(180deg);
}
.collapse-content__open-indicator--open {
  transform: rotate(270deg);
}
.collapse-content__title {
  margin: 0;
  padding-left: .8rem;
}
.collapse-content__content {
  padding-top: 1.5rem;
}
.collapse-content__content--closed {
  display: none;
}
.collapse-content__toggle:focus {
  outline: 0;
  box-shadow: none !important;
}
.input-slider.noUi-target {
    margin: 1.25rem 0;
    height: .25rem;
    background-color: #ACACAC;
    background-color: var(--action-rail);
    border: none;
    box-shadow: none;
}
.input-slider .noUi-connect {
    background-color: #FFEC00;
    background-color: var(--action-primary);
    box-shadow: none;
}
.input-slider.noUi-target .noUi-handle {
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -.1625rem;
}
.input-slider .noUi-handle::after,
.input-slider .noUi-handle::before {
    content: none;
}
.pager-nav {
  align-items: baseline;
  padding: 1rem;
  color: #321750;
  color: var(--text-black);
  display: flex;
  justify-content: center;
}
.pager-nav__step {
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}
.pager-nav__step:hover {
  text-decoration: underline;
}
.pager-nav__step--prev:before,
.pager-nav__step--next:after {
  display: inline-block;
  width: .55em;
  height: .55em;
  border: .1275rem solid #321750;
  border: .1275rem solid var(--text-black);
  border-top: none;
  border-left: none;
  transform-origin: center center;
}
.pager-nav__step--prev:before {
  content: '';
  transform: rotate(135deg);
  margin-right: .2rem;
}
.pager-nav__step--next:after {
  content: '';
  transform: rotate(-45deg);
  margin-left: .2rem;
}
.pager-nav__page-numbers {
  text-align: center;
  width: auto;
  display: inline-block;
  margin: 0 1.8rem;
}
.pager-nav__page-numbers:first-child {
  padding-left: 5rem;
}
.pager-nav__page-numbers:last-child {
  padding-right: 5rem;
}
.pager-nav__page-number {
  vertical-align: baseline;
  line-height: 1.5rem;
  display: inline-block;
  padding: .25rem;
  min-width: 2rem;
  width: auto;
  height: 2rem;
  text-align: center;
  border-radius: 4px;
}
.pager-nav__page-number--active {
  background-color: #FFEC00;
  background-color: var(--action-primary);
}
.pager-nav__page-number--input {
  background-color: #fff;
  background-color: var(--bg-white);
  border-radius: 3px;
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  width: 3.5rem;
  -webkit-appearance: none;
  margin: 0 4px;
  -moz-appearance: textfield;
}
.selection-actions-public,
.selection-actions {
  bottom: 0;
  width: 100%;
  background: #FFEC00;
  background: var(--brand-yellow);
  z-index: 99;
  z-index: var(--overlay-medium);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-height: 4.4em;
}
.selection-actions {
  position: sticky;
  margin-top: 1rem;
  padding: 1rem;
}
.selection-actions.selection-actions--full-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  margin-top: 0;
  width: 100vw;
  z-index: 4;
}
.selection-actions-public {
  position: fixed;
  padding: 1rem 0 1rem 1rem;
}
.selection-actions-public.selection-actions--full-bottom-public {
  margin-left: 0;
  width: calc(100%)
}
.selection-actions-double-width {
  width: calc(220% + 8.5rem) !important;
}
multi-button,
:host {
  position: relative
}
multi-button + multi-button,
.button + multi-button {
  margin-left: .5rem;
}
.multi-button__actions {
  position: absolute;
  flex-direction: column;
  box-shadow: 0 10px 16px rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-popover);
  z-index: 99;
  z-index: var(--overlay-medium);
  background-color: #fff;
  background-color: var(--bg-white);
  padding: .5rem 0;
  min-width: 100%;
}
.multi-button__actions--closed {
  display: none;
}
.multi-button__actions--open {
  display: flex;
}
.multi-button__actions--top-left,
.multi-button__actions--top-right {
  bottom: 1.625rem;
}
.multi-button__actions--bottom-left,
.multi-button__actions--bottom-right {
  top: 1.625rem;
}
.multi-button__actions--top-left,
.multi-button__actions--bottom-left {
  left: 0;
}
.multi-button__actions--top-right,
.multi-button__actions--bottom-right {
  right: 0;
}
.multi-button__actions ::slotted(*) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  font-size: .8rem;
  text-align: left;
  display: block;
  width: 100%;
}
@media (min-width: 1080px) {
.multi-button__actions ::slotted(*) {
    font-size: .85rem
}
  }
.multi-button__actions ::slotted(a),
.multi-button__actions ::slotted(i),
.multi-button__actions ::slotted(span),
.multi-button__actions ::slotted(button) {
  padding: .5em 1em;
  white-space: nowrap;
  border: none;
  color: #321750 !important;
  color: var(--text-black) !important; /* can't seem to increase specificity otherwise */
  text-decoration: none;
}
.multi-button__actions ::slotted(a:hover),
.multi-button__actions ::slotted(button:hover) {
  background: #E6E6E6 !important;
  background: var(--action-secondary-hover) !important;
  text-decoration: none !important;
}
.multi-button__actions ::slotted(:disabled),
.multi-button__actions ::slotted(:disabled:hover) {
  cursor: not-allowed;
  background: transparent;
  color: #B4B4B4 !important;
  color: var(--text-disabled) !important;
}
.multi-button__scrollable {
  max-height: 15rem;
  overflow-y: scroll;
}
.multi-button__table-align {
  height: 1em;
  margin-top: -1em
}
/* Views */
/* --------------------- */
/* ELM Datepicker styles */
/* --------------------- */
.date-time-picker {
  background: #fff;
  background: var(--bg-white);
  box-shadow: 0 10px 16px rgba(117, 117, 117, .3);
  box-shadow: var(--shadow-popover);
  position: absolute;
  width: 20rem;
  z-index: 1001 !important;
}
.single-calendar-view {
  position: relative;
  z-index: 1;
  background-color: #fff;
  background-color: var(--bg-white);
}
.single-calendar-view .calendar {
    background-color: #fff;
    background-color: var(--bg-white);
  }
.single-month-picker {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em;
  background-color: #321750;
  background-color: var(--bg-dark);
}
.single-month-picker .month-name {
    font-size: inherit;
    width: 40%;
    font-weight: 700;
    color: #fff;
    color: var(--text-light);
    text-align: center;
  }
.single-month-picker .action {
    width: 15px;
    height: 15px;
    display: inline-block;
    fill: #fff;
    fill: var(--text-light);
    cursor: pointer;
    transform-origin: center center 0;
  }
.single-month-picker .action.disabled {
      fill: #B4B4B4;
      fill: var(--text-disabled);
      cursor: default;
    }
.calendar_ {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-row-gap: 12px;
  padding: 12px 0;
  background-color: #fff;
  background-color: var(--bg-white);
}
.calendar_ .date {
    position: relative;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #321750;
    color: var(--bg-dark);
  }
.calendar_ .date:hover .date-inner {
        background-color: #F4F4F4;
        background-color: var(--bg-light);
      }
.calendar_ .date.today .date-inner {
        background-color: #C6FCFF;
        background-color: var(--brand-cyan-light);
      }
.calendar_ .date.today:hover .date-inner {
          background-color: #FFEC00;
          background-color: var(--action-primary);
        }
.calendar_ .date.selected .date-inner {
        background-color: #FFEC00;
        background-color: var(--action-primary);
      }
.calendar_ .date.invalid {
      color: #B4B4B4;
      color: var(--text-disabled);
      cursor: not-allowed;
    }
.calendar_ .date.invalid:hover .date-inner {
          background-color: transparent;
        }
.calendar_ .date.disabled {
      color: #B4B4B4;
      color: var(--text-disabled);
      cursor: default;
    }
.calendar_ .date.disabled:hover .date-inner {
          background-color: transparent;
        }
.calendar_ .date .date-inner {
      height: 32px !important;
      width: 32px !important;
      justify-content: center;
      align-items: center;
      display: flex;
      z-index: 2;
    }
.weekdays {
  width: 100%;
  padding: 0.75em 0;
  display: flex;
  font-weight: 700;
  color: #321750;
  color: var(--bg-dark);
  background-color: #F4F4F4;
  background-color: var(--bg-light);
}
.weekdays span {
    flex: 1;
    text-align: center;
  }
.date-time-picker > .no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -moz-user-select: none;      /* Firefox */       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently supported by Chrome and Opera */
}
.single-clock-view {
  display: none !important;
}
/* --------------------- */
/* ELM Multiselect styles */
/* --------------------- */
.field--automation {
  height: 38px !important;
}
.automation-rule-multiselect{
  flex-grow: 1;
  min-width: 10rem;
  max-width: 30rem;
  border: 1px solid #E6E6E6 !important;
  border: var(--border-gray) !important;
  border-radius: 4px !important;
  color: #333 !important;
  color: var(--text-dark) !important;
}
.automation-rule-multiselect > div:first-child {
    border: none !important;
  }
.automation-rule-multiselect > div:first-child > div:not([id^="multiselectMenu"]) {
      border: none !important;
    }
.automation-rule-multiselect div:has(> input) {
    padding-bottom: 0 !important;
  }
.automation-rule-multiselect input:focus{
    box-shadow: none !important;
  }
.automation-rule-multiselect:focus-within{
    box-shadow: 0 0 1px 2px #824FF9 !important;
    box-shadow: var(--shadow-focus) !important;
  }
.automation-rule-multiselect-disabled {
  cursor: not-allowed !important;
}
.automation-rule-multiselect-disabled * {
  pointer-events: none !important;
  background-color: #E9E9E9 !important;
  background-color: var(--action-disabled) !important;
  border-color: #B4B4B4 !important;
  border-color: var(--text-disabled) !important;
  color: #B4B4B4 !important;
  color: var(--text-disabled) !important;
}
.automation-rule-multiselect-disabled *[rel="arrow"] {
  border-color: #B4B4B4 transparent transparent transparent !important;
  border-color: var(--text-disabled) transparent transparent transparent !important;
}
.automation-rule-multiselect-invalid {
  border: 1px solid #EC4575 !important;
  border: var(--border-invalid) !important;
}
.avail-table {
  width: 100%;
  white-space: normal;
}
.avail-date {
  width: 150px;
}
.avail-time, .avail-table-column {
  width: 90px;
}
.avail-table-container {
  padding: 0 30px 32px;
}
@media only screen and (max-width: 768px) {
.avail-table-container {
    padding: 0 12px 16px
}
  }
.avail-datetime-cell {
  display: flex;
  justify-content: space-between;
  width: 155px;
}
.avail-spaces-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.border-none {
  border: none !important;
}
.external-note-textarea {
  width:auto;
}
.external-note-view > p {
  margin: 10px 0;
  white-space: normal;
}
.no-wrap {
  white-space: nowrap;
}
.avail-request-booking-cell {
  padding: 13px 0;
  min-width: 200px;
}
@media only screen and (max-width: 768px) {
.avail-request-booking-cell {
    padding: 0
}
  }
@media only screen and (max-width: 768px) {
.availForm-item .hint--success {
    width: 325px
}
  }
.view {
  --view-horizontal-padding: 3rem;
  --view-vertical-padding: 1.5rem;
  --view-bottom-margin: 1.938rem;

  /* Can be changed later on, whats the minimum resolution we want people to be using the Stager application */
}
@media (min-width: 1080px) {
.view {
    --view-horizontal-padding: 4rem;
    --view-vertical-padding: 2rem;
}
  }
@media (min-width: 1280px) {
.view {
    --view-horizontal-padding: 5rem;
    --view-vertical-padding: 2.375rem;
    --view-bottom-margin: 1.938rem;
}
  }
.view {

  background-color: #F4F4F4;

  background-color: var(--bg-light);
  height: 100%;
  max-height: inherit;
  overflow-y: auto;
  position: relative;
  padding: 0 var(--view-horizontal-padding) 2rem;
}
/* width: calc(100vw - var(--sidebar-width)); */
/* make view root for absolutely positioned elements */
@media (min-width: 1280px) {
.view {
    padding-bottom: 1.5rem;
}
  }
.view {
  min-width: 40rem;
}
.view__header {
  margin: 0 calc(var(--view-horizontal-padding) * -1) var(--view-bottom-margin);
  padding: var(--view-vertical-padding) var(--view-horizontal-padding);
  color: #321750;
  color: var(--text-black);
  background-color: #fff;
  background-color: var(--bg-white);
}
.view__header--overview {
  display: flex;
  background-color: transparent;
  justify-content: space-around;
  align-items: center;
  padding: var(--view-vertical-padding) var(--view-horizontal-padding) 0;
}
@media (min-width: 1280px) {
.view__header--overview {
    justify-content: space-between
}
  }
.view__header--overview-no-padding {
  display: flex;
  background-color: transparent;
  justify-content: space-between;
  align-items: center;
}
.view__header--record {
  display: block;
  background-color: #00F0FF;
  background-color: var(--brand-cyan);
  color: #321750;
  color: var(--text-black);
}
.view__header--record-actions {
  line-height: 2.5;
  float: right;
}
.view__header--table-yield {
  transition: width 0.5s ease;
  width: 650px;
}
@media (max-width: 1350px) {
.view__header--table-yield {
    width:480px
}
  }
@media (max-width: 1050px) {
.view__header--table-yield {
    width:240px
}
  }
@media (max-width: 500px) {
.view__header--table-yield {
    display: none !important
}
  }
.view__title,
.view__subtitle {
  margin: 0 !important;
}
.h2.view__subtitle {
  font-size: 1.1rem;
}
.text-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.view__actions {
  white-space: nowrap;
}
.view__back-button {
  position: absolute;
  top: calc((var(--view-horizontal-padding) - .5rem) / 1.4);
  left: calc((var(--view-horizontal-padding) - .5rem) / 2.2);
}
@media (min-width: 1080px) {
.view__back-button {
    top: calc((var(--view-horizontal-padding) - .5rem) / 1.6);
    left: calc((var(--view-horizontal-padding) - .5rem) / 2)
}
  }
.view__nav {
  margin: 1rem calc(var(--view-horizontal-padding) * -1) calc(var(--view-vertical-padding) * -1);
}
/*
  Reset SimpleMDE preview heading styles

  Global styles (like from main.css) often override default heading styles,
  causing all headings (h1–h6) to appear the same size and weight in the preview.
  These resets ensure the preview reflects proper Markdown hierarchy.

*/
.editor-preview h1 {
  font-weight: revert;
}
.editor-preview h2,
.editor-preview h3,
.editor-preview h4,
.editor-preview h5,
.editor-preview h6 {
  all: revert;
}
.rootgroup__extra-line {
  padding-left: 20px;
  border-left: 5px solid #47266C;
}
.nested-condition-group {
  padding-left: 20px;
  border-left: 5px solid #47266C;
  margin: 10px 0;
}
button.remove-condition-group {
  display: none;
  margin-right: 5px;
}
.nested-condition-group:hover > div > div > button.remove-condition-group {
  display: inline;
}
.condition {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.condition-category {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 5px;
  min-width: auto !important;
  margin-bottom: 0 !important;
  height: 38px !important;
}
.condition-field {
  flex-grow: 0;
  margin: 0 5px !important;
  min-width: 260px !important;
  height: 38px !important;
}
.condition-operator {
  flex-grow: 0;
  margin: 0 5px !important;
  min-width: 190px !important;
  height: 38px !important;
}
.condition-value {
  flex-basis: calc(100% - 894px);
  flex-grow: 1;
  margin: 0 5px !important;
  min-width: 125px !important;
}
.condition-value-multiselect {
  border-radius: 4px;
}
.condition-value-multiselect input:focus {
  box-shadow: none !important;
}
.condition-value-multiselect :focus-within {
  box-shadow: 0 0 1px 2px #824FF9 !important;
  box-shadow: var(--shadow-focus) !important;
}
.condition-value-multiselect span {
  max-width: calc(100% - 20px);
}
button.delete-condition {
  display: none;
  flex-basis: 24px;
  margin-left: 5px;
}
.condition:hover button.delete-condition {
  display: inline;
  margin-right: 5px;
}
.condition--spacing {
  padding: 15px;
}
.remove-condition-group {
  float: right;
}
.add-buttons {
  padding-bottom: 10px;
}
.condition-group {
  width: 100%;
  padding: 20px 25px;
  margin-bottom: 0px;
  padding-bottom: 1px;
  z-index: 1;
  position: relative;
}
.criterion__button-container {
  display: flex;
  position: relative;
  margin-top: 15px;
}
.criterion__button {
  width: 25px !important;
  height: 25px !important;
  min-width: auto !important;
  min-height: auto !important;
  border-radius: 50% !important;
  padding: 0 !important;
  position: relative;
  top: 7px;
}
.criterion__dialog {
  width: 120px;
  top: 27px;
  min-width: auto !important;
  text-align: left;
  padding-left: 10px !important;
}
.add-criterion__button,
.remove-criterion__button {
  text-decoration: none;
  color: #321750;
  color: var(--text-black);
  display: block;
  height: 30px;
}
div[id^='multiselectMenu'] {
  z-index: 999;
  z-index: var(--overlay-high);
}
div[id^='multiselectMenu'] div {
  max-height: 70px;
}
.grouptype-text {
  height: 24px;
  margin-bottom: 10px;
}
.grouptype-select {
  min-width: auto !important;
}
.buttons-container {
  margin-top: 30px;
  display: inline-flex;
  gap: 10px;
}
.delete-button__condition-group {
  position: relative;
  right: -20px;
}
.delete-button__condition {
  margin-right: 5px;
}
.submit-criteria {
  min-height: 2.5em !important;
  border-radius: 1.25em !important;
  margin-top: 1rem;
}
.hovering-background-color {
  background-color: #d5d5d5;
}
.default-background-color {
  background-color: #f4f4f4;
}
.invalid-condition-input {
  border: 1px solid red !important;
}
.value-padding {
  padding-left: 10px;
}
.audience-builder__container {
  margin-bottom: 9rem;
}
.audience__contact-search {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.audience__contact-search-child {
  text-align: center;
  margin-top: 6px;
}
.audience__save-and-show {
  display: flex;
  padding-left: 25px;
}
.audience__delete {
  text-align: right !important;
  padding-right: 25px;
}
.view--event-calendar {
  padding-top: 3em;
}
.rbc-calendar {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 91vh;
  min-height: 650px;
}
@media (min-width: 1280px) {
.rbc-calendar {
    height: 93vh
}
  }
/* User preferences - calendar month layout: EXTENDED */
.rbc-calendar.calendar-layout__extended {
  height: 120vh;
}
@media (min-width: 1280px) {
.rbc-calendar.calendar-layout__extended {
    height: 128vh
}
  }
/* User preferences: calendar month layout: EXTENDED_XL */
.rbc-calendar.calendar-layout__extended_xl {
  height: 160vh;
}
@media (min-width: 1280px) {
.rbc-calendar.calendar-layout__extended_xl {
    height: 162vh
}
  }
.rbc-calendar *,
.rbc-calendar *:before,
.rbc-calendar *:after {
  box-sizing: inherit;
}
.events__toolbar {
  display: flex;
  justify-content: space-between;
}
.events__toolbar [data-tip] {
  margin-right: .3rem;
}
@media (min-width: 1280px) {
.events__toolbar [data-tip] {
    margin-right: .5rem
}
  }
.events__toolbar:hover + .rbc-month-view {
  z-index: 0;
}
.events__toolbar--right-block multi-button {
  padding-right: 2px;
}
.events__toolbar .react-datepicker__triangle {
  left: 55px;
}
.events__toolbar--left-block,
.events__toolbar--center-block,
.events__toolbar--right-block {
  width: 33.3%;
  align-self: center;
  z-index: 1;
}
.events__toolbar--center-block {
  display: flex;
  justify-content: center;
}
.events__toolbar--right-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.events__toolbar--zoom-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.button--icon.button--icon-responsive.button--zoom {
  height: 2rem;
  width: 2rem;
  border-radius: 99rem;
  min-width: 0;
  padding: .3em;
}
@media (min-width: 1675px) {
.button--icon.button--icon-responsive.button--zoom {
    width: auto;
    height: auto;
    border-radius: 1em;
    min-width: initial;
    padding: .15em 1em .3em
}
  }
.button--icon.button--icon-responsive.button--zoom .button--icon-text {
  display: none;
}
@media (min-width: 1675px) {
.button--icon.button--icon-responsive.button--zoom .button--icon-text {
    display: inline-block
}
  }
@media (min-width: 1280px) {
  .events__toolbar .react-datepicker__triangle {
    left: 120px;
  }
}
.events__toolbar--label {
  font-size: 0.85rem;
  padding: 0 0.2rem;
  min-width: 7rem;
  display: inline-block;
  text-align: center;
}
@media (min-width: 1380px) {
.events__toolbar--label {
    min-width: 8rem;
    padding: 0 0.4rem;
    font-size: 1rem
}
  }
.rbc-abs-full {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.rbc-ellipsis {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rbc-rtl {
  direction: rtl;
}
.rbc-row .rbc-date-cell.rbc-off-range a {
  color: #919191;
  color: var(--text-gray);
}
.rbc-off-range-bg {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2297%22%20height%3D%2275%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M-293-256H753v776H-293z%22%2F%3E%3Cpath%20d%3D%22M-164-92h887v574h-887z%22%2F%3E%3Cpath%20d%3D%22M49.5.5L.833%2048.167m95.228%201.644L72.833%2074.167M83.5%201.5L11.833%2074.167M96.5%2022.5L44.833%2074.167M18.5%203.5L4.358%2017.642%22%20opacity%3D%22.207%22%20stroke%3D%22%23979797%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center center;
}
.rbc-header {
  overflow: hidden;
  flex: 1 0 0%;
  text-overflow: ellipsis;
  padding: .5rem 0 1rem 0;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
  min-height: 0;
  color: #707070;
  color: var(--text-medium);
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
}
@media (min-width: 1280px) {
.rbc-header {
    font-size: 1.1rem
}
  }
.rbc-header.rbc-today {
  font-weight: bold;
}
.rbc-header:last-child {
  border-right: 0;
}
.rbc-header a {
  color: #707070;
  color: var(--text-medium);
}
.rbc-row-content {
  position: relative;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.rbc-today {
  background-color: #C6FCFF;
  background-color: var(--brand-cyan-light);
}
.rbc-event {
  line-height: 1rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.7rem;
  color: #fff;
  box-shadow: 0 0 1px 0 rgba(150, 0, 0, 0.25);
  box-shadow: var(--shadow-drop);
  cursor: grab;
}
.rbc-event .grab-handle {
  visibility: hidden;
  font-size: 16px;
  min-width: 8px;
  text-align: right;
}
.rbc-event:hover .grab-handle {
  visibility: visible;
}
.rbc-event .rbc-selected {
  background-color: darken(--bg-gray, 10%);
}
.rbc-event:focus {
  outline: 5px auto #321750;
  outline: 5px auto var(--brand-purple-dark);
}
.rbc-event.rbc-slot-selecting * {
  cursor: inherit;
  pointer-events: none;
}
.rbc-addons-dnd-resizable {
  width: 100%;
  height: 100%;
}
.rbc-addons-dnd-dragged-event {
  opacity: 0.2;
}
.rbc-addons-dnd-drag-preview,
.rbc-addons-dnd-drag-preview .link--event-calendar {
  cursor: grabbing;
}
.rbc-addons-dnd-drag-preview .rbc-event-tooltip {
  display: none !important;
}
.rbc-event-content {
  width: 100%;
  overflow: hidden;
}
/* User preferences - calendar month layout: EXTENDED + EXTENDED_XL */
.rbc-calendar.calendar-layout__extended .rbc-event,
.rbc-calendar.calendar-layout__extended_xl .rbc-event {
  line-height: .8rem !important;
  padding: 0.1rem 0.2rem !important;
  margin: 0 .4rem 1px!important;
  font-size: .7rem !important;
  height: 1rem !important;
}
.rbc-event-label {
  font-size: 0.8rem;
}
.rbc-event-overlaps {
  box-shadow: -1px 1px 5px 0px rgba(51,51,51,.5);
}
.rbc-event-continues-prior {
}
.rbc-event-continues-after {
}
.rbc-event.rbc-event-continues-earlier {
}
.rbc-event-continues-later {
}
/* Event template popup */
.event-template__week-labels span {
  display: inline-block;
  width: 2rem;
}
.event-template__week-checkboxes input {
  margin: .3rem 1rem 0 0 !important;
  display: inline-block;
}
/* Calendar filters spaces dropdown */
.calendar-filter-spaces-select__group {
  margin: 5px 5px 0 5px;
  overflow: hidden;
  border: solid 1px #E6E6E6;
  border: solid 1px var(--bg-lighter-gray);
  border-radius: 10px;
}
.calendar-filter-spaces-select__option {
  padding: 8px 15px;
  cursor: pointer;
}
.calendar-filter-spaces-select__option:hover {
  background-color: #deebff;
}
.calendar-filter-spaces-select__group-heading {
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: .875rem;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
}
#event-calendar .rbc-event {
  margin: 0 0.2rem 0.2rem;
}
@media (min-width: 1280px) {
  #event-calendar .rbc-event {
    font-size: 0.8rem;
    margin: 0 0.4rem 0.2rem ;
  }
}
.rbc-row {
  display: flex;
  flex-direction: row;
}
.rbc-event-content {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rbc-event-content .fa,
.rbc-event-content .fa-light {
  color: #fff;
  color: var(--text-light);
  margin-right: 0.4rem;
}
.rbc-selected-cell {
  background-color:  #555;
}
.rbc-show-more {
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 4;
  font-weight: bold;
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 0.7rem;
  height: auto;
  line-height: normal;
  margin: 0 0.2rem;
  text-decoration: none;
}
.rbc-show-more:hover {
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .rbc-show-more {
    margin: 0 0.4rem;
  }
}
.rbc-month-view {
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  width: 100%;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  margin: 2em 0 0 0;
  padding: 1rem 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
  z-index: 2;
  height: 100%;
}
/* ie-fix */
@media (min-width: 1280px) {
.rbc-month-view {
    padding: 1.5rem 2rem
}
  }
.rbc-month-header {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-lighter-gray);
}
.rbc-month-row {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1 0 0;
  flex-basis: 0px;
  overflow: hidden;
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-lighter-gray);

  height: 100%; /* ie-fix */
}
.rbc-month-row:last-child {
  border-bottom: 0;
}
.rbc-date-cell {
  flex: 1 1 0;
  min-width: 0;
  padding: 2px 0;
  font-size: 0.8rem;
  text-align: left;
  margin-left: 0.2em;
}
@media (min-width: 1280px) {
  .rbc-date-cell {
    font-size: 0.8rem;
    margin-left: 0.4em;
  }
}
.rbc-date-cell.rbc-now {
  font-weight: bold;
}
.rbc-date-cell a,
.rbc-date-cell a:active,
.rbc-date-cell a:visited {
  color: #333;
  color: var(--text-dark);
  text-decoration: none;
}
.rbc-row-bg {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
  overflow: hidden;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.rbc-day-bg {
  flex: 1 0 0%;
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
}
/* .rbc-month-view .rbc-day-bg:not(.rbc-off-range-bg):hover {
  background-color: var(--brand-yellow-lighter);
  cursor: pointer;
} */
.editable .rbc-month-view .rbc-date-cell {
  position: relative;
  height: 1.4rem;
}
.editable .rbc-month-view .rbc-date-cell a {
  z-index: 1;
  position: absolute;
}
.editable .rbc-month-view .rbc-date-cell::after {
  content: '+ New event';
  background: rgba(255, 236, 0, 0.5);
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 0.7rem;
  opacity: 0;
  position: absolute;
  top: 0;
  left: -0.4em;
  width: calc(100% + 0.4em);
  text-align: center;
  cursor: pointer;
  font-style: normal;
  padding: 0.15em 0;
  z-index: 0;
}
@media (min-width: 1280px) {
.editable .rbc-month-view .rbc-date-cell::after {
    font-size: 0.75rem
}
  }
.editable .rbc-month-view .rbc-date-cell:hover::after {
  opacity: 1;
}
.rbc-day-bg:last-child {
  border-right: 0;
}
.rbc-overlay {
  position: absolute;
  z-index:  5;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(155,0,0, .25);
  padding: 0.8rem;
  overflow: scroll;
  max-height: 400px;
}
.rbc-overlay-header {
  padding: 0.1rem 0 0.3rem 0;
  margin-bottom: 0.4rem;
  font-weight: bold;
  font-size: 1rem;
}
.rbc-overlay .rbc-event {
  margin: 0 0 0.2rem 0;
}
.rbc-event-tooltip {
  display: inline-block;
  color: #fff;
  opacity: 0.8;
  z-index: 8;
  background-color: #321750 !important;
  background-color: var(--brand-purple-dark) !important;
}
.__react_component_tooltip .h3,
.rbc-event-tooltip .h3 {
  font-size: 1rem;
  display: inline;
  max-width: 220px;
  overflow: visible;
  margin: 0.6rem 0;
  line-height: 1.5rem;
}
.__react_component_tooltip .h2,
.rbc-event-tooltip .h2 {
  font-size: 0.95rem;
  display: inline;
  max-width: 220px;
  overflow: visible;
  margin: 0.5rem 0 1rem;
}
.rbc-overlay .rbc-event-content {
  font-size: 0.8rem;
}
.rbc-event-tooltip-table {
  border-spacing: 0 3px;
  border-collapse: separate;
}
.rbc-event-tooltip-table,
.rbc-event-tooltip-table td,
.rbc-event-tooltip-table th {
  margin-top: 0.6rem;
  border-bottom: 0;
  overflow: hidden;
}
.rbc-event-tooltip-table td {
  max-width: 150px;
}
.rbc-event-tooltip-table tbody tr td:first-child {
  padding-right: 10px;
}
.rbc-event-tooltip-table td > :last-child:is(p) {
  margin-bottom: 0;
}
#event-calendar .rbc-date-cell > a:hover {
  text-decoration: underline;
}
.rbc-slot-selection {
  z-index: 10;
  position: absolute;
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 75%;
  width: 100%;
  padding: 3px;
}
.rbc-slot-selecting {
  cursor: move;
}
.rbc-time-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin: 2em 0 0 0;
  padding: 1.5rem 2rem 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
  height: 91%;
}
.rbc-time-view .rbc-time-gutter {
  white-space: nowrap;
}
.rbc-time-view .rbc-allday-cell {
  box-sizing: content-box;
  width: 100%;
  /* height: 100%; */
  position: relative;
}
.rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
  border-left: 1px solid #E6E6E6;
  border-left: 1px solid var(--bg-lighter-gray);
}
.rbc-time-view .rbc-allday-events {
  position: relative;
  z-index: 4;
}
.rbc-time-view .rbc-row {
  box-sizing: border-box;
  min-height: 13px;
}
.rbc-time-view .rbc-time-header-content .rbc-row {
  min-height: 0;
}
.rbc-time-header.rbc-overflowing {
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
}
.rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-header-content {
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-left: 1px solid #E6E6E6;
  border-left: 1px solid var(--bg-lighter-gray);
}
.rbc-rtl .rbc-time-header-content {
  border-left-width: 0;
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
}
.rbc-time-content > .rbc-day-slot {
  width: 100%;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.rbc-current-time-indicator {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 1px;

  background-color: #824FF9;

  background-color: var(--brand-purple-light);
  pointer-events: none;
}
.rbc-time-header {
  display: flex;
  flex: 0 0 auto; /* should not shrink below height */
  flex-direction: row;
}
.rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-content {
  display: flex;
  flex: 1 0 0%;
  align-items: flex-start;
  width: 100%;
  overflow-y: auto;
  position: relative;
}
.rbc-time-content > * + * > * {
  border-left: 1px solid #E6E6E6;
  border-left: 1px solid var(--bg-lighter-gray);
}
.rbc-current-time-indicator {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 1px;

  background-color: #333;

  background-color: var(--text-dark);
  pointer-events: none;
}
.rbc-time-header-content {
  flex: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-left: 1px solid #E6E6E6;
  border-left: 1px solid var(--bg-lighter-gray);
}
.rbc-time-column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.rbc-time-column .rbc-timeslot-group {
  flex: 1;
}
.rbc-time-content .rbc-time-column:last-child {
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
}
.rbc-timeslot-group {
  min-height: 44px;
  display: flex;
  flex-flow: column nowrap;
}
.rbc-time-gutter .rbc-timeslot-group {
  /* border-right: 1px solid var(--bg-lighter-gray); */
}
.rbc-time-gutter,
.rbc-header-gutter {
  flex: none;
}
.rbc-label {
  color: #707070;
  color: var(--text-medium);
  font-size: 0.7rem;
  padding-right: 1em;
}
.rbc-time-header {
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-lighter-gray);
}
.rbc-day-slot {
  position: relative;
}
.rbc-day-slot  .rbc-events-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  margin-right: 10px;
  top: 0;
}
.rbc-day-slot .rbc-events-container.rbc-rtl {
  left: 10px;
  right: 0;
}
.rbc-day-slot .rbc-event {
  display: flex;
  margin: 0;
  padding: 4px;
  max-height: 100%;
  min-height: 22px;
  flex-flow: column wrap;
  align-items: flex-start;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 0 1px 1px #fff;
  box-shadow: var(--shadow-white);
}
.rbc-day-slot .rbc-event-label {
  display: none;
}
.rbc-day-slot .rbc-event-content {
  width: 100%;
  flex: 1 1 0;
  word-wrap: break-word;
  line-height: 1rem;
  height: 100%;
  min-height: 1em;
}
.rbc-day-slot .rbc-timeslot-group:not(:first-child) .rbc-time-slot:first-child {
  border-top: 1px solid #E6E6E6;
  border-top: 1px solid var(--bg-lighter-gray);
}
.rbc-time-view-resources .rbc-time-gutter,
.rbc-time-view-resources .rbc-time-header-gutter {
  position: sticky;
  left: 0;
  background-color: white;
  border-right: 1px solid #E6E6E6;
  border-right: 1px solid var(--bg-lighter-gray);
  margin-right: -1px;
}
.rbc-time-view-resources .rbc-time-header {
  overflow: hidden;
}
.rbc-time-view-resources .rbc-time-header-content {
  min-width: auto;
  flex: 1 0 0;
  flex-basis: 0px;
}
.rbc-time-view-resources .rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-view-resources .rbc-day-slot {
  min-width: 140px;
}
.rbc-time-view-resources .rbc-header,
.rbc-time-view-resources .rbc-day-bg {
  width: 140px;
  flex:  1 1 0;
  flex-basis: 0 px;
  padding: 0 0 1em 0;
}
.rbc-time-header-content + .rbc-time-header-content {
  margin-left: -1px;
}
.rbc-time-header-content .rbc-header a {
  text-decoration: none;
}
.rbc-time-header-content .rbc-header a:hover {
  text-decoration: underline;
}
.rbc-time-slot {
  flex: 1 0 0;
}
.rbc-time-slot.rbc-now {
  font-weight: bold;
}
.rbc-day-header {
  text-align: center;
}
.rbc-agenda-view {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  overflow: auto;
  margin: 2em 0 0 0;
  padding: 1.5rem 1.5rem 0;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);

  height: 100%; /* ie-fix */
}
.rbc-agenda-view table.rbc-agenda-table {
  width: 100%;
  border: 0;
  margin-bottom: 0;
  border-collapse: collapse;
}
.rbc-agenda-view table.rbc-agenda-table thead {
  display: none;
}
.rbc-agenda-view table.rbc-agenda-table .rbc-header {
  font-size: 0.9rem;
  font-weight: normal;
  color: #333;
  color: var(--text-dark);
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
  padding: 5px 10px;
  vertical-align: top;
}
.rbc-agenda-view table.rbc-agenda-table .rbc-ag.rbc-agenda-view table.rbc-agenda-table enda-time-cell {
  padding-left: 15px;
  padding-right: 15px;
  text-transform: lowercase;
}
/* .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left: 1px solid var(--bg-lighter-gray);
}

.rbc-agenda-view table.rbc-agenda-table .rbc-rtl tbody > tr > td + td  {
  border-left-width: 0;
  border-right: 1px solid var(--bg-lighter-gray);
} */
.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
  border-top: 1px solid #E6E6E6;
  border-top: 1px solid var(--bg-lighter-gray);
}
.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  padding: 3px 5px;
  text-align: left;
  border-bottom: 1px solid #E6E6E6;
  border-bottom: 1px solid var(--bg-lighter-gray);
}
.rbc-agenda-time-cell {
  text-transform: lowercase;
}
.rbc-agenda-time-cell .rbc-continues-after:after {
  content: ' »';
}
.rbc-agenda-time-cell .rbc-continues-prior:before {
  content: '« ';
}
.rbc-agenda-date-cell,
.rbc-agenda-time-cell {
  white-space: nowrap;
}
.rbc-agenda-event-cell {
  width: 100%
}
.rbc-button-link,
.rbc-agenda-list-item a {
  color: #321750;
  color: var(--brand-purple-dark);
  text-decoration: none;
}
.rbc-button-link:hover {
  text-decoration: underline;
}
.guest-list__list-wrapper.hidden {
  display: none;
}
.guest-list__empty-message {
  padding-top: 3em;
}
.guest-list__list-actions {
  position: relative;
  min-height: 3em;
}
.guest-list__list-actions-search {
  position: absolute;
  top: 0;
  left: 0;
}
.guest-list__list-loader {
  margin: 5.5em 0 2em;
}
.guest-list__actions-block {
  padding-top: 3em;
  min-height: 3em;
}
@media (min-width: 1160px) {
  .guest-list__actions-block {
    padding-top: 0;
    float: right;
  } 
}
.guest-list__stats-table {
  max-width: 70rem;
}
.guest-list__stats-table table {
  border-collapse: initial;
}
.guest-list__stats-table tbody th {
  font-weight: normal !important;
  color: black;
}
.guest-list__stats-table tfoot th,
.guest-list__stats-table tfoot td {
  border-bottom: 0;
}
.guest-list__table.hidden, 
.guest-list__table tr.hidden {
  display: none;
}
.guest-list__table .action {
  vertical-align: middle;
  padding: 0.6rem 0.5rem;
}
.guest-list__remaining-container {
  display: flex;
  align-items: center;
  height: 2.5rem;
}
.guest-list__remaining {
  margin: 1rem 0.5rem;
}
tr.guest-list__table--checked-in {
  color: #B4B4B4;
  color: var(--text-disabled);
}
/* Icons */
td.guest-list__table-check-in-action {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20stroke%3D%22%23fff%22%20fill%3D%22none%22%20d%3D%22M1%204l2%202%204-4%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  border-radius: 0.3em;
  vertical-align: middle;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
}
td.guest-list__table-check-in-action:hover {
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
}
td.guest-list__table--checked-in { 
  color: #B4B4B4; 
  color: var(--text-disabled);
}
td.guest-list__table--checked-in span {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20stroke%3D%22%23919191%22%20fill%3D%22none%22%20d%3D%22M1%204l2%202%204-4%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 2px;
}
.guest-list__table--waiting {
  color: #B4B4B4;
  color: var(--text-disabled);
}
.guest-list__table-cell--waiting span {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%23919191%22%20d%3D%22M12%201.2L10.8%200%206%204.8%201.2%200%200%201.2%204.8%206%200%2010.8%201.2%2012%206%207.2l4.8%204.8%201.2-1.2L7.2%206z%22%2F%3E%3Cpath%20d%3D%22M12%2013V0H0v13z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 2px;
}
.guest-list__table .clickable {
  padding-right: 0.5em;
  color: #824FF9;
  color: var(--link);
  text-decoration: none;
  font-size: 14px;
}
.guest-list__table .clickable:hover {
  text-decoration: underline;
}
.guest-list__table-edit-added-by {
  margin-bottom: 1.5em;
  color: #919191;
  color: var(--text-gray);
}
.guest-list__table-edit-row p {
  margin-bottom: 1.8em;
}
.guest-list__selected-event {
  margin-right: 1rem;
  display: inline-block;
  flex: 0 1 100%;
  background-color: #fff;
  background-color: var(--text-light);
  box-shadow: 0 0 1px 0 rgba(150, 0, 0, 0.25);
  box-shadow: var(--shadow-drop);
  padding: 1rem 1.2rem;
}
.guest-list__selected-event time {
  font-size: 0.8rem;
}
.guest-list__add-guest-form {
  overflow: hidden;
  width: 100%;
}
.guest-list__add-guest-form .error .field {
  border: 1px solid #EC4575;
  border: var(--border-invalid);
}
.guest-list__filter-container {
  display: flex;
  justify-content: space-between;
}
.crew-schedule__table {
  overflow: visible !important
}
.crew-schedule__action-add {
  float: right;
}
.crew-schedule__table select.field--select {
  width: auto;
  min-width: 12rem;
}
.crew-schedule__table--contact select.field--select {
  max-width: 12rem;
}
.crew-schedule__table--plan-mode select.field--select {
  min-width: 0;
  width: 7rem;
}
.crew-schedule__table select.field--select.field--select-time {
  min-width: 3rem;
  max-width: 3.5rem;
}
.crew-schedule__table td.start,
.crew-schedule__table td.end {
  min-width: 8rem;
}
.crew-schedule__table td.start select.hours,
.crew-schedule__table td.end select.hours {
  margin-right: 4px;
}
.crew-schedule__table--notification-sent {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20stroke%3D%22%23919191%22%20fill%3D%22none%22%20d%3D%22M1%204l2%202%204-4%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  display: inline-block;
  width: 17px;
  height: 17px;
}
.crew-schedule__table--notification-expired:not(.crew-schedule__table--notification-sent) {
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%23919191%22%20d%3D%22M12%201.2L10.8%200%206%204.8%201.2%200%200%201.2%204.8%206%200%2010.8%201.2%2012%206%207.2l4.8%204.8%201.2-1.2L7.2%206z%22%2F%3E%3Cpath%20d%3D%22M12%2013V0H0v13z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  display: inline-block;
  width: 12px;
  height: 12px;
}
.crew-schedule__table-column-status-and-delete {
  width: 110px;
  text-align: center;
}
.publicity__state {
  border: 2px solid #D8D8D8;
  border: 2px solid var(--bg-light-gray);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.publicity__state .fa {
  margin-right: 0.3rem;
}
.fas.publicity__state-unpublished {
  color: #EC4575;
  color: var(--action-warning);
}
.fas.publicity__state-published {
  color: #37CC84;
  color: var(--brand-green);
}
.fas.publicity__state-scheduled {
  color: #F9884F;
  color: var(--brand-orange);
}
@media (min-width: 1080px) {
.publicity__links {
    max-width: 65%
}
  }
@media (min-width: 1420px) {
.publicity__links {
    max-width: 55%
}
  }
.publicity__image-name {
  display: inline-block;
  min-width: 15rem;
}
.publicity__tooltip-image  {
  width: 150px;
}
.publicity_links label {
  min-width: 191px;
  display: inline-block;
}
.publicity__kyc{
  max-width: 240px
}
.mailer-builder__container {
  display: grid;
  align-items: start;
  grid-template-columns: 22rem auto;
  grid-gap: 1.5rem;
}
@media (min-width: 1080px) {
.mailer-builder__container {
    grid-template-columns: 26rem auto;
    grid-gap: 2rem
}
  }
#email-themer .email-theme-options-container {
  width: 46% !important;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 4% !important;
  margin-left: 0 !important;
  position: sticky;
  top: 20px;
}
.table.mailer__table th,
.table.mailer__table td {
  padding: .3rem .5rem .5rem .5rem;
}
.table.mailer__table tr td:last-child {
  padding-top: .7rem;
}
.email-template__settings {
  display: grid;
  grid-template-columns: 7rem auto;
  grid-gap: 0.5rem;
  width: 100%;
  font-size: .75rem;
}
@media (min-width: 1080px) {
.email-template__settings {
    font-size: .85rem
}
  }
.email-template__settings label {
  padding-top: .3rem;
}
#email-builder .field--invalid {
    border-color: #EC4575;
    border-color: var(--action-warning);
  }
#email-builder .error {
    color: #EC4575;
    color: var(--action-warning);
    width: 100%;
    display: block;
  }
#email-builder input:not([type=checkbox]):not([type=radio]):not([type=number]), #email-builder select {
    min-width: initial;
    width: 100%;
    float: none;
    margin: 0;
    box-sizing: border-box;
  }
#email-builder select:disabled,
  #email-builder input[type="text"]:disabled {
    color: #333;
    color: var(--text-dark);
  }
#email-builder .selected-image {
    max-height: 30px;
    max-width: 60px;
    border-radius: 4px;
    border: 1px solid #E6E6E6;
    vertical-align: bottom;
    margin-right: 15px;
  }
#email-builder .editor-buttons {
    margin: 10px 0;
    padding: 6px 12px;
    display: inline-block;
  }
#email-builder .block-button {
    margin-left: 10px;
    padding: 6px 12px;
  }
#email-builder #schedule-email-button, #email-builder #cancel-test-email-button {
    margin: 10px 20px 10px 4px;
  }
#email-builder #cancel-test-email-button{
    margin: 10px 20px 10px 4px;
  }
.email-builder-meta-container {
  height: 100%;
}
.email-builder-preview-container {
  width: 100%;
  position: sticky;
  top: 0;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.email-builder-preview-container--disabled {
  pointer-events: none;
}
.email-builder-preview-container--locked {
  z-index: 0;
}
.email-builder-preview-container--locked::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  cursor: not-allowed;
  background-color: #f7f7f7;
  opacity: 0.5;
  z-index: 1;
}
.email-builder-preview {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.email-builder__actions-wrapper {
  padding: 1.5rem;
  background: #F9F9F9;
  background: var(--bg-superlight);
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
}
.email-builder__actions-wrapper .react-datepicker__input-container {
    width: 16rem;
  }
#email-themer .form-group {
    display: flex;
    margin: 3px 0;
    align-items: center;
  }
#email-themer .form-group label {
      flex: 1;
      min-width: 30%;
    }
#email-themer .form-group input,
    #email-themer .form-group select,
    #email-themer .form-group span {
      flex: 3;
    }
#email-themer .email-theme {
    display: flex;
  }
#email-themer .email-theme-preview-container {
    flex: 1;
  }
#email-themer .cursor-pointer {
    cursor: pointer;
  }
#email-themer .loader-animation {
    margin: 120px auto auto auto;
    display: block;
  }
#email-themer .transition300 {
    transition: all 300ms ease-in-out;
  }
#email-themer .transition150 {
    transition: all 150ms ease-in-out;
  }
#email-themer .upside-down {
    transform: rotate(180deg);
  }
#email-themer .mr1 {
    margin-right: 0.5rem;
  }
#email-themer .hidden {
    display: none;
  }
/* General Flexbox stuff */
#email-themer .flex-container {
    display: flex;
  }
#email-themer .flex-1 {
    flex: 1;
  }
#email-themer .flex-2 {
    flex: 2;
  }
#email-themer .flex-3 {
    flex: 3;
  }
#email-themer .flex-4 {
    flex: 4;
  }
#email-themer .flex-5 {
    flex: 5;
  }
.email-emailComponent {
  position: absolute;
  width: 320px;
  height: 90px;
  overflow: visible;
  pointer-events: auto;
  transform-origin: 50% 50% 0;
  border-radius: 4px;
  color: rgb(153, 153, 153);
  line-height: 96px;
  padding-left: 32px;
  font-size: 24px;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.mj-column-per-50 {
  width: 50% !important;
}
.mj-column-per-33 {
  width: 33.333333% !important;
}
table.footer-logo {
  margin: auto;
}
/* Email builder preview should not have any of the global styles.
// Unsetting all
// TODO: when tables are styled with classes everywhere, remove this.
// TODO: remove tags in selectors */
li.email-builder-preview__emailComponent img {
      max-width: 100%;
  }
li.email-builder-preview__emailComponent blockquote {
    text-align: left;
    font-style: normal;
    margin-left: 20px;
    margin-right: 20px;
  }
li.email-builder-preview__emailComponent h1, li.email-builder-preview__emailComponent h2, li.email-builder-preview__emailComponent h3 {
    line-height: 1.2em;
  }
.focus .preview-emailComponents {
  outline: 1px dashed #707070;
  outline: 1px dashed var(--text-medium);
  outline-offset: -1px;
}
.email-sent-success {
  text-align: center;
  margin: 60px 0 0;
}
.sortable-item {
  transition: all 0.2s ease-in-out;
}
.sortable-item:not(.placeholder):hover {
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  cursor: move;
}
.sortable-item-filler {
  display: inline-block;
  height: 130px;
  width: 100%;
  text-align: center;
  border-radius: 3px;
  position: relative;
}
.sortable-item-filler--invisible {
  margin-bottom: -130px;
}
.sortable-item-filler__text-container {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  padding: 20px 20px;
  border-radius: 8px;
}
.email-preview-content {
  overflow: scroll;
}
/* Reset some styles in preview content */
.email-preview-content table {
  margin: 0 auto;
}
.email-preview-content h2,
.email-preview-content h3,
.email-preview-content h4 {
  margin-bottom: 1rem !important;
}
.email-preview-content--light .sortable-item-filler__text-container {
  border: 2px dashed #fff;
  color: #fff;
}
.email-preview-content--dark .sortable-item-filler__text-container {
  border: 2px dashed #333;
  color: #333;
}
.email-builder-hover-icon {
  position: absolute;
  top: 0;
  height: 24px;
  width: 24px;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  background: #321750;
  background: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  animation-duration: 0.2s !important;
}
.non-selectable-emailComponent {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.non-draggable-emailComponent,
.draggable-emailComponent {
  width: 112px;
  height: 112px;
  margin: 4px;
  display: inline-block;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  color: #8e8e8e;
  cursor: move;
  font-size: 12px;
}
.non-draggable-emailComponent {
  cursor: not-allowed;
  background-color: #f6f6f6;
}
.draggable-emailComponent:hover {
  box-shadow: 0 0 2px 0 #B0B0B0;
  box-shadow: 0 0 2px 0 var(--bg-gray)
}
.email-preview-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-height: 0;
  border: 1px solid #f1f1f1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
}
.email-preview-meta {
  padding: 8px 16px;
  font-size: 12px;
  background: white;
  border-bottom: 1px solid #f1f1f1;
}
.email-preview-subject {
  font-weight: bold;
  margin-left: 8px;
  flex: 1;
}
.email-preview-value {
  margin-left: 8px;
  flex: 1;
}
.email-preview-label {
  color: #707070;
  color: var(--text-medium);
  display: inline;
}
.notification-exit {
  opacity: 1;
}
#tickets-expiry-date input {
    width: unset !important;
  }
.mde-text textarea {
  width: -webkit-fill-available !important;
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
}
.giphy-select-trigger {
    border: 1px solid #767676;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: bold;
    color: #767676;
}
.giphy-select-trigger:hover {
    border: 1px solid #919191;
    border: 1px solid var(--text-gray);
    color: #919191;
    color: var(--text-gray);
}
.giphy-select-wrapper::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    top: -16px;
    right: 50%;
    transform: translateX(50%);
}
.giphy-select-wrapper {
  margin-left: 48px;
  position: absolute;
  background: white;
  border-radius: 4px;
  border: 1px solid #919191;
  border: 1px solid var(--text-gray);
  padding: 20px 10px;
  z-index: 9999;
}
.giphy-select-wrapper::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-color: white;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
}
.giphy-select-close {
  color: #919191;
  color: var(--text-gray);
  right: 6px;
  top: 2px;
  cursor: pointer;
  position: absolute;
  font-size: 16px;
}
.giphy-select {
  border: none;
}
.giphy-select-list-item {
  margin-right: 5px;
}
.giphy-select-button {
  padding: 0;
  margin-bottom: 0;
}
.giphy-select-image {
  padding: 0;
  margin: 0;
}
.giphy-attribution {
  margin-left: 10px;
}
.no-outline {
  outline: none;
}
#date-picker-schedule-for > div {
    display: inline-block;
  }
#date-picker-schedule-for input {
    width: 185px !important;
    height: 26px;
  }
.empty-social-link-themer {
  background: #eee;
  min-width: unset !important;
  width: calc(100% - 2.2rem) !important;
}
.email-preview-svg-container svg {
    width: 28px;
    height: 28px;
  }
/* Preview section */
#email-preview {
  padding: 12px 20px;
}
.email-themer-preview-container {
  max-width: 500px;
}
#email-preview h1,
#email-preview h2,
#email-preview h3,
#email-preview h4 {
  font-weight: normal;
  margin: 8px 0;
}
#email-preview p {
  font-size: 14px;
  line-height: 1.5em;
  margin: 4px 0 12px 0;
}
#email-preview hr {
  margin: 20px 0;
}
#email-preview * {
  text-shadow: none;
}
#email-preview .inner-container {
  margin: 0 20px;
}
#email-preview .button {
  margin: 8px 0;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8em;
  box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.15);
  border: 0;
}
#email-preview .event-link {
  font-size: 14px;
  margin-left: 12px;
}
#email-preview .header {
  padding: 40px 60px 30px 60px;
  text-align: center;
}
#email-preview .email-preview-title-logo {
    width: auto;
    height: 140px;
}
#email-preview .email-preview-footer-logo {
    width: auto;
    height: 100px;
}
#email-preview .main-event {
  margin: 20px 0 0;
  text-align: center;
}
#email-preview .align-left {
  text-align: left;
}
#email-preview .two-events {
  display: flex;
  justify-content: space-between;
}
#email-preview .two-events div {
  flex: 1;
}
#email-preview .two-events div:nth-child(1) {
  margin-right: 8px;
}
#email-preview .two-events div:nth-child(2) {
  margin-left: 8px;
}
#email-preview .event-section {
  display: flex;
  flex-direction: column;
}
#email-preview .agenda-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0.75rem;
}
#email-preview .agenda-list {
  display: flex;
  flex-direction: column;
}
#email-preview .agenda-list-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 0.5rem 0;
}
#email-preview .agenda-list-item div {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#email-preview .agenda-list-item h1 {
  font-weight: bold;
  margin: 0;
}
#email-preview .agenda-list-item p {
  margin: 0;
}
#email-preview .footer {
  padding: 20px;
  text-align: center;
}
#email-preview .notices {
  text-align: center;
  margin: 24px;
}
#email-preview .notices p,
#email-preview a {
  font-size: 10px;
}
#email-builder [data-tooltip]:hover::before {
  min-width: 100% !important;
  white-space: normal !important;
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
.view--crew-schedule {
  padding-top: 3em;
}
.crew-schedule-day__section,
.crew-schedule-week__section,
.crew-schedule-month__section {
  min-width: 50rem;
  margin: 2rem 0 0 0;
  padding: 1.5rem 2rem;
  background-color: #fff;
  background-color: var(--bg-white);
  box-shadow: 0 0 5px 0 rgba(200, 0, 0, 0.05);
  box-shadow: var(--shadow-calendar);
}
.crew-schedule-day__section.scroll-container {
  overflow: visible;
}
.crew-schedule__scroll-field,
.crew-schedule__scroll-field__week {
  position: relative;
  overflow-y: scroll;
}
.crew-schedule__scroll-field__week {
  padding-left: 150px;
  margin-left: -150px;
}
.crew-schedule__toggle-event {
  font-weight: bold;
  cursor: pointer;
}
.crew-schedule__toggle-event .fa {
  margin-right: 2px;
}
.crew-schedule__selector-label {
  font-size: 0.85rem;
  padding: 0 0.3rem;
  min-width: 7rem;
  display: inline-block;
  text-align: center;
  margin: 0;
}
@media (min-width: 1280px) {
.crew-schedule__selector-label {
    min-width: 8rem;
    padding: 0 0.4rem;
    font-size: 1rem
}
  }
.crew-schedule-day__roster {
  position: relative;
}
.crew-schedule-day__roster-grid {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
}
.crew-schedule-day__roster-grid tr {
  height: 100%;
  padding: 0;
  border: 0 !important;
}
.crew-schedule-day__roster-grid tr td {
  border-right: 1px solid #f1f1f1;
  height: 100%;
  text-align: center;
  padding: 0;
  min-width: 15px;
}
.crew-schedule-day__roster-grid tr td::after {
  content: "";
  display: inline-block;
  width: 100%;
}
.crew-schedule-day__roster-grid tr td:last-child {
  border-right: 0;
}
/*
 * Week view
 */
.crew-schedule-week__table,
.crew-schedule-month__table {
  background: #fff;
  background: var(--bg-white);
}
.crew-schedule-week__table:not(.table--cloned) {
  border-bottom: 1px solid 1px solid #E6E6E6;
  border-bottom: 1px solid var(--border-gray);
  width: 100%;
  table-layout: fixed;
}
.crew-schedule-week__table.table--cloned {
  display: none;
}
.crew-schedule-week__day a {
  color: #321750;
  color: var(--brand-purple-dark);
}
.crew-schedule-week__table thead tr th {
  border-bottom: 1px solid #e6e6e6;
  font-weight: normal;
  padding: 1em .5em;
  position: sticky;
  top: 0;
  background-color: #fff;
  background-color: var(--bg-white);
}
.crew-schedule-week__table thead tr:first-child th {
  z-index: 1;
  vertical-align: top;
}
.crew-schedule-week__table tbody .crew-schedule-week__day:not(.crew-schedule-week__day-filled):hover {
  background: #FFFBC6;
  background: var(--brand-yellow-lighter);
}
.crew-schedule-week__event-element {
  font-weight: normal;
}
.crew-schedule-week__event-element .tooltip {
  max-width: 100%;
}
.crew-schedule-week__event-element .tooltip__link {
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 3px;
       column-gap: 3px;
}
.crew-schedule-week__event-element a {
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 0.7rem;
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1280px) {
.crew-schedule-week__event-element a {
    font-size: 0.8rem
}
  }
.crew-schedule-week__table td~td,
.crew-schedule-week__table th~td {
  vertical-align: top;
  padding: 0.5em;
  border-left: 1px solid #E6E6E6;
  border-left: var(--border-gray);
}
.crew-schedule-week__table tr:last-child td {
  border-bottom: 0;
}
.crew-schedule-week__day {
  cursor: pointer;
  overflow: visible !important;
}
.crew-schedule-week__day:not(.crew-schedule-week__day-filled) {
  vertical-align: top;
}
.crew-schedule-week__day ul {
  list-style: square;
  padding-left: 0;
}
.crew-schedule-week__item {
  font-size: 0.75rem;
  padding: 0.8em;
  color: #fff;
  color: var(--bg-white);
  margin-bottom: 0.8em;
  cursor: pointer;
  width: 100%;
}
.crew-schedule-week__item:hover {
  background-color: #47266C;
  background-color: var(--brand-purple);
}
.crew-schedule-week__day li.crew-schedule-week__item:last-child {
  margin-bottom: 0;
}
/*
 * Month view
 */
.crew-schedule-month__table {
  font-size: 0.75rem;
}
.table.crew-schedule-month__table tr > :first-child {
  padding-left: 0.5rem;
  min-width: 9rem;
}
.crew-schedule-month__table tr:nth-child(2n) td.weekend {
  background-color: #efefef;
}
.crew-schedule-month__table tr:nth-child(odd) td.weekend {
  background-color: #dbdbdb;
}
.crew-schedule-month__table:not(.table--cloned) {
  border-bottom: 1px solid 1px solid #E6E6E6;
  border-bottom: 1px solid var(--border-gray);
  width: 100%;
}
.crew-schedule-month__table td.day a {
  color: #321750;
  color: var(--brand-purple-dark);
}
.crew-schedule-month__table td.day:hover a {
  text-decoration: none;
}
.crew-schedule-month__table tbody tr:nth-child(odd):not(.no-bg) {
  background: #efefef;
}
.crew-schedule-month__table tr:first-child th {
  text-align: center;
}
.crew-schedule-month__table tr:first-child th a {
  width: 100%;
  display: block;
}
.crew-schedule-month__table tbody td~td,
.crew-schedule-month__table tbody th~td {
  border-left: 1px solid #E6E6E6;
  border-left: var(--border-gray);
}
/*
 * Day view
 */
.crew-schedule-day__table {
  margin-top: 1.5em;
  padding-bottom: 2em;
  border-bottom: 1px solid 1px solid #E6E6E6;
  border-bottom: 1px solid var(--border-gray);
  width: 100%;
  table-layout: fixed;
  font-size: 0.6rem;
  margin-bottom: 0 !important;
}
@media (min-width: 1280px) {
.crew-schedule-day__table {
    font-size: 0.8rem
}
  }
.crew-schedule-day__table thead tr th {
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
  font-weight: normal;
  padding: .5em 0;
}
.crew-schedule-day__table thead tr th:last-child {
  border-right: none;
}
.crew-schedule-day__table thead tr th.now {
  font-weight: bold;
}
.crew-schedule-day__shifts {
  padding-top: 0.8em;
}
.crew-schedule-day__shifts .fa,
.crew-schedule-week__item .fa {
  color: #fff;
  color: var(--bg-white);
}
.crew-schedule-day__event {
  cursor: pointer;
  background-color: rgba(38,171,95,.6);
  position: relative;
  background-clip: padding-box;
  font-size: 0.75rem;
  padding: 0.1rem 0.8rem;
  margin-bottom: 0.2rem;
  color: #fff;
  color: var(--bg-white);
  text-decoration: none;
  display: block;
}
.crew-schedule-day__shift {
  position: relative;
  overflow: visible;
  background-clip: padding-box;
  font-size: 0.75rem;
  padding: 0.8em;
  color: #fff;
  color: var(--bg-white);
  margin-bottom: 0.8em;
  cursor: pointer;
}
.crew-schedule-day__shift:hover {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
}
.open {
  opacity: 0.7;
}
.status {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin-right: 6px;
}
.status-kyc-info {
    height: 15px;
    width: 15px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}
.status--green {
    background-color: green;
}
.status--orange {
    background-color: orange;
}
.status--red {
    background-color: red;
}
.tasks__table tr.tasks-done input[type="text"],
.tasks__table tr.tasks-done select {
  opacity: 0.5 !important;
  cursor: not-allowed;
}
/* TICKET MANAGEMENT */
.view--ticket-management .buttons {
  margin-bottom: 2em;
}
.tickets__filter {
  margin-bottom: 2em;
}
.tickets__filter .field__select {
  min-width: 20rem;
}
.tickets__ticket-preferences {
  padding-bottom: 2em;
  border-bottom: 1px solid #E6E6E6;
  border-bottom: var(--border-gray);
}
.tickets__ticket-preferences dt {
  margin-bottom: 1em;
}
.tickets__ticket-preferences-option p {
  margin-bottom: 0.2em;
}
.tickets__ticket-preferences-option label {
  cursor: pointer;
  margin-right: 1em;
}
.tickets__sales-table {
  max-width: 100%;
}
@media screen and (min-width: 2000px) {
  .tickets__sales-table {
    max-width: 85%;
  }
}
@media screen and (min-width: 2800px) {
  .tickets__sales-table {
    max-width: 70%;
  }
}
.tickets__sales-table tfoot td,
.tickets__sales-table tfoot th {
  border-bottom: 0;
}
@media (min-width: 1280px) {
  .tickets__table input#searchFilter {
    width: 20rem;
  }
}
.tickets__table .search-filter-query {
  font-style: italic;
}
.tickets__table--actions {
  float: right;
}
.tickets__table th.header {
  background-image: url('/public/images/tablesorter/bg.gif');
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
  margin-right: 20px;
  padding-right: 20px;
}
/* TICKET ORDERS */
.orders__search-results {
  max-height: 16rem;
  overflow-y: scroll;
}
.orders__search-results thead {
  background-color: #DADADA;
  background-color: var(--additional-light-grey);
}
.orders__search-results table td {
  padding-left: 0.4rem;
}
.orders__search-loader {
  padding-top: 2em;
}
/* EVENT TICKETS */
.event-tickets__notification {
  background: #37CC84;
  background: var(--brand-green);
  padding: .1em .5em;
  border-radius: 2px;
  color: #fff;
  color: var(--text-light);
  width: auto;
  display: inline-block;
}
.event-tickets__notification-alert {
  background: #F94F80;
  background: var(--additional-red);
}
.event_tickets__slider.noUi-horizontal {
  height: 14px;
  margin-top: 9px;
}
.event_tickets__slider .noUi-connect {
  background: #FFEC00;
  background: var(--brand-yellow);
  box-shadow: none;
}
.event_tickets__slider.noUi-horizontal .noUi-handle {
  border-radius: 99rem;
  cursor: pointer;
  width: 28px;
  height: 23px;
}
.event_tickets__slider .noUi-handle:before {
  height: 10px;
  left: 11px;
}
.event_tickets__slider .noUi-handle:after {
  height: 10px;
  left: 14px;
}
.event-tickets__progress-container {
  width: 100%;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  margin-top: 6px;
  cursor: pointer;
  width: 20rem;
  box-shadow: 0 0 1px 0 1px solid #E6E6E6;
  box-shadow: 0 0 1px 0 var(--border-gray);
}
.event-tickets__progress-tickets {
  float: left;
  text-align: center;
  font-size: 10px;
}
.event-tickets__ticket-number {
  pointer-events: none;
  margin-left: -100%;
  margin-right: -100%;
  text-align: center;
}
.event-tickets__progress-container > div:first-child {
  border-radius: 4px 0 0 4px;
}
.event-tickets__progress-container > div:last-child {
  border-radius: 0 4px 4px 0;
}
.event-tickets__progress-container > div:only-child {
  border-radius: 4px;
}
.event-tickets__progress-tickets-available {
  background-color: #DADADA;
  background-color: var(--additional-light-grey);
  color: #333;
  color: var(--text-dark);
}
.event-tickets__progress-tickets-scanned {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
}
.event-tickets__progress-tickets-imported {
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  color: #333;
  color: var(--text-dark);
}
.event-tickets__progress-tickets-refunded {
    background-color: #E64FF9;
    background-color: var(--brand-pink);
    color: #333;
    color: var(--text-dark);
}
.event-tickets__progress-tickets-sold {
  background-color: #37CC84;
  background-color: var(--brand-green);
  color: #333;
  color: var(--text-dark);
}
.event-tickets__progress-tickets-reserved {
  background-color: #F9884F;
  background-color: var(--brand-orange);
  color: #333;
  color: var(--text-dark);
}
.event-tickets__progress-tickets-connected {
  background-color: #B99BFF;
  background-color: var(--additional-lilac);
  color: #333;
  color: var(--text-dark);
}
.event-tickets__expected-container {
  width: 20rem;
  position: relative;
  height: 0px;
  line-height: 0;
}
.event-tickets__expected-visitors {
  width: 10px;
  float: none !important;
  position: relative;
}
.event_tickets__slider  {
  float: left;
  margin-right: 1em;
  width: 20rem;
}
.invite-user__state {
  border: 2px solid #D8D8D8;
  border: 2px solid var(--bg-light-gray);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.invite-user__state .fa {
  margin-right: 0.3rem;
}
.fas.invite-user__state-pending {
  color: #824FF9;
  color: var(--brand-purple-light);
}
.fas.invite-user__state-active {
  color: #37CC84;
  color: var(--brand-green);
}
.partner-card__container {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 25px;
}
@media (max-width: 1500px) {
  .partner-card__container { grid-template-columns: repeat(3, 260px); }
}
@media (max-width: 1200px) {
  .partner-card__container { grid-template-columns: repeat(2, 260px); }
}
@media (max-width: 900px) {
  .partner-card__container { grid-template-columns: repeat(1, 260px); }
}
.partner-card__container .partner-card {
  width: 260px;
  height: 380px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  background-color: #fff;
  background-color: var(--bg-white);
  border-style: solid;
  border-width: 2px 2px 3px 2px;
  border-color: #D9D9D9;
  border-color: var(--additional-lighter-grey);
}
.partner-card__container .partner-card:hover {
  cursor: pointer;
  background-color: #EDE9F1;
  background-color: var(--table-hover-click);
}
.partner-card__container .partner-card h2,
.partner-card__container .partner-card p {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.partner-card__container .partner-card h2 {
  -webkit-line-clamp: 1;
}
.partner-card__container .partner-card p {
  -webkit-line-clamp: 4;
}
.partner-card__image, .partner-info__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.partner-card__image {
  align-items: center;
  aspect-ratio: 1 / 1;
}
.partner-info__header {
  display: flex;
  justify-content: space-between;
}
.partner-info__logo {
  align-items: flex-start;
}
.partner-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-info__container img {
  width: auto;
  min-width: 50%;
  max-width: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partner-info__container {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 460px 460px;
}
.partner-info__container > .partner-info__section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  grid-column: 1
}
.partner-info__container > .partner-info__section ~ .partner-info__section {
  grid-column: auto;
}
.partner-info__container > .partner-info__section > *:last-child {
  margin-bottom: 0 !important;
}
.partner-info__container > .partner-info__image:first-of-type {
  grid-column: 1;
}
:root {
  --grid-unit:             12px;
  --unit:                  0.2em;
  --em:                    var(--unit) * 7;
  --base-height:           var(--em);
  --base-width:            var(--grid-unit) * 4;
}
.backstage__login footer {
  background-position: 0 0;
  position: fixed;
  bottom: 0;
  margin: 1.4em 0 0;
  padding: 0;
  width: 100%;
  text-align: right;
  background: #efefef;
}
.backstage__login footer nav {
  padding: 2px 14px;
}
.backstage__login div.notification-centered {
  border-radius: 12px;
  margin: 0 auto;
  padding: .8rem .6rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(147, 147, 147, 0.41);
  z-index: 99;
}
.backstage__login div.error {
  margin-bottom: 0.2em * 7;
  margin-bottom: var(--em);
  font-weight: bold;
  color: #f7f7f7;
  background-color: #62c2d0;
  border-radius: 10px;
}
.backstage__login div.error.notification-centered a {
  text-decoration: underline;
  color: #ffffff;
}
.backstage__login div.success {
  margin-bottom:@em;
  padding:@base-height/2 @block-space;
  font-weight: bold;
  color: @light-color;
  background-color: @blue1;
  border-radius: 2px;
}
.backstage__login section {
  display: flex;
  height: 100vh;
}
.login-message {
  position: relative;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.login {
  background-color: #F4F4F4;
  min-height: auto;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 0;
  justify-content: space-between;
  overflow-y: auto;
}
@media screen and (max-width: 47em) {
  .login {
      width: 100%;
  }

  .login-slider {
      display: none;
  }
}
@media screen and (max-width: 80em) {
  .login {
    min-width: 50%;
  }
}
.login > * {
  width: 80%;
}
.logo {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}
.logo > img {
  height: 6em;
}
.signingInto {
  margin-top: 2em;
}
.signingInto b {
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.login-form {
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form > * {
  width: 100%;
}
input:disabled {
  background-color:#E9E9E9;
  background-color:var(--bg-disabled);
}
.inputfield {
  margin-top: 20px;
}
.organization-field {
  display:flex;
}
.hostnames {
  padding: 1em;
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  margin-left: 0.25em;
}
.full-width {
  padding: 1em;
  width: 100%;
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  color: #333;
  color: var(--text-dark);
  font-size: .8125rem;
  border-radius: 3px;
  background-color: #fff;
  background-color: var(--bg-white);
}
.help-text {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}
.login-button {
  background-color: #FFEC00;
  border-radius: 15px;
  border: none;
  font-weight: bold;
  padding: 0.5em 1em;
  color: black;
  width: 100%;
  height: 36px;
  margin-bottom: 16px;
}
.mfa-field {
  margin-bottom: 20px;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.flex-align-center {
  display: flex;
  align-items: center;
}
.text-center {
  text-align: center;
}
.remember {
  margin: 0;
}
.remember-field {
  align-items: center;
  margin-top: 16px;
  margin-bottom: 20px;
}
.login-content {
  position: relative;
}
.login-footer {
  text-align: center;
  display: flex;
  justify-content: end;
  flex-direction: column;
  height: 9em;
}
.button--shop {
  border-radius: 15px;
  border: 1px solid #DDD;
  font-weight: bold;
  padding: 0.5em 1em;
  color: black;
  width: 100%;
  height: 36px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.button--reset-password {
  margin-top: 20px;
}
.mfaButtons button {
  margin: 0 auto;
  display: block;
}
.mfaFieldSet input {
  margin: 0 auto;
  display: block;
}
.remember-field > label {
  margin-left: 0.5em;
}
.login-slider {
  background: linear-gradient(167deg, #824FF9 60%, #311B50 60%);
  color: white;
  flex-grow: 2;
}
.login-slider > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.slideshow-container > div > img {
  max-width: 80%;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.mySlides {
  display: none;
  flex-direction: column;
  align-items: center;
}
.slide-text > p {
  width: 60%;
  text-align: center;
}
.slide-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5em;
}
.dot2 {
  cursor: pointer;
  height: 0.75em;
  width: 0.75em;
  margin: 0 2px;
  background-color: rgb(160, 160, 160);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot2:hover {
  background-color: rgb(255, 255, 255);
  height: 1em;
  width: 1em;
}
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.orders__search-results table {
  font-size: 0.9rem;
  background-color: transparent;
}
.orders__search-results thead tr {
  border-bottom: 1px solid #333;
  background-color: white !important;
}
.orders__search-results table th,
.orders__search-results table tr,
.orders__search-results table td {
  padding: 0.5em 0;
}
.sales__progress-container {
  width: 100%;
  height: 19px;
  line-height: 19px;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 0 1px 0 1px solid #E6E6E6;
  box-shadow: 0 0 1px 0 var(--border-gray);
}
.sales__progress-container > div {
  float: left;
  text-align: center;
  font-size: 11px;
}
.sales__progress-container > div:first-child {
  border-radius: 4px 0 0 4px;
}
.sales__progress-container > div:last-child {
  border-radius: 0 4px 4px 0;
}
.sales__progress-container > div:only-child {
  border-radius: 4px;
}
.sales__tickets-scanned {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
}
.sales__tickets-imported {
  background-color: #FFF680;
  background-color: var(--brand-yellow-light);
  color: #333;
  color: var(--text-dark);
}
.sales__tickets-refunded {
    background-color: #E64FF9;
    background-color: var(--brand-pink);
    color: #333;
    color: var(--text-dark);
}
.sales__tickets-sold {
  background-color: #37CC84;
  background-color: var(--brand-green);
  color: #333;
  color: var(--text-dark);
}
.sales__tickets-reserved {
  background-color: #F9884F;
  background-color: var(--brand-orange);
  color: #333;
  color: var(--text-dark);
}
.sales__tickets-available {
  background-color: #DADADA;
  background-color: var(--additional-light-grey);
  color: #333;
  color: var(--text-dark);
}
.sales__expected-visitors {
  float: none !important;
  position: relative;
  height: 19px;
  margin-top: -19px;
  z-index: 99;
  background-color: #333;
  width: 2px;
}
.sales__expected-visitors:hover {
  background-color: #000;
}
.sales__legenda-container {
  float: right;
  margin-top: .5rem;
}
.sales__legenda-item {
  width: 64px;
  text-align: center;
  margin-right: 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  line-height: 16px;
}
.sales__expected-legenda {
  border-right: 2px solid #666666;
  border-radius: 0;
  height: 14px;
}
.sales__table-lines .line {
  cursor: pointer;
}
.sales__detail-table {
  float: left;
  font-size: 0.8rem;
}
.sales__ticket-type-revenue {
  position: relative;
  width: 24%;
  text-align: center;
  top: 195px;
  left: 22%;
  font-size: 1.1rem;
}
.sales__slider {
  width: 95%;
  position: relative;
  top: -60px;
  left: 6%;
}
.sales__slider .ui-slider-handle {
  border: 0;
  background: #B0B0B0;
  background: var(--bg-gray);
  box-shadow: 0 0 1px 0 rgba(150, 0, 0, 0.25);
  box-shadow: var(--shadow-drop);
  color: #f7f7f7 !important;
  top: 0;
  height: 2rem;
  width: .5rem;
  opacity: 0.6;
}
.sales__amount {
  width: 100%;
  position: relative;
  top: -20px;
  left: 0;
  text-align: center;
  font-size: .8rem;
}
@media (min-width: 1024px) {
.sales__google-charts {
    max-width: 80%
}
  }
@media (min-width: 1480px) {
.sales__google-charts {
    max-width: 60%
}
  }
.plan-template-container .plan-template  {
  background: #321750;
  background: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  padding: 1.2rem 1.5rem;
  margin-right: 1rem;
  flex-grow: 1;
  flex-basis: 0;
}
.plan-template-container .plan-template:last-child {
  margin-right: 0;
}
.plan-template-container .plan-template h2 {
  height: 3.5rem;
  overflow: hidden;
}
@media (min-width: 1480px) {
.plan-template-container .plan-template h2 {
    height: 2.5rem
}
  }
.plan-template-container .plan-template h3 {
  margin-top: .3rem;
  padding-top: .3rem;
  width: 100%;
  border-top: 1px solid #f7f7f7;
  text-align: center;
}
.table-default td.user-permissions__toggle {
  padding: .8rem 0 !important;
}
.table-default.user-permissions__table td {
  height: 42px;
}
.organizations__search-loader {
  padding-top: 2rem;
}
.view--door-sales {
  padding-top: 3em;
}
.door-sales__wrapper {
  height: 90%;
}
.door-sales__flex-container {
  display: flex;
  flex-wrap: wrap;
  height: 80%;
  min-width: 40rem;
}
.door-sales__section {
  padding: 1rem;
  flex: 1 0 20rem;
  max-height: 100%;
}
.door-sales__section--tickets {
  padding-right: 1rem;
  background-color: #fff;
  background-color: var(--bg-white);
}
.door-sales__section--tickets .section-header h2 {
  width: 100%;
  font-size: 1.1rem;
  margin-bottom: .7rem;
}
@media (min-width: 1080px) {
.door-sales__section--tickets .section-header h2 {
    font-size: 1.25rem;
    max-width: 60%;
    margin-bottom: 0rem
}
  }
.door-sales__section--tickets .field--search {
  width: 100%;
  min-width: 100%;
}
@media (min-width: 1080px) {
.door-sales__section--tickets .field--search {
    width: auto;
    min-width: 15rem
}
  }
.door-sales__section--reservation {
  padding-top: 2rem;
  overflow-y: auto;
  flex: 1 0 20rem;
  background-color: #FBFBFB;
  background-color: var(--bg-lighter);
  font-size: 0.8rem;
}
@media (min-width: 1080px) {
.door-sales__section--reservation {
    font-size: 0.9rem
}
  }
.door-sales__section--reservation.door-sales__section-has-contact {
  padding-top: 1rem;
}
.door-sales__section--contact-header {
  background-color: #321750;
  background-color: var(--brand-purple-dark);
  color: #fff;
  color: var(--text-light);
  padding: 0.5rem 0.7rem 0.5rem 0.8rem;
  margin-bottom: 3.5rem;
}
.door-sales__section--contact-header h3 {
  display: inline;
}
.door-sales__section--contact-header a {
  padding: 0 0.2rem 0 0.2rem;
}
.door-sales__section--contact-header i {
  color: #fff;
  color: var(--text-light);
  cursor: pointer;
}
.door-sales__event-form {
  display: flex;
}
.door-sales__ticket-list {
  font-size: 2rem;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 1rem !important;
}
.door-sales__reservation-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 3.3rem 1rem .9rem;
  font-weight: bold;
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
}
.door-sales__reservation-total div,
.door-sales__reservation-total span {
  font-size: 0.9rem;
}
@media (min-width: 1080px) {
.door-sales__reservation-total div,
.door-sales__reservation-total span {
    font-size: 1rem
}
  }
.door-sales__reservation-total div {
  min-width: 4.7rem;
  text-align: right;
}
.door-sales__reservation-event-has-contact {
  margin-top: 4rem;
}
.door-sales__reservation-event:not(:first-child) {
  margin-top: 1rem;
}
.door-sales__reservation-event-title {
  margin: .5rem;
}
.door-sales__toggle-list-button {
  /* background: var(--brand-green); */
  background: transparent;
  color: #321750;
  color: var(--brand-purple-dark);
  font-size: 0.9rem;
  text-align: left;
  border: 0;
  padding: 0;
  font-size: 0.8rem;
}
@media (min-width: 1080px) {
.door-sales__toggle-list-button {
    font-size: 0.9rem
}
  }
.door-sales__toggle-list-button span {
  padding: 0;
  color: #824FF9;
  color: var(--link);
}
.door-sales__toggle-list-button i {
  color: #824FF9;
  color: var(--link);
}
.door-sales__event-list {
  height: 100%;
  overflow-y: auto;
}
.door-sales__event-list .table-clickable thead th:first-child,
.door-sales__event-list .table-clickable tbody tr td:first-child {
  padding-left: .8rem;
}
.door-sales__event-list .table-clickable * {
  font-size: 0.8rem;
}
@media (min-width: 1080px) {
.door-sales__event-list .table-clickable * {
    font-size: 0.9rem
}
  }
.door-sales__event-list .table-clickable thead tr {
  background: none;
}
.door-sales__event-list .table-clickable thead tr th {
  border-bottom: 1px solid #AAAAAA;
  border-bottom: 1px solid var(--additional-dark-grey);
}
.door-sales__event-list .table-clickable thead th {
  padding: .5rem .5rem;
}
.door-sales__event-list .table-clickable tbody tr:not(.table--row-disabled) {
  cursor: pointer;
}
.door-sales__event-list
.door-sales__user-preferences {
  margin-top: auto;
}
.door-sales__user-preferences div {
  max-width: 65%;
  font-size: 0.7rem;
}
@media (min-width: 1080px) {
.door-sales__user-preferences div {
    font-size: 0.8rem;
    line-height: 2
}
  }
.door-sales__user-preferences .button {
  font-size: 0.7rem;
}
@media (min-width: 1080px) {
.door-sales__user-preferences .button {
    font-size: 0.8rem
}
  }
iframe#printWindow {
  border: 0;
}
.tooltip.contact-search__tooltip {
  margin-left: 0.8rem
}
.icon--circled::before {
  color: #321750;
  color: var(--brand-purple-dark);
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  padding: 2px 3px;
  line-height: 1.3;
  font-size: 9px;
  border-radius: 99em;
}
.icon--circled.icon--circled-gray::before {
  background-color: #707070;
  background-color: var(--text-medium);
  color: #fff;
  color: var(--text-light);
}
.icon--circled.icon--circled-medium::before {
  padding: 5px 6px;
  line-height: 1.1;
  font-size: 11px;
}
.icon--circled:hover::before {
  background-color: #FFF680;
  background-color: var(--brand-yellow-light);
}
.table--row-active {
  background-color: #FFFBC6;
  background-color: var(--brand-yellow-lighter);
}
.table--row-disabled {
  color: #919191;
  color: var(--text-gray);
  pointer-events: none;
  cursor: not-allowed;
}
.dot {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transform: translateY(35%)
}
.dot--color-green {
    background-color: #37CC84;
    background-color: var(--action-green);
}
.dot--color-red {
    background-color: #EC4575;
    background-color: var(--action-warning);
}
.dot--color-purple {
    background-color: #47266C;
    background-color: var(--brand-purple);
}
.dot--color-blue {
    background-color: #4F9BF9;
    background-color: var(--brand-blue);
}
/* Printing css. */
@media print {
  div[data-name="activity"].schedule__cell {
    width: 25ch !important;
  }
  div[data-name="spaceIds"].schedule__cell {
    width: 15ch !important;
  }
  div[data-name="topicIds"].schedule__cell {
    width: 35ch !important;
  }
}
/* Regular css. */
.view--schedule {
  padding-top: 3em;
  display: flex;
  flex-direction: column;
}
.dialog-content custom-select,
.dialog-content schedule-file-upload {
  border: 1px solid #E6E6E6;
  border: var(--border-gray);
  border-radius: 3px;
  color: #333;
  color: var(--text-dark);
  box-sizing: content-box;
}
schedule-file-upload custom-select {
  border: 0 !important;
}
.dialog-content .field {
  /* TODO(Bodhy): Change color on program section CSS */
  background-color: white !important;
}
.schedule-row-placeholder .schedule__row {
  display: none;
}
.schedule-container {
  width: 100%;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  transition: padding 0.5s ease-in-out;
}
.schedule-container--fill-page {
  flex: 1 0 auto;
  overflow: scroll;
}
.schedule-container__extend {
  padding-bottom: 200px;
}
.schedule {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.schedule__head {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
}
.schedule__head--scroll {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #F4F4F4;
  background-color: var(--bg-light);
  box-shadow: 0 4px 16px 0 rgba(117, 117, 117, .3);
  -webkit-clip-path: inset(0 0 -16px 0);
          clip-path: inset(0 0 -16px 0);
}
.schedule__cell--heading {
  padding: 0 1px;
}
.schedule__row {
  display: flex;
  flex-direction: row;
  flex: 1;
  height: 40px;
}
.schedule__row--main-tab-info {
  display: flex;
}
.schedule--public-mobile-row,
.schedule--public-mobile-row--main-tab-info {
  display: none;
}
.schedule__row--main-tab-info--data {
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 40px;
  background-color: #C6FCFF;
  background-color: var(--brand-cyan-light);
}
.schedule__row > form {
  display: contents;
}
.schedule--empty .schedule__action {
  display: none;
}
.schedule__row:hover .schedule__add-row,
.schedule__row--main-tab-info:hover .schedule__add-row {
  opacity: 1;
}
.schedule__add-row:hover,
.schedule__add-row:focus {
  opacity: 1;
}
.schedule--template .schedule__cell {
  white-space: nowrap;
}
.schedule__cell {
  position: relative;
  width: 224px;
  /*flex: 0 0 auto;*/
  min-height: 40px;
  display: flex;
  box-shadow: none !important; /* Removes the global outline box-shadow replacement. */
  align-items: stretch;
}
.schedule__cell_short {
  width: 148px;
}
.schedule__cell--main-tab-info {
  padding: .5rem;
  font-size: 0.875rem;
}
.schedule__main .schedule__cell:Not(.schedule__cell--actions) {
  background-color: white;
}
.schedule__cell > textarea[readonly="true"] {
  background-color: #E6E6E6;
  background-color: var(--bg-lighter-gray);
  cursor: not-allowed;
}
.schedule__cell:not(.schedule__cell--actions) {
  border-left: 1px solid #D8D8D8;
  border-left: 1px solid var(--bg-light-gray);
  border-top: 1px solid #D8D8D8;
  border-top: 1px solid var(--bg-light-gray);
}
div[data-name="startsAt"].schedule__cell,
div[data-name="endsAt"].schedule__cell,
div[data-name="startsAt"].schedule__cell--main-tab-info,
div[data-name="endsAt"].schedule__cell--main-tab-info {
  width: 8.5rem;
}
@media print {
  div[data-name="startsAt"].schedule__cell,
  div[data-name="endsAt"].schedule__cell,
  div[data-name="startsAt"].schedule__cell--main-tab-info,
  div[data-name="endsAt"].schedule__cell--main-tab-info {
    min-width: 9rem;
  }

  div[data-name="activity"].schedule__cell--main-tab-info {
    width: inherit;
  }

  .schedule__cell--main-tab-info {
    border-left: 1px solid #D8D8D8;
    border-left: 1px solid var(--bg-light-gray);
    border-top: 1px solid #D8D8D8;
    border-top: 1px solid var(--bg-light-gray);
  }

  .schedule__cell--main-tab-info:last-child {
    border-right: 1px solid #D8D8D8;
    border-right: 1px solid var(--bg-light-gray);
  }
}
.schedule--template div[data-name="startsAt"].schedule__cell,
.schedule--template div[data-name="endsAt"].schedule__cell,
.schedule--template div[data-name="startsAt"].schedule__cell--main-tab-info,
.schedule--template div[data-name="endsAt"].schedule__cell--main-tab-info {
  width: 16rem;
}
@media screen {
  div[data-name="activity"].schedule__cell,
  div[data-name="activity"].schedule__cell--main-tab-info {
    width: 50ch;
  }
}
.schedule:not(.schedule--template).schedule--readonly .schedule__main .schedule__row .schedule__cell:last-of-type,
.schedule:not(.schedule--readonly) .schedule__main .schedule__row .schedule__cell:nth-last-child(2),
.schedule.schedule--template .schedule__main .schedule__row .schedule__cell:nth-last-child(2) {
  border-right: 1px solid #D8D8D8;
  border-right: 1px solid var(--bg-light-gray);
  flex: 1;
  min-width: 150px;
}
.schedule__main .schedule__row:last-child .schedule__cell:not(.schedule__cell--actions),
.schedule__main .schedule__row--main-tab-info:last-child .schedule__row--main-tab-info--data .schedule__cell--main-tab-info:not(.schedule__cell--actions) {
  border-bottom: 1px solid #D8D8D8;
  border-bottom: 1px solid var(--bg-light-gray);
}
.schedule__input-public {
  background-color: #ffffff !important;
}
schedule-date-input,
.schedule__input-public,
.schedule__input {
  flex: 1;
  border: none;
  outline: none;
  box-shadow: none !important; /* Removes the global outline box-shadow replacement. */
  overflow: hidden;
  padding: 0 .5rem;
  color: #333333;
  font-size: .875rem;
}
.schedule__textarea, .schedule__textarea_template {
  white-space: nowrap;
  overflow-wrap: normal;
  overflow-x: hidden;
  flex: 1;
  outline: none;
  border: none;
  box-sizing: content-box;
  z-index: 3;
  box-shadow: none !important; /* Removes the global outline box-shadow replacement. */
  resize: none;
  padding: .45rem 0 .45rem .5rem;
  border-right: .5rem solid transparent; /* Otherwise the text will overflow the padding. */
  color: #333333;
  font-size: .875rem;
  line-height: 1.5;
}
.schedule .schedule__cell > custom-select {
  border: none;
  height: 100%;
  min-width: 8rem;
  width: 100%;
  padding: 0 .625rem;
}
.schedule custom-select:focus,
.schedule schedule-file-upload:focus {
  box-shadow: none !important;
}
.schedule schedule-file-upload {
  border: none;
  height: 100%;
}
.schedule__row--showtime .schedule__input,
.schedule__row--showtime .schedule__textarea_template,
.schedule__row--showtime .schedule__relative-date {
  background-color: #E6E6E6;
  background-color: var(--bg-lighter-gray);
}
.schedule:not(.schedule--readonly) .schedule__row--showtime .schedule__input,
.schedule__row--showtime .schedule__textarea_template,
.schedule:not(.schedule--readonly) .schedule__row--showtime .schedule__relative-date {
  cursor: not-allowed;
}
.schedule__cell.schedule__cell--heading {
  color: #321750;
  color: var(--brand-purple-dark);
  padding: .75rem;
  font-weight: bold;
  border: none;
}
.schedule__cell--error::before,
.schedule:not(.schedule__readonly).schedule__cell--error::before,
.schedule:not(.schedule--readonly) .schedule__cell:not(.schedule__cell--actions, .schedule__cell--heading):focus-within::before {
  content: '';
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 2px solid #824FF9;
  border: 2px solid var(--brand-purple-light);
  border-radius: 2px;
  left: -1px;
  top: -1px;
  z-index: 4;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.schedule__cell--error::before {
  border: 2px solid #EC4575;
  border: 2px solid var(--action-warning);
}
.schedule__cell--actions {
  width: 40px;
  flex: 0 0 auto;
  display: flex;
}
.schedule__action {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.schedule__action:hover .schedule__add-row {
  opacity: 1;
}
.schedule__action--align-border {
  position: relative;
  top: -50%;
}
.schedule__action--button {
  width: 40px;
}
.schedule__add-row {
  opacity: 0;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background-color: #FFEC00;
  background-color: var(--brand-yellow);
  color: #321750;
  color: var(--brand-purple-dark)
}
.schedule__edit-row {
  font-size: .875rem;
}
.schedule__add-row:before {
  font-size: 1.2rem;
  content: '+';
}
.schedule__delete-row {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  background-color: #D8D8D8;
  background-color: var(--bg-light-gray);
  color: white;
}
.schedule__delete-row:hover {
  background-color: #B0B0B0;
  background-color: var(--bg-gray);
}
.schedule__delete-row:before {
  font-size: .8rem;
  content: '✕';
}
.schedule__foot {
  display: flex;
}
.schedule__relative-date {
  flex: 1;
  color: #333333;
  font-size: .875rem;
  align-items: center;
  display: flex;
  padding: 0 .5rem;
}
.schedule custom-select {
  color: #333333;
  font-size: .875rem;
}
#Schedule > .overflow-visible {
  overflow: auto;
}
.schedule__cell__showtime--grey {
  background-color: #E6E6E6;
  background-color: var(--bg-lighter-gray);
}
@media only screen and (max-width: 768px) {
  .schedule.schedule--public-mobile {
    width: 100%;
    max-width: 100%;
  }

  .schedule.schedule--public-mobile .schedule__head,
  .schedule.schedule--public-mobile .schedule__foot {
    display: none;
  }

  .schedule.schedule--public-mobile .schedule__main {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .schedule.schedule--public-mobile .schedule__row,
  .schedule.schedule--public-mobile .schedule__row--main-tab-info {
    display: none;
  }


  .schedule.schedule--public-mobile .schedule--public-mobile-row,
  .schedule.schedule--public-mobile .schedule--public-mobile-row--main-tab-info {
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .schedule.schedule--public-mobile .schedule--public-mobile-row {
    border: 1px solid #321750;
    border: 1px solid var(--brand-purple-dark);
  }

  .schedule.schedule--public-mobile .schedule--public-mobile-row--main-tab-info {
    background-color: #C6FCFF;
    background-color: var(--brand-cyan-light);
  }

  .schedule.schedule--public-mobile .schedule--public-mobile-row--time-cell,
  .schedule.schedule--public-mobile .schedule--public-mobile-row--main-tab-info--time-cell {
    font-weight: 700;
    min-width: 6em;
    width: 6em;
  }

  .schedule.schedule--public-mobile .schedule--public-mobile-row--activity-cell p {
    margin-bottom: 0 !important;
  }

  .schedule--public-mobile-row--activity-cell--subtext {
    font-size: 12px;
    color: #919191;
    color: var(--text-gray);
  }

  .schedule.schedule--public-mobile .schedule--public-mobile-row--activity-cell {
    display: flex;
    flex-direction: column;
    gap: 8px
  }
}
.pos-rel {
  position: relative !important;
}
.event-scans__progress-container {
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: 12px;
  margin-top: 2px;
  width: 50rem;
}
.event-scans__progress-container > div {
  float: left;
  text-align: center;
  font-size: 12px;
}
.event-scans__progress-container > div:first-child {
  border-radius: 4px 0 0 4px;
}
.event-scans__progress-container > div:last-child {
  border-radius: 0 4px 4px 0;
}
.event-scans__progress-container > div:only-child {
  border-radius: 4px;
}
.event-scans__progress-tickets-scanned {
  background-color: #824FF9;
  background-color: var(--brand-purple-light);
  color: #fff;
  color: var(--text-light);
}
.event-scans__progress-tickets-reserved {
  background-color: #4F9BF9;
  background-color: var(--brand-blue);
  color: #fff;
  color: var(--text-light);
}
.event-scans__progress-tickets-expected {
  background-color: #D8D8D8;
  background-color: var(--bg-light-gray);
  color: #fff;
  color: var(--text-light);
}
.table-border-line {
  border-left: #321750 3px solid;
  width: 1%;
}
/* Main */
/* :root {
  --sidebar-width: 12rem;
} */
.app {
  width: 100vw;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.app__menu {
  overflow-y: auto;
}
body {
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
  overflow: hidden;
  overscroll-behavior: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
*:not(:defined) {
  display:none
}
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
fieldset legend {
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.content-wrap {
  width: 89vw;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
}
