:root {
  --granite-drop-indicator-width: 8px;
}

.drop-indicator {
	position: absolute;
	opacity: 0;
}

.drop-indicator-above {
	top: -2px;
	left: 0;
	right: 0;
	border-top: var(--granite-drop-indicator-width) solid deeppink;
}

.drop-indicator-below {
	bottom: 2px;
	left: 0;
	right: 0;
	border-top: 4px solid deeppink;
}

.drop-indicator-left {
	left: -2px;
	top: 0;
	bottom: 0;
	border-left: var(--granite-drop-indicator-width) solid deeppink;
}

.drop-indicator-right {
	right: -2px;
	top: 0;
	bottom: 0;
	border-left: var(--granite-drop-indicator-width) solid deeppink;
}

.drop-indicator-active {
	opacity: 1;
}

.insert-indicator {
	position: absolute;
  display: flex;
	z-index: 1;
  opacity: 0.1;
}

.insert-indicator-above {
	top: 0;
	left: 0;
  transform: translateY(-50%);
}

.insert-indicator-below {
	bottom: 0;
	left: 0;
  transform: translateY(50%);
}

.insert-indicator-is-hovering {
  right: 0;
}

.insert-indicator.insert-indicator--indent {
  left: 20px;
  z-index: 8;
}

.insert-indicator-pin {
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: opacity 200ms ease;
}

.insert-indicator-pin-inner {
	width: 20px;
	height: 20px;
	background: #99e5ff;
	border-radius: 50%;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: bolder;
  line-height: 18px;
}

.insert-indicator-line-container {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
}

.insert-indicator-line {
	background-color: #00bfff;
  height: 4px;
	opacity: 0;
  z-index: -1;
  position: relative;
}

.insert-indicator-line.insert-indicator-line-extend {
  animation-name: identifier;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.insert-indicator-is-target .insert-indicator-pin {
	z-index: 1;
	opacity: 1;
}

.insert-indicator:hover .insert-indicator-pin {
  cursor: pointer;
}

@keyframes identifier {
  0% {
    width: 0;
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.insert-indicator-block {
  z-index: 1;
}

.granite-block:hover > .insert-indicator-block {
  opacity: 0.8;
}
.insert-indicator-row {
  z-index: 2;
}
.granite-row:hover > .insert-indicator-row {
  opacity: 0.4;
}

.insert-indicator-masterRow {
  opacity: 0.3;
  z-index: 3;
}

.insert-indicator-row-allowed {
  z-index: 4;
}

.insert-indicator-row-allowed .insert-indicator-pin-inner,
.insert-indicator-row-allowed .insert-indicator-line {
  background-color: #0ecc35;
}

.insert-indicator:hover,
.insert-indicator.insert-indicator-row:hover {
  opacity: 1;
}



.granite-insert-plugin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.granite-insert-plugin-modal {
  font-family: Helvetica, 'sans-serif';
  box-shadow: 0 0 30px -3px rgba(0,0,0,0.37);
  background: #fff;
  overflow: auto;
  --webkit-overflow-scrolling: touch;
  border-radius: 4px;
  outline: none;
  padding: 20px;
  z-index: 10;
  min-width: 50vw;
}

.granite-insert-plugin-header {
  margin: 0 0 10px 0;
}

.granite-insert-plugin-list {
  margin: 15px 0;
}

.granite-insert-plugin-blocks-header,
.granite-insert-plugin-rows-header {
  margin: 0 0 4px 0;
  color: darkgrey;
}

.granite-insert-plugin-blocks-list,
.granite-insert-plugin-rows-list {
  display: flex;
  flex-wrap: wrap;
  /* Apply a negative margin for the margin each item has so the outside space is still in line */
  margin: 0 -6px 8px -6px;
}

.granite-insert-plugin-item-container {
  flex: 1 1 45%;
  display: flex;
}

.granite-insert-plugin-item {
  border: 1px solid darkgrey;
  padding: 10px;
  /* Here is the margin that is negated in the container */
  margin: 6px;
  transition: all 200ms ease-out;
  width: 100%;
  min-height: 70px;
}

.granite-insert-plugin-item:hover {
  cursor: pointer;
  background: #e3e3e3;
}

.granite-insert-plugin-item-description {
  color: #7b7b7b;
}

.granite-insert-plugin-cancel {
  border: 1px solid indianred;
  color: indianred;
  padding: 10px;
  margin: 8px 0;
  transition: all 200ms ease-out;
}

.granite-insert-plugin-cancel:hover {
  cursor: pointer;
  background: indianred;
  color: white;
}

.granite-block {
	position: relative;
	padding: 15px;
}

.granite-block .drop-indicator-right,
.granite-block .drop-indicator-left {
  top: 15px;
  bottom: 15px;
}

/* only add the edit styling if we're in an active edit instance */
.granite-edit-container .granite-block-is-editing {
  z-index: 10;
  position: relative;
  box-shadow: 0 0 30px 10px rgba(0,0,0,0.2);
  background: white;
}

.granite-edit-container .granite-block {
  position: relative;
  transition: color 200ms ease-out;
}

.granite-edit-container .granite-block--mode-layout {
  cursor: grab;
}

.granite-block-content {
	transition: opacity 200ms ease;
}

/* Darken the edit container a bit on hover */
.granite-edit-container--layout .granite-block--mode-layout:hover .granite-block-content:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0,0,0,0.2);
}

.granite-block-is-dragging .granite-block-content {
	opacity: 0;
}

.granite-block-toolbar {
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 0;
	margin: 0;
	list-style: none;
	background: #3e3e3e;
	opacity: 0;
	transition: all 450ms ease-in;
  z-index: 1;
}

.granite-block:not(.granite-block-is-dragging):hover .granite-block-toolbar {
	opacity: 1;
}

.granite-block-is-editing .granite-block-toolbar {
  opacity: 1;
  top: calc(100% - 6px);
  transform: translate(-50%,0);
}

.granite-block-toolbar-item {
	display: flex;
	align-items: center;
	color: #ddd;
	font-family: sans-serif Helvetica Arial;
	padding: 6px 14px;
	font-size: 14px;
  transition: all 200ms ease-in;
  text-transform: uppercase;
}

.granite-block-toolbar-item:not(:first-child):not(:only-child) {
  border-left: 1px solid lightgrey;
}

.granite-block-toolbar-item-label {
  cursor: grab;
  background: #565656;
}

.granite-block-toolbar-item-delete,
.granite-block-toolbar-item-edit,
.granite-block-toolbar-item-done,
.granite-block-toolbar-item-cancel {
	cursor: pointer;
}

.granite-block-toolbar-item-delete:hover,
.granite-block-toolbar-item-cancel:hover {
	background: #b92f00;
  color: white;
}

.granite-block-toolbar-item-edit:hover,
.granite-block-toolbar-item-done:hover {
  background: forestgreen;
  color: white;
}

.granite-block-placeholder {
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #aaaaaa;
	border: 2px dashed #434343;
	border-radius: 2px;
	opacity: 0;
  pointer-events: none;
	transition: opacity 200ms ease;
}

.granite-block-placeholder-show {
	opacity: 1;
  z-index: 0;
}


.granite-row {
	position: relative;
  /* Rows should take the entire width of their container */
  width: 100%;
}

.granite-column {
	position: relative;
}

.granite-column-debug-size {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
}

.granite-column-size-12 {
  grid-column: span 12;
}

.granite-column-size-12 > .granite-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.granite-column-size-11 {
  grid-column: span 11;
}

.granite-column-size-11 > .granite-row {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}

.granite-column-size-10 {
  grid-column: span 10;
}

.granite-column-size-10 > .granite-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.granite-column-size-9 {
  grid-column: span 9;
}

.granite-column-size-9 > .granite-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}

.granite-column-size-8 {
  grid-column: span 8;
}

.granite-column-size-8 > .granite-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.granite-column-size-7 {
  grid-column: span 7;
}

.granite-column-size-7 > .granite-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.granite-column-size-6 {
  grid-column: span 6;
}

.granite-column-size-6 > .granite-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.granite-column-size-5 {
  grid-column: span 5;
}

.granite-column-size-5 > .granite-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.granite-column-size-4 {
  grid-column: span 4;
}

.granite-column-size-4 > .granite-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.granite-column-size-3 {
  grid-column: span 3;
}

.granite-column-size-3 > .granite-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.granite-column-size-2 {
  grid-column: span 2;
}

.granite-column-size-2 > .granite-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.granite-column-size-1 {
  grid-column: span 1;
}

.granite-column-size-1 > .granite-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}


.granite-column-size-manager-resizer {
  position: absolute;
  top: 0;
  right: -15px;
  bottom: 0;
  width: 30px;
  cursor: col-resize;
  z-index: 1;
}

.granite-column-size-manager-resizer-line {
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  background: deeppink;
  opacity: 0;
  transition: opacity 200ms ease;
}

.granite-column-size-manager-resizer:hover .granite-column-size-manager-resizer-line,
.granite-column-size-manager-resizer-active .granite-column-size-manager-resizer-line
{
  opacity: 1;
}

.granite-row-container {
  width: 100%;
  position: relative;
}

.granite-row-container > * {
  width: 100%;
  grid-column: span 12;
}

.granite-row-plugin-controls {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  grid-column: unset;
  display: flex;
  transform: translate(-50%,-50%);
  padding: 0;
  margin: 0;
  list-style: none;
  background: #3e3e3e;
  opacity: 0;
  transition: all 200ms ease;
  z-index: 5;
}

.granite-edit-container .granite-row-container:hover .granite-row-plugin-controls {
  opacity: 1;
}

.granite-row-plugin-btn {
  display: flex;
  align-items: center;
  color: #ddd;
  font-family: sans-serif Helvetica Arial;
  padding: 6px 14px;
  font-size: 14px;
  transition: all 200ms ease-in;
  text-transform: uppercase;
}

.granite-row-plugin-delete-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #ddd;
  font-family: sans-serif Helvetica Arial;
  padding: 6px 14px;
  font-size: 14px;
  transition: all 200ms ease-in;
  text-transform: uppercase;
}

.granite-row-plugin-delete-btn:hover {
  background: #b92f00;
  color: white;
}

.granite-row-plugin-children-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.granite-master-row {
	display: grid;
  grid-template-columns: repeat(12, 1fr);
	position: relative;
}


* {
	box-sizing: border-box;
}

.granite-edit-overlay {
  z-index: 9;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.4);
}

/* Debug styling */
.debug-drag-info {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 11px;
}

.debug-ancestry {
  font-size: 11px;
  font-weight: bold;
}
.granite-edit-container--debug-draw .granite-block,
.granite-edit-container--debug-draw .granite-column,
.granite-edit-container--debug-draw .granite-master-row,
.granite-edit-container--debug-draw .granite-row {
  border-width: 5px;
  border-style: solid;
  border-bottom: none;
  border-top: none;
}

.granite-edit-container--debug-draw .granite-block {
  border-color: rgba(255, 16, 0, 0.6);
}
.granite-edit-container--debug-draw .granite-column {
  border-color: rgba(211, 214, 13, 0.6);
}
.granite-edit-container--debug-draw .granite-master-row {
  border-color: rgba(0, 4, 255, 0.6);
}
.granite-edit-container--debug-draw .granite-row {
  border-color: rgba(2, 152, 6, 0.6);
}

.granite-plugin-divider {
  background: black;
  height: 2px;
  width: 100%;
  margin: 15px 0;
}

.granite-edit-container {
  /* Overrides the border radius setting in the theme. */
  --ck-border-radius: 2px;

  /* Overrides the default font size in the theme. */
  --ck-font-size-base: 14px;

  /* Helper variables to avoid duplication in the colors. */
  --ck-custom-background: hsl(270, 1%, 29%);
  --ck-custom-foreground: hsl(255, 3%, 18%);
  --ck-custom-border: hsla(300, 1%, 22%, 0.46);
  --ck-custom-white: hsl(0, 0%, 100%);

  /* -- Overrides generic colors. ------------------------------------------------------------- */

  --ck-color-base-foreground: var(--ck-custom-background);
  --ck-color-focus-border: none;
  --ck-focus-ring: none;
  --ck-color-text: hsl(0, 0%, 98%);
  --ck-color-shadow-drop: hsla(0, 0%, 0%, 0.2);
  --ck-color-shadow-inner: hsla(0, 0%, 0%, 0.1);

  /* -- Overrides the default .ck-button class colors. ---------------------------------------- */

  --ck-color-button-default-background: var(--ck-custom-background);
  --ck-color-button-default-hover-background: hsl(270, 1%, 22%);
  --ck-color-button-default-active-background: hsl(270, 2%, 20%);
  --ck-color-button-default-active-shadow: hsl(270, 2%, 23%);
  --ck-color-button-default-disabled-background: var(--ck-custom-background);

  --ck-color-button-on-background: var(--ck-custom-foreground);
  --ck-color-button-on-hover-background: hsl(255, 4%, 16%);
  --ck-color-button-on-active-background: hsl(255, 4%, 14%);
  --ck-color-button-on-active-shadow: hsl(240, 3%, 19%);
  --ck-color-button-on-disabled-background: var(--ck-custom-foreground);

  --ck-color-button-action-background: hsl(168, 76%, 42%);
  --ck-color-button-action-hover-background: hsl(168, 76%, 38%);
  --ck-color-button-action-active-background: hsl(168, 76%, 36%);
  --ck-color-button-action-active-shadow: hsl(168, 75%, 34%);
  --ck-color-button-action-disabled-background: hsl(168, 76%, 42%);
  --ck-color-button-action-text: var(--ck-custom-white);

  --ck-color-button-save: hsl(120, 100%, 46%);
  --ck-color-button-cancel: hsl(15, 100%, 56%);

  /* -- Overrides the default .ck-dropdown class colors. -------------------------------------- */

  --ck-color-dropdown-panel-background: var(--ck-custom-background);
  --ck-color-dropdown-panel-border: var(--ck-custom-foreground);

  /* -- Overrides the default .ck-input class colors. ----------------------------------------- */

  --ck-color-input-background: var(--ck-custom-foreground);
  --ck-color-input-border: hsl(257, 3%, 43%);
  --ck-color-input-text: hsl(0, 0%, 98%);
  --ck-color-input-disabled-background: hsl(255, 4%, 21%);
  --ck-color-input-disabled-border: hsl(250, 3%, 38%);
  --ck-color-input-disabled-text: hsl(0, 0%, 46%);

  /* -- Overrides the default .ck-list class colors. ------------------------------------------ */

  --ck-color-list-background: var(--ck-custom-background);
  --ck-color-list-button-hover-background: var(--ck-color-base-foreground);
  --ck-color-list-button-on-background: var(--ck-color-base-active);
  --ck-color-list-button-on-background-focus: var(--ck-color-base-active-focus);
  --ck-color-list-button-on-text: var(--ck-color-base-background);

  /* -- Overrides the default .ck-balloon-panel class colors. --------------------------------- */

  --ck-color-panel-background: var(--ck-custom-background);
  --ck-color-panel-border: var(--ck-custom-border);

  /* -- Overrides the default .ck-toolbar class colors. --------------------------------------- */

  --ck-color-toolbar-background: var(--ck-custom-background);
  --ck-color-toolbar-border: var(--ck-custom-border);

  /* -- Overrides the default .ck-tooltip class colors. --------------------------------------- */

  --ck-color-tooltip-background: hsl(252, 7%, 14%);
  --ck-color-tooltip-text: hsl(0, 0%, 93%);

  /* -- Overrides the default colors used by the ckeditor5-widget package. -------------------- */

  --ck-color-widget-blurred-border: hsl(0, 0%, 87%);
  --ck-color-widget-hover-border: hsl(43, 100%, 68%);
  --ck-color-widget-editable-focus-background: var(--ck-custom-white);

  /* -- Overrides the default colors used by the ckeditor5-link package. ---------------------- */

  --ck-color-link-default: hsl(190, 100%, 75%);

  --ck-spacing-standard: 0;

  --ck-spacing-large: 0;
}

/* Force kill the focus styling */
.ck.ck-editor__editable_inline {
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

[data-granite-plugin-id="text-editor"] p:first-child {
  margin-top: 0;
}
[data-granite-plugin-id="text-editor"] p:last-child {
  margin-bottom: 0;
}

.granite-collapsible-row-container {
  box-shadow: 0 0 12px 3px rgba(215,215,215,0.2);
  margin-bottom: 15px;
}

.granite-collapsible-row-children {
  width: 100%;
  padding: 10px 15px 20px 15px;
  max-height: 4000px;
  transition: max-height 300ms, padding 325ms;
}

.granite-collapsible-row-top-bar {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 15px 20px;
}

.granite-collapsible-row-title {
  flex: 1 0 auto;
  max-width: 100%;
}

.granite-collapsible-row-container .granite-collapsible-row-title .ck p,
.granite-collapsible-row-title p {
  margin-top: 0;
  margin-bottom: 0;
}

.granite-collapsible-row-toggle {
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.granite-collapsible-row-toggle svg {
  transition: transform 300ms ease-out;
  transform: rotate(0deg);
}

.granite-collapsible-row-collapsed .granite-collapsible-row-children {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.granite-collapsible-row-collapsed .granite-collapsible-row-toggle svg {
  transform: rotate(180deg);
}

.spacer-plugin-dragger {
  border-radius: 50%;
  background: #2e2e2e;
  width: 15px;
  height: 15px;
}

.spacer-plugin-dragger-area {
  position: absolute;
  top: 100%;
  padding: 15px;
  left: 50%;
  cursor: ns-resize;
  transform: translate(-50%, -50%);
}

.spacer-plugin {
  min-height: 20px;
}

.granite-edit-container .granite-block:hover .spacer-plugin,
.granite-edit-container .granite-block-is-editing .spacer-plugin
{
  border: 2px solid #7f7f7f;
  margin: -2px;
  border-radius: 4px;
}

.spacer-plugin-pixel-height {
  min-height: 20px;
}


@charset "UTF-8";
body .ck__T1Ujr.ck-balloon-panel__2Xf-p {
  z-index: 99999; }

.accent-header,
.coresite .accent-header,
.granite-plugin-contact-header {
  background: #197da4;
  color: white;
  padding: 16px 18px 13px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin: 0;
  line-height: normal; }
  .accent-header p,
  .coresite .accent-header p,
  .granite-plugin-contact-header p {
    line-height: normal;
    margin: 0;
    color: #ffffff; }

.coresite .accent-header,
.coresite .atc-subheader-container {
  background-color: #0072cf; }

.coresite .atc-hotline-link,
.coresite .news-article--frontpage--category,
.coresite .typesContainer .category,
.coresite .atc-add-to-calendar .react-add-to-calendar .react-add-to-calendar__button,
.coresite .granite-plugin-link-icon-title-body-cta-cta,
.coresite .granite-plugin-link-image-and-title-title,
.coresite .granite-plugin-link-image-title-body-cta-cta,
.coresite .granite-plugin-link-image-title-body-cta-title,
.coresite .viewModeActive {
  color: #0072cf; }

.coresite .granite-plugin-link-image-title-body-cta-cta {
  border: 1px solid #0072cf; }

.coresite .headerNav li a:hover {
  border-bottom: 2px solid #0072cf; }

.coresite .accent-header,
.coresite .coresite .accent-header,
.coresite .granite-plugin-contact-header {
  background: #0072cf; }

body .ck__T1Ujr.ck-balloon-panel__2Xf-p {
  z-index: 99999; }

/**
  This is intended to theme anything using the granite editor on the entire site
 */
 {
  /**
  This is included by the /lib/_granite-theme.scss
 */
  /**
  This is included by the /lib/_granite-theme.scss
 */ }
  .granite-insert-plugin-modal {
    max-width: 90vw;
    max-height: 100vh;
    overflow: auto; }
    @media (min-width: 1280px) {
      .granite-insert-plugin-modal {
        max-width: 75vw; } }
  @media (min-width: 1024px) {
    .granite-insert-plugin-rows-container .granite-insert-plugin-item {
      flex: 0 0 calc(50% - 12px); }
    .granite-insert-plugin-item-container {
      flex: 1 1 33%; } }
  .granite-insert-plugin-blocks-container:first-child .granite-insert-plugin-blocks-header {
    display: none; }
  .granite-insert-plugin-item-name {
    margin-bottom: 4px; }
  .granite-insert-plugin-item-description {
    font-size: 14px;
    line-height: 1.2; }
  .granite-block {
    padding-top: 0;
    padding-bottom: 0; }
  .granite-master-row {
    margin: 0 -15px; }
  .granite-master-row .granite-collapsible-row-container .granite-collapsible-row-top-bar {
    padding: 20px 15px; }
  .granite-collapsible-row-children {
    margin: 0 -15px;
    max-height: none; }
  .granite-block[data-granite-plugin-id="spacer"] {
    padding: 15px; }
  .granite-plugin-divider,
  .granite-edit-container .granite-plugin-divider {
    background: #D7D7D7 !important;
    margin: 0; }
  .granite-block[data-granite-plugin-id="divider"] {
    padding: 15px 0; }
  .granite-edit-container .granite-block:hover .spacer-plugin,
  .granite-edit-container .granite-block-is-editing .spacer-plugin {
    margin: 0; }
  .granite-block-is-editing .granite-block-toolbar {
    opacity: 1;
    top: calc(100% - 4px); }
  .granite-block[data-granite-plugin-id="text-editor"] li {
    line-height: 1.7;
    color: #162732; }
  .granite-block[data-granite-plugin-id="text-editor"] li::marker {
    color: #162732; }
  .granite-block[data-granite-plugin-id="video"] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden; }
    .granite-block[data-granite-plugin-id="video"] iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }
    .granite-block[data-granite-plugin-id="video"] p {
      display: none; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-image-image-container {
    width: 100%; }
    @media (min-width: 420px) {
      .granite-plugin-image-image-container {
        display: flex; } }
  .granite-plugin-image-image {
    display: block;
    max-width: 100%;
    height: auto;
    pointer-events: none; }
  .loadingSpinnerModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-block-quote--container {
    color: white;
    background-color: #d50f3f;
    padding: 28px;
    flex-grow: 1; }
    .granite-plugin-block-quote--container p {
      color: #ffffff; }
  .coresite .granite-plugin-block-quote--container,
  .modal-theme-coresite .granite-plugin-block-quote--container {
    background-color: #0072cf; }
    .coresite .granite-plugin-block-quote--container p,
    .modal-theme-coresite .granite-plugin-block-quote--container p {
      color: #ffffff; }
  .granite-plugin-block-quote--editor-hidden {
    display: none; }
  .atc-quote-body {
    margin: 0 0 23px 0;
    font-size: 18px; }
  .atc-quote-body:before {
    content: '\201C';
    margin-left: -1em;
    width: 1em;
    position: absolute;
    text-align: right; }
  .atc-quote-body:after {
    content: '\201D'; }
  .atc-quote-attribution {
    font-size: 14px;
    margin: 0; }
  .atc-quote-attribution-extra {
    font-size: 12px;
    margin: 6px 0 0 0; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-block .accent-header {
    margin: 15px 0;
    min-width: 120px;
    text-align: center; }
    .granite-block .accent-header .ck-placeholder:before {
      color: rgba(255, 255, 255, 0.8); }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-contact-header {
    margin-bottom: 40px; }
  .granite-plugin-contact-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative; }
    .granite-plugin-contact-contacts:after {
      content: '';
      flex: auto; }
  .granite-plugin-contact-contacts .loading-spinner {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
    align-items: center;
    justify-content: center; }
  .granite-plugin-contact-user-placeholder,
  .atc-contact-container {
    width: 100%; }
    @media (min-width: 1024px) {
      .granite-plugin-contact-user-placeholder,
      .atc-contact-container {
        width: calc(100% / 2); } }
    @media (min-width: 1800px) {
      .granite-plugin-contact-user-placeholder,
      .atc-contact-container {
        width: calc(100% / 3); } }
  .granite-plugin-contact-user-placeholder {
    height: 95px;
    margin-bottom: 28px; }
  .atc-contact-container {
    margin-bottom: 28px;
    display: flex;
    word-break: break-word; }
  .atc-contact-container > img {
    border-radius: 50%;
    width: 80px;
    height: 80px; }
  .atc-contact-text {
    margin: 0 16px;
    font-size: 12px; }
  .atc-contact-image {
    cursor: pointer;
    width: 80px;
    height: 80px; }
  .atc-contact-name {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: bold;
    font-family: 'FrutigerCondensed', sans-serif;
    cursor: pointer;
    color: #197da4; }
  .atc-contact-title {
    margin: 0 0 10px 0;
    display: inline-block; }
  .atc-contact-department {
    margin: 0 0 12px 0; }
  .atc-contact-email,
  .atc-contact-phone {
    color: #197da4;
    display: block;
    text-decoration: none; }
  .atc-contact-email {
    font-weight: bold; }
    .atc-contact-email img {
      margin-left: 8px;
      height: 0.7em;
      width: auto; }
  .atc-contact-phone {
    margin: 6px 0 0 0; }
  .atc-contact-photo {
    cursor: pointer; }
  .atc-contact-photo img,
  .atc-contact-photo svg {
    width: 77px;
    border-radius: 50%;
    height: 77px;
    object-fit: cover; }
  .atc-contact-photo .avatarContainer {
    position: relative; }
  .atc-contact-photo .avatarLabel {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px; }
  .coresite .atc-contact-name,
  .coresite .atc-contact-email,
  .coresite .atc-contact-phone {
    color: #0072cf; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-files-outer-container {
    width: 100%;
    overflow-x: auto; }
  .granite-plugin-files-container {
    display: table;
    width: 100%;
    border-collapse: collapse; }
  .granite-plugin-files-headings {
    display: table-row-group;
    padding-bottom: 6px;
    border-bottom: 1px solid #d8d8d8;
    width: 100%;
    background: #ffffff; }
  .granite-plugin-files-header {
    display: table-cell;
    color: #6A737B;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem; }
  .granite-plugin-files-title {
    font-weight: bold;
    color: #197da4;
    margin-top: 0;
    font-size: 1rem; }
  .coresite .granite-plugin-files-title {
    color: #0072cf; }
  .granite-plugin-files-header-type {
    min-width: 100px;
    text-align: center; }
  .granite-plugin-files-header-name {
    min-width: 200px; }
  .granite-plugin-files-order-chevron {
    margin-left: 8px;
    width: auto;
    height: 9px;
    display: inline-block;
    transition: transform 350ms ease-in-out; }
  .granite-plugin-files-header[data-file-direction="DESC"] .granite-plugin-files-order-chevron {
    transform: rotate(180deg); }
  .granite-plugin-files-files {
    width: 100%;
    display: table-row-group;
    position: relative; }
  .granite-plugin-files-add-file-placeholder {
    font-size: 14px;
    margin: 12px 0; }
  .granite-plugin-files-file-placeholder {
    height: 54px;
    margin: 4px 0;
    width: 100%; }
  .granite-plugin-files-file-container {
    width: 100%;
    display: table-row;
    word-break: break-word;
    padding: 18px 0;
    background: #ffffff; }
  .granite-plugin-files-file-dark-row {
    background-color: #f1f2f3; }
  .granite-plugin-files-file-field {
    display: table-cell;
    font-size: 14px;
    padding: 1rem; }
  .granite-plugin-files-file-field-type {
    width: 100px;
    font-size: 18px;
    color: #90979D;
    text-align: center; }
  .granite-plugin-files-file-field-description p {
    margin: 0; }
  .granite-plugin-files-file-link {
    color: #197da4;
    text-decoration: none; }
  .granite-plugin-files-header-isActive {
    color: #162732; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-announcement-has-white-background {
    background: #ffffff;
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2); }
  .granite-plugin-announcement-grid {
    display: grid;
    grid-gap: 1rem;
    margin: 0.5em 0; }
    @media (min-width: 1024px) {
      .granite-plugin-announcement-grid {
        margin: 0; } }
  @media (min-width: 1024px) {
    .granite-plugin-announcement-grid-one-column {
      grid-template-columns: 1fr; }
    .granite-plugin-announcement-grid-two-column {
      grid-template-columns: 1fr 1fr; }
    .granite-plugin-announcement-grid-three-column {
      grid-template-columns: 1fr 1fr 1fr; }
    .granite-plugin-announcement-grid:not(.granite-plugin-announcement-grid-one-column):not(.granite-plugin-announcement-grid-two-column):not(.granite-plugin-announcement-grid-three-column) {
      grid-template-columns: 1fr 1fr 1fr; } }
  .granite-plugin-announcement-grid-item {
    max-width: 100%;
    position: relative;
    height: 100%;
    background: #ffffff;
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2); }
  .granite-plugin-announcement-container {
    display: block;
    text-decoration: none; }
  .granite-plugin-announcement-error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center; }
  .granite-plugin-announcement-container img {
    width: 100%;
    margin-bottom: 1rem; }
  .granite-plugin-announcement-category {
    color: #D11242;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; }
  .granite-plugin-announcement-title {
    font-weight: 400;
    font-size: 18px;
    color: #162732;
    text-decoration: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; }
  .coresite .granite-plugin-announcement-title,
  .modal-theme-coresite .granite-plugin-announcement-title {
    color: #0072cf; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-featuredevents-has-white-background {
    background: #ffffff;
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2); }
  .granite-plugin-featuredevents-grid {
    display: grid;
    grid-gap: 1rem;
    margin: 0.5em 0; }
    @media (min-width: 1024px) {
      .granite-plugin-featuredevents-grid {
        margin: 0; } }
  @media (min-width: 1024px) {
    .granite-plugin-featuredevents-grid-one-column {
      grid-template-columns: 1fr; }
    .granite-plugin-featuredevents-grid-two-column {
      grid-template-columns: 1fr 1fr; }
    .granite-plugin-featuredevents-grid-three-column {
      grid-template-columns: 1fr 1fr 1fr; }
    .granite-plugin-featuredevents-grid:not(.granite-plugin-featuredevents-grid-one-column):not(.granite-plugin-featuredevents-grid-two-column):not(.granite-plugin-featuredevents-grid-three-column) {
      grid-template-columns: 1fr 1fr 1fr; } }
  .granite-plugin-featuredevents-grid-item {
    max-width: 100%;
    position: relative;
    height: 100%;
    background: #ffffff;
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2); }
  .granite-plugin-featuredevents-container {
    display: block;
    text-decoration: none; }
  .granite-plugin-featuredevents-error {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center; }
  .granite-plugin-featuredevents-container img {
    width: 100%;
    margin-bottom: 1rem; }
  .granite-plugin-featuredevents-category {
    color: #D11242;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; }
  .granite-plugin-featuredevents-title {
    font-weight: 400;
    font-size: 18px;
    color: #162732;
    text-decoration: none;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem; }
  .coresite .granite-plugin-featuredevents-title,
  .modal-theme-coresite .granite-plugin-featuredevents-title {
    color: #0072cf; }
  .granite-plugin-featuredevents-image-wrapper {
    position: relative;
    width: 100%; }
  .granite-plugin-featuredevents-image-wrapper img {
    width: 100%;
    height: auto;
    display: block; }
  .granite-plugin-featuredevents-date-overlay {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: white;
    color: black;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    min-width: 44px; }
  .granite-plugin-featuredevents-date-day {
    line-height: 1; }
  .granite-plugin-featuredevents-date-month {
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    line-height: 1; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-link-has-white-background {
    background: #ffffff;
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2); }
  .granite-plugin-link-grid {
    display: grid;
    grid-gap: 1rem;
    margin: 0.5em 0; }
    @media (min-width: 1024px) {
      .granite-plugin-link-grid {
        margin: 0; } }
  @media (min-width: 1024px) {
    .granite-plugin-link-grid-one-column {
      grid-template-columns: 1fr; }
    .granite-plugin-link-grid-two-column {
      grid-template-columns: 1fr 1fr; }
    .granite-plugin-link-grid-three-column {
      grid-template-columns: 1fr 1fr 1fr; }
    .granite-plugin-link-grid:not(.granite-plugin-link-grid-one-column):not(.granite-plugin-link-grid-two-column):not(.granite-plugin-link-grid-three-column) {
      grid-template-columns: 1fr 1fr 1fr; } }
  .granite-plugin-link-grid-item {
    max-width: 100%;
    position: relative;
    height: 100%; }
  .granite-plugin-link-container, .granite-plugin-link-image-and-title-container, .granite-plugin-link-title-and-small-body-container, .granite-plugin-link-title-and-large-body-container, .granite-plugin-link-icon-and-title-container, .granite-plugin-link-icon-title-body-cta-container, .granite-plugin-link-image-title-body-cta-container {
    display: block;
    text-decoration: none; }
  .granite-plugin-link-image-and-title-container {
    box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2);
    height: 100%;
    background: #ffffff; }
  .granite-plugin-link-image-and-title-image {
    display: block;
    width: 100%;
    height: auto; }
  .granite-plugin-link-image-and-title-title {
    padding: 1rem;
    text-transform: uppercase;
    color: #d50f3f;
    text-decoration: none; }
  .coresite .granite-plugin-link-image-and-title-title,
  .modal-theme-coresite .granite-plugin-link-image-and-title-title {
    color: #0072cf; }
  .granite-plugin-link-title-and-small-body-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%; }
    .granite-plugin-link-title-and-small-body-container:hover .granite-plugin-link-title-and-small-body-title {
      color: #197da4; }
    .granite-plugin-link-title-and-small-body-container:hover .granite-plugin-link-title-and-small-body-chevron {
      display: none; }
    .granite-plugin-link-title-and-small-body-container:hover .granite-plugin-link-title-and-small-body-chevron-hover {
      display: block; }
  .coresite .granite-plugin-link-title-and-small-body-container:hover .granite-plugin-link-title-and-small-body-title,
  .modal-theme-coresite .granite-plugin-link-title-and-small-body-container:hover .granite-plugin-link-title-and-small-body-title {
    color: #0072cf; }
  .coresite .granite-plugin-link-title-and-small-body-chevron-hover,
  .modal-theme-coresite .granite-plugin-link-title-and-small-body-chevron-hover {
    background: #0072cf; }
  .granite-plugin-link-title-and-small-body-inner-container {
    width: 90%;
    padding: 1rem;
    height: 100%; }
  .granite-plugin-link-title-and-small-body-title {
    color: #000000;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem; }
  .granite-plugin-link-title-and-small-body-body {
    color: #000;
    line-height: 1rem;
    font-size: 0.85rem; }
  .granite-plugin-link-title-and-small-body-chevron {
    padding: 1rem; }
  .granite-plugin-link-title-and-small-body-chevron-hover {
    display: none;
    padding: 1rem;
    transition: all 0.15s ease-in-out;
    background: #197da4; }
  .granite-plugin-link-title-and-large-body-container {
    padding: 1rem;
    height: 100%; }
  .granite-plugin-link-title-and-large-body-title {
    color: #d50f3f;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem; }
  .coresite .granite-plugin-link-title-and-large-body-title,
  .modal-theme-coresite .granite-plugin-link-title-and-large-body-title {
    color: #0072cf; }
  .granite-plugin-link-title-and-large-body-body {
    font-weight: bold;
    color: #000;
    line-height: 1.6rem; }
  .granite-plugin-link-icon-and-title-container {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    align-items: center; }
  .granite-plugin-link-icon-and-title-inner-container {
    display: flex;
    align-items: center;
    width: 90%; }
  .granite-plugin-link-icon-and-title-title {
    color: #162732;
    width: 70%; }
  .granite-plugin-link-icon-and-title-icon {
    margin: 14px 18px;
    width: 54px;
    max-height: 54px; }
  .granite-plugin-link-icon-title-body-cta-container {
    display: flex;
    justify-content: flex-start;
    text-decoration: none;
    padding: 1rem;
    height: 100%;
    align-items: flex-start; }
  .granite-plugin-link-icon-title-body-cta-icon {
    margin-right: 1rem;
    width: 56px; }
  .granite-plugin-link-icon-title-body-cta-title {
    color: #162732;
    font-weight: bold;
    margin-bottom: 0.25rem; }
  .granite-plugin-link-icon-title-body-cta-body {
    color: #162732;
    font-size: 0.95rem;
    margin-bottom: 0.25rem; }
  .granite-plugin-link-icon-title-body-cta-cta {
    font-size: 0.95rem;
    color: #d50f3f; }
  .coresite .granite-plugin-link-icon-title-body-cta-cta,
  .modal-theme-coresite .granite-plugin-link-icon-title-body-cta-cta {
    color: #0072cf; }
  .granite-plugin-link-image-title-body-cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-decoration: none;
    height: 100%;
    align-items: center; }
  .granite-plugin-link-image-title-body-cta-image {
    width: 100%; }
    @media (min-width: 1024px) {
      .granite-plugin-link-image-title-body-cta-image {
        width: 25%;
        object-fit: cover;
        height: 100%; } }
  .granite-plugin-link-image-title-body-cta-inner-container {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
    @media (min-width: 1024px) {
      .granite-plugin-link-image-title-body-cta-inner-container {
        padding: 1rem 2rem;
        width: 75%; } }
  @media (max-width: 768px) {
    .granite-plugin-link-image-title-body-cta-inner-container > div {
      width: 100%; } }
  .granite-plugin-link-image-title-body-cta-copy-container {
    flex: 0 0 100%;
    margin-bottom: 1em; }
    .granite-plugin-link-image-title-body-cta-copy-container + div {
      width: 100%; }
    @media (min-width: 768px) {
      .granite-plugin-link-image-title-body-cta-copy-container {
        margin-bottom: 1em; } }
    @media (min-width: 1024px) {
      .granite-plugin-link-image-title-body-cta-copy-container {
        flex: 1 1 40%; }
        .granite-plugin-link-image-title-body-cta-copy-container + div {
          width: 20%; } }
  .granite-plugin-link-image-title-body-cta-title {
    color: #d50f3f;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem; }
  .granite-plugin-link-image-title-body-cta-body {
    color: #162732;
    font-size: 0.95rem;
    margin: 0; }
  .granite-plugin-link-image-title-body-cta-cta {
    cursor: pointer;
    background-color: #ffffff;
    background: transparent;
    font-size: 0.95rem;
    color: #d50f3f;
    border: 1px solid #d50f3f;
    padding: 0.75rem 0.65rem;
    display: block;
    text-align: center; }
    .granite-plugin-link-image-title-body-cta-cta:focus {
      outline: 0; }
    @media (min-width: 1024px) {
      .granite-plugin-link-image-title-body-cta-cta {
        margin-left: 1rem; } }
  .coresite .granite-plugin-link-image-title-body-cta-title,
  .modal-theme-coresite .granite-plugin-link-image-title-body-cta-title {
    color: #0072cf; }
  .coresite .granite-plugin-link-image-title-body-cta-cta,
  .modal-theme-coresite .granite-plugin-link-image-title-body-cta-cta {
    color: #0072cf;
    border: 1px solid #0072cf; }
  .granite-plugin-link-title-title {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cacaca;
    height: 100%;
    color: #000;
    transition: color 200ms ease-out; }
    .granite-plugin-link-title-title:hover {
      color: #197da4; }
  .granite-plugin-link-title-title-text {
    width: 90%;
    color: #000;
    transition: color 200ms ease-out; }
    .granite-plugin-link-title-title-text:hover {
      color: #197da4; }
  .coresite .granite-plugin-link-title-title:hover,
  .modal-theme-coresite .granite-plugin-link-title-title:hover {
    color: #0072cf; }
  .coresite .granite-plugin-link-title-title-text:hover,
  .modal-theme-coresite .granite-plugin-link-title-title-text:hover {
    color: #0072cf; }
  .granite-plugin-link-title-chevron {
    position: absolute;
    right: 0; }
  .granite-plugin-link-icon-and-title-chevron-block {
    background-image: url("/static/icons/chevrons/right-red.svg");
    background-position: center;
    background-repeat: no-repeat;
    width: 54px;
    height: 100%; }
  .coresite .granite-plugin-link-icon-and-title-chevron-block,
  .modal-theme-coresite .granite-plugin-link-icon-and-title-chevron-block {
    background-image: url("/static/icons/chevrons/right-red-coresite.svg"); }
  .granite-plugin-link-icon-and-title-container:hover .granite-plugin-link-icon-and-title-chevron-block {
    background-color: #197da4;
    background-image: url("/static/icons/chevrons/right-white.svg"); }
  .coresite .granite-plugin-link-icon-and-title-container:hover .granite-plugin-link-icon-and-title-chevron-block,
  .modal-theme-coresite .granite-plugin-link-icon-and-title-container:hover .granite-plugin-link-icon-and-title-chevron-block {
    background-color: #0072cf; }
  .granite-plugin-link-image-title-large-caption-container {
    display: block;
    max-width: 100%;
    position: relative;
    height: 100%; }
  .granite-plugin-link-image-title-large-caption-inner-container {
    padding: 2rem; }
  .granite-plugin-link-image-title-large-caption-image {
    display: block;
    width: 100%;
    height: auto; }
  .granite-plugin-link-image-title-large-caption-title {
    margin: 0;
    color: #d50f3f;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700; }
  .coresite .granite-plugin-link-image-title-large-caption-title,
  .modal-theme-coresite .granite-plugin-link-image-title-large-caption-title {
    color: #0072cf; }
  .granite-plugin-link-image-title-large-caption-body {
    font-weight: 400;
    font-size: 18px;
    margin: 10px 0; }
  .granite-plugin-campaign-container {
    position: relative; }
    .granite-plugin-campaign-container:hover .granite-plugin-campaign-back {
      opacity: 1; }
  .granite-plugin-campaign-front {
    /* display: none; */ }
  .granite-plugin-campaign-back {
    opacity: 0;
    transition: opacity 0.25s ease-out;
    padding: 2rem;
    background: darkgrey;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto; }
  .granite-plugin-campaign-content {
    margin: 0; }
  .granite-plugin-campaign-image-container {
    width: 100%; }
    .granite-plugin-campaign-image-container img {
      width: 100%;
      margin: 0;
      display: block; }
  .granite-plugin-campaign-image {
    width: 100%;
    margin: 0;
    display: block; }
  .granite-plugin-campaign-caption {
    padding: 1rem;
    background: #197da4; }
  .coresite .granite-plugin-campaign-caption,
  .modal-theme-coresite .granite-plugin-campaign-caption {
    background: #0072cf; }
  .granite-plugin-campaign-name, .granite-plugin-campaign-role, .granite-plugin-campaign-market {
    margin: 0;
    color: #fff; }
  @media (min-width: 1024px) {
    .granite-plugin-campaign-grid-one-column {
      grid-template-columns: 1fr; }
    .granite-plugin-campaign-grid-two-column {
      grid-template-columns: 1fr 1fr; }
    .granite-plugin-campaign-grid-three-column {
      grid-template-columns: 1fr 1fr 1fr; }
    .granite-plugin-campaign-grid:not(.granite-plugin-campaign-grid-one-column):not(.granite-plugin-campaign-grid-two-column):not(.granite-plugin-campaign-grid-three-column) {
      grid-template-columns: 1fr 1fr 1fr; } }
  .granite-plugin-campaign-grid {
    display: grid;
    grid-gap: 1rem;
    margin: 0.5em 0; }
    @media (min-width: 1024px) {
      .granite-plugin-campaign-grid {
        margin: 0; } }
  .granite-plugin-campaign-grid-item {
    max-width: 100%;
    position: relative;
    height: 100%; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .atc-link-button {
    text-decoration: none;
    display: inline-block;
    margin: 15px 0; }
  .atc-link-button-contents {
    font-size: 14px;
    padding: 10px 14px 8px 18px;
    color: #197da4;
    border: 1px solid #197da4;
    display: flex;
    align-items: center;
    text-decoration: none; }
    .atc-link-button-contents img {
      margin-left: 10px; }
  .coresite .atc-link-button-contents {
    color: #0072cf;
    border: 1px solid #0072cf; }
  .granite-plugin-image-gallery-container {
    width: 960px;
    margin: 0 auto; }
  .granite-plugin-image-gallery-selected-image-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
    height: 400px;
    overflow: hidden;
    align-items: center; }
  .granite-plugin-image-gallery-selected-image {
    display: block;
    max-height: 400px; }
  .granite-plugin-image-gallery-info {
    padding: 1rem 0rem; }
  .granite-plugin-image-gallery-current-index {
    margin: 0;
    font-size: 0.85rem;
    margin-bottom: 0.25rem; }
  .granite-plugin-image-gallery-current-title {
    margin: 0; }
  .granite-plugin-image-gallery-carousel {
    position: relative;
    display: flex;
    justify-content: space-between; }
  .granite-plugin-image-gallery-carousel-image {
    width: auto;
    height: 100px;
    margin-right: 5px; }
  .granite-plugin-image-gallery-carousel-button {
    width: 40px;
    background: url("/static/icons/chevrons/right-red.svg");
    background-repeat: no-repeat;
    background-position: center center;
    border: 0; }
    .granite-plugin-image-gallery-carousel-button:focus {
      outline: 0; }
  .granite-plugin-image-gallery-left-button {
    transform: rotate(180deg); }
  .granite-plugin-image-gallery-carousel-image-list-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%; }
  .granite-plugin-image-gallery-carousel-image-list {
    display: flex;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden; }
  .granite-plugin-image-gallery-selected {
    box-sizing: border-box;
    border: 4px solid #D11242; }
  .coresite .granite-plugin-image-gallery-carousel-button,
  .modal-theme-coresite .granite-plugin-image-gallery-carousel-button {
    background: url("/static/icons/chevrons/right-red-coresite.svg") no-repeat center center; }
  .coresite .granite-plugin-image-gallery-selected,
  .modal-theme-coresite .granite-plugin-image-gallery-selected {
    border: 4px solid #0072cf; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-white-row-container {
    margin: 15px 0;
    min-height: 1.5em;
    position: relative; }
    .granite-white-row-container:after {
      content: '';
      display: block;
      background: white;
      width: 200vw;
      height: 100%;
      position: absolute;
      top: 0;
      transform: translateX(-50%);
      z-index: -1; }
    .granite-white-row-container:after {
      min-height: 1.5em; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-rss-feed-feed-items {
    list-style: none;
    padding: 0;
    margin: 0; }
  .granite-plugin-rss-feed-feed-item {
    margin: 1em 0;
    display: flex;
    flex-wrap: wrap; }
  .granite-plugin-rss-feed-feed-item--title {
    flex: 0 0 100%;
    margin: 0 0 0.5rem;
    color: #d50f3f;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    display: block; }
  .granite-plugin-rss-feed-feed-item--date {
    display: block;
    flex: 0 0 100%; }
  .granite-plugin-rss-feed-feed-item--image-container {
    flex: 0 0 25%; }
  .granite-plugin-rss-feed-feed-item--image {
    width: 100%;
    height: auto;
    padding-bottom: 56.25%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-block; }
  .granite-plugin-rss-feed-feed-item-text-container {
    flex: 1 1 75%;
    padding: 0 1rem 2rem;
    display: flex; }
  .granite-plugin-rss-feed-feed-item--text {
    flex: 1 1 auto;
    padding-right: 2rem; }
  .granite-plugin-rss-feed-feed-item--link-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center; }
  .granite-plugin-rss-feed-feed-item--link-btn a {
    cursor: pointer;
    font-size: 0.95rem;
    color: #d50f3f;
    border: 1px solid #d50f3f;
    padding: 0.75rem 0.65rem;
    display: block;
    text-align: center; }
  .coresite .granite-plugin-rss-feed-feed-item--link-btn a,
  .modal-theme-coresite .granite-plugin-rss-feed-feed-item--link-btn a {
    color: #0072cf;
    border: 1px solid #0072cf; }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-video-edit-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: white;
    background: #197da4;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    flex-wrap: wrap;
    text-align: center; }
    .granite-plugin-video-edit-preview h1 {
      flex: 0 0 100%;
      margin: 0 0 1rem 0; }
  .granite-plugin-video-edit-preview-title {
    flex: 0 0 80%;
    max-height: 50px;
    overflow: hidden; }
  .granite-plugin-video-edit-preview-src {
    margin: 0 0 0.5rem 0;
    font-weight: bold;
    font-size: 1.2rem; }
  .granite-plugin-video-edit-content {
    display: none;
    width: 0;
    height: 0; }
    .granite-plugin-video-edit-content iframe {
      max-width: 250px;
      max-height: 250px; }
  .granite-plugin-video-thumbnail-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer; }
    .granite-plugin-video-thumbnail-overlay p {
      content: "\25B6";
      font-size: 60px;
      color: #ffffff;
      display: block !important; }
  .granite-plugin-video-fullscreen-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 45, 45, 0.95); }
  body .ck.ck-balloon-panel {
    z-index: 99999; }
  .granite-plugin-callout--container {
    background-color: #e4e5e6;
    padding: 28px;
    flex-grow: 1; }
  .coresite .granite-plugin-callout--container,
  .modal-theme-coresite .granite-plugin-callout--container {
    background-color: #e4e5e6; }
  @media (max-width: 1024px) {
    .granite-column {
      grid-column: span 12; }
    .granite-column > .granite-row {
      grid-template-columns: repeat(12, 1fr); } }

@font-face {
  font-family: Frutiger;
  font-weight: 300;
  src: url("/static/fonts/frutiger-lt-std/light.otf") format("opentype"); }

@font-face {
  font-family: Frutiger;
  font-weight: 400;
  src: url("/static/fonts/frutiger-lt-std/roman.otf") format("opentype"); }

@font-face {
  font-family: Frutiger;
  font-weight: 700;
  src: url("/static/fonts/frutiger-lt-std/bold.otf") format("opentype"); }

@font-face {
  font-family: Frutiger;
  font-weight: 900;
  src: url("/static/fonts/frutiger-lt-std/black.otf") format("opentype"); }

@font-face {
  font-family: FrutigerCondensed;
  src: url("/static/fonts/frutiger-lt-std/cn.otf") format("opentype"); }

body {
  font-family: Frutiger, 'sans-serif';
  background-color: #f1f2f3;
  margin: 0; }

textarea {
  font-family: Frutiger, 'sans-serif'; }

p {
  line-height: 1.7rem;
  color: #162732; }

* {
  box-sizing: border-box; }

#__next {
  overflow: hidden; }

a {
  color: #197da4;
  text-decoration: none; }

.coresite a {
  color: #0072cf; }

.ReactModalPortal .ReactModal__Overlay {
  z-index: 2000; }

body .atc-loading-placeholder-filled {
  background: linear-gradient(270deg, #d8d8d8, white, #d8d8d8);
  background-size: 600% 600%;
  animation-duration: 4s;
  animation-timing-function: ease;
  animation-name: ATCFilledLoading;
  animation-iteration-count: infinite; }
  body .atc-loading-placeholder-filled, body .atc-loading-placeholder-filled * {
    color: transparent !important; }
  body .atc-loading-placeholder-filled i,
  body .atc-loading-placeholder-filled img {
    visibility: hidden !important; }

@media (max-width: 767px) {
  #mainContent .atc-content-admin-button.stats-button {
    display: none; } }

@keyframes ATCFilledLoading {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.granite-collapsible-row-container {
  position: relative;
  box-shadow: none; }
  .granite-collapsible-row-container .granite-collapsible-row-top-bar {
    padding: 20px 0; }
  .granite-collapsible-row-container:hover {
    cursor: pointer; }

.granite-collapsible-row-container:after {
  box-shadow: 0 0 12px 3px rgba(215, 215, 215, 0.2);
  content: '';
  display: block;
  background: white;
  width: 200vw;
  height: 100%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: -1; }

.granite-collapsible-row-container .granite-collapsible-row-title .ck p,
.granite-collapsible-row-title p {
  font-size: 18px;
  font-weight: bold; }

.Toastify__toast-container .Toastify__toast--success .Toastify__toast-icon svg {
  fill: #197da4; }

.Toastify__toast-container .Toastify__toast--success .Toastify__progress-bar.Toastify__progress-bar--success {
  background: #197da4; }

.Toastify__toast-container .Toastify__toast--error .Toastify__toast-icon svg {
  fill: #d21242; }

.Toastify__toast-container .Toastify__toast--error .Toastify__progress-bar.Toastify__progress-bar--success {
  background: #d21242; }

@media print {
  .atc-region-alerts {
    display: none; } }

.hidden__3AbWv {
  display: none; }

.coresite ~ .Toastify .Toastify__toast-container .Toastify__toast--success .Toastify__toast-icon svg {
  fill: #0072cf; }

.coresite ~ .Toastify .Toastify__toast-container .Toastify__toast--success .Toastify__progress-bar.Toastify__progress-bar--success {
  background: #0072cf; }

.coresite ~ .Toastify .Toastify__toast-container .Toastify__toast--error .Toastify__toast-icon svg {
  fill: #0072cf; }

.coresite ~ .Toastify .Toastify__toast-container .Toastify__toast--error .Toastify__progress-bar.Toastify__progress-bar--success {
  background: #0072cf; }

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.f {
  --y: calc(var(--len) - var(--nth));
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  transform: translate3d(0, calc(var(--y) * -40%), 0) scale(calc(1 - 0.05 * var(--y)));
  transition: all 0.3s;
  min-height: 80px;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body .ck__eMEcU.ck-balloon-panel__3Vq60 {
  z-index: 99999; }

.wrapper__2_snR {
  min-height: 350px;
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: -34px; }

body .ck__1wLhH.ck-balloon-panel__1X2Xw {
  z-index: 99999; }

.headerWrapper__v5epF {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px; }

.header__3XePq {
  margin: 0;
  font-size: 1.5rem; }

.metadata__3nwpY {
  font-size: 14px; }

body .ck__1fQHc.ck-balloon-panel__15p2g {
  z-index: 99999; }

.container__2pwVE {
  padding: 24px 0;
  max-width: 1280px;
  margin: 0 auto; }

.filters__2-1ne {
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; }

.searchInputContainer__2_dDC {
  flex: 1 0 100%; }

.selectFilters__38gjv {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 24px;
  gap: 20px;
  width: 100%; }

.selectFiltersSubtypeActive__5m5lK {
  grid-template-columns: repeat(6, 1fr); }

.resultsCountTop__hQh15 {
  margin-bottom: 24px; }

.downloadIcon__1SZLz {
  margin-right: 10px; }

.typeFilterContainer__3Tu6t {
  display: flex;
  align-items: center;
  flex: 1 0 100%;
  margin: 24px 0; }
  @media (min-width: 1024px) {
    .typeFilterContainer__3Tu6t {
      flex: 1 0 50%;
      padding: 0 16px 0 0; } }
  @media (min-width: 1280px) {
    .typeFilterContainer__3Tu6t {
      flex: 0 0 65%; } }

.typeFilterLabel__2mQJ4 {
  flex: 0 0 auto;
  color: #90979D;
  padding-right: 1em; }

.typeFilterSelect__q4R9W {
  flex: 1 1 auto; }

.resultsCount__CETO5 {
  margin-left: auto;
  color: #90979D; }

.infoText__2DFed {
  color: #90979D; }

.footerResults__1q3jT {
  color: #90979D;
  margin: 24px 0;
  text-align: right; }

.resultsWrapperOuter__3t5Ks {
  overflow-x: auto; }

.resultsWrapper__2Re-Q {
  table-layout: fixed;
  border-spacing: 0;
  margin-bottom: 24px;
  font-size: 14px;
  width: 100%; }
  .resultsWrapper__2Re-Q a {
    color: #197da4;
    text-decoration: none; }
  .resultsWrapper__2Re-Q thead {
    background: #ffffff; }
  .resultsWrapper__2Re-Q th {
    font-size: 12px;
    color: #7E888E;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E7E7E7; }
    .resultsWrapper__2Re-Q th.clickableTitle__3CuVr {
      cursor: pointer; }
  .resultsWrapper__2Re-Q td {
    padding: 1rem;
    width: auto; }
  .resultsWrapper__2Re-Q th:nth-child(2),
  .resultsWrapper__2Re-Q td:nth-child(2) {
    width: 250px; }

.coresite .resultsWrapper__2Re-Q a {
  color: #0072cf; }

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

.tableRow__nZTaf:hover {
  background: rgba(41, 163, 210, 0.1); }

.tableRow__nZTaf td {
  word-break: break-word; }

.tableRowEven__1hYcJ {
  background: white; }

.dropdownLinkContainer__1lXq7 {
  position: relative; }
  .dropdownLinkContainer__1lXq7 .dropdownLinkChildren__mmC0A {
    display: none;
    position: absolute;
    flex-direction: row;
    flex-wrap: wrap;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.3); }
  .dropdownLinkContainer__1lXq7:hover .dropdownLinkChildren__mmC0A {
    display: flex; }

.dropdownLinkChildren__mmC0A a,
.dropdownLinkContainer__1lXq7 div.edit-node-modal-button {
  width: 100%;
  padding: 0.75rem;
  color: #5BB1D3;
  text-transform: uppercase;
  cursor: pointer;
  background: white; }
  .dropdownLinkChildren__mmC0A a:hover,
  .dropdownLinkContainer__1lXq7 div.edit-node-modal-button:hover {
    color: #FFFFFF;
    background: #5BB1D3; }

.dropdownLink__J3I1u {
  padding: 0.5rem; }

.headerActive__2WnLl {
  color: #000; }

.tableLoading__1YuGH {
  opacity: 0.25; }

.thUpdated__2108z {
  width: 120px; }

.thDropdown__2OM86 {
  width: 70px; }

.thPublished__15AbF {
  width: 110px; }

.fieldPublished__1gJ2y {
  text-align: left; }

.headingUpdated__2pg4W, .fieldUpdated__2XBYv {
  text-align: left; }

.pagerContainer__3lXzY {
  display: flex;
  justify-content: flex-end; }

.exportMessage__speR1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center; }

.exportMessageInner__LU1gv {
  text-align: center;
  background: white;
  padding: 2rem 4rem; }

body .ck__2afTk.ck-balloon-panel__yX7o2 {
  z-index: 99999; }

.actionsContainer__2MAVe {
  padding: 24px 0;
  display: flex;
  justify-content: space-between; }

.publishButton__3tb7O {
  text-align: center;
  cursor: pointer;
  display: block;
  background: #1fa4d7;
  color: #ffffff;
  padding: 0.25rem 0;
  border-radius: 2px;
  line-height: 1.34rem; }

.unpublishButton__lWQYg {
  color: #1fa4d7;
  background: transparent;
  border: 1px solid #1fa4d7; }

.dropdownButton__3G9es {
  width: 100%;
  color: #5BB1D3;
  text-transform: uppercase;
  cursor: pointer; }
  .dropdownButton__3G9es:hover {
    color: #FFFFFF;
    background: #5BB1D3; }

.coresite .dropdownButton__3G9es {
  color: #0072cf; }
  .coresite .dropdownButton__3G9es:hover {
    color: #ffffff;
    background: #0072cf; }

.dropdownButtonTitle__3vmie {
  width: 100%;
  padding: 0.75rem;
  cursor: pointer;
  display: block; }

.table__26cEc {
  table-layout: fixed;
  border-spacing: 0;
  margin-bottom: 24px;
  font-size: 14px;
  width: 100%; }
  .table__26cEc thead {
    background: #ffffff; }
  .table__26cEc th {
    font-size: 12px;
    color: #7E888E;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E7E7E7;
    cursor: pointer; }
  .table__26cEc td {
    padding: 1rem; }

.tableRow__39u_C:nth-child(odd) {
  background: white; }

.tableRow__39u_C:hover {
  background: rgba(41, 163, 210, 0.1); }

body .ck__1QJYp.ck-balloon-panel__2xw0D {
  z-index: 99999; }

.modalContainer__2Orkl {
  padding: 0; }

.content__3A-gh {
  width: 80vw;
  overflow: hidden; }
  @media (min-width: 1280px) {
    .content__3A-gh {
      width: 1024px; } }

.loadingOverlay__351CM {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.3); }

.title__3VARU {
  background: #197da4;
  color: white;
  padding: 0.5em;
  font-size: 24px;
  z-index: 1;
  position: relative; }
  .title__3VARU:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  .title__3VARU:after {
    background: #197da4; }

.modal-theme-coresite .title__3VARU {
  background: #0072cf; }
  .modal-theme-coresite .title__3VARU:after {
    background: #0072cf; }

.loading__AFZ7g {
  opacity: 0.8; }

.statusIndicatorWrapper__3eZQa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }

.actionBar__VKSP3 {
  position: relative;
  width: 100%;
  background: #2c2c2c;
  z-index: 1;
  padding-right: 1rem; }
  .actionBar__VKSP3:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  .actionBar__VKSP3:after {
    background: #2c2c2c; }

.actionBarItems__3jH7B {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0;
  width: 100%; }

.editButton__3BEwZ {
  font-size: 14px;
  min-width: 60px;
  padding: 6px 8px;
  margin-right: 6px;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  transition: all 250ms ease-out; }
  .editButton__3BEwZ:hover {
    color: white; }
  .editButton__3BEwZ:last-child {
    margin-right: 0; }

.editBtnIcon__3aXDy {
  width: 18px;
  height: auto;
  margin-bottom: 5px;
  display: inline-block; }

.editButtonSave__9X_my:hover {
  background: #16cb67; }

.editButtonDelete__Qpbd7:hover {
  background: #d50f3f; }

.editButtonView__tjSPa:hover {
  background: #197da4; }

.editButtonDisabled__O-r-c {
  cursor: not-allowed;
  background: #828d95;
  color: #b3b3b3; }
  .editButtonDisabled__O-r-c:hover {
    background: #7a858e; }

.modal-theme-coresite .editButtonDelete__Qpbd7:hover {
  background: #0072cf; }

.modal-theme-coresite .editButtonView__tjSPa:hover {
  background: #0072cf; }

.displayOptions__3PWME {
  position: relative;
  width: 100%;
  background: #5E666D;
  z-index: 1; }
  .displayOptions__3PWME:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  @media (min-width: 768px) {
    .displayOptions__3PWME {
      display: flex;
      justify-content: space-between; } }
  .displayOptions__3PWME:after {
    background: #5E666D; }

.tabs__3PmH2 {
  flex: 1 0 auto;
  z-index: 10; }

.tabButton__3buLx {
  font-size: 14px;
  padding: 12px 10px;
  display: inline-block;
  border-bottom: 4px solid #5E666D;
  cursor: pointer;
  transition: all 250ms ease-in;
  color: #ffff; }
  @media (min-width: 768px) {
    .tabButton__3buLx {
      font-size: 16px;
      padding: 26px 24px; } }
  .tabButton__3buLx:hover {
    border-bottom: 4px solid #1fa4d7;
    background: #4E5459; }
  .tabButton__3buLx.tabButtonRequired__ZloUf:after {
    content: '*';
    color: indianred; }
  .tabButton__3buLx.tabContainsError__11t8S {
    font-weight: bold;
    background: indianred;
    color: white; }
    .tabButton__3buLx.tabContainsError__11t8S:after {
      color: white; }
    .tabButton__3buLx.tabContainsError__11t8S:hover, .tabButton__3buLx.tabContainsError__11t8S.tabButtonActive__2p4BD {
      border-color: white; }

.tabButtonActive__2p4BD {
  background: #4E5459;
  border-bottom: 4px solid #1fa4d7; }

.modal-theme-coresite .tabButton__3buLx:hover {
  border-bottom: 4px solid #0072cf; }

.modal-theme-coresite .tabButtonActive__2p4BD {
  background: #4E5459;
  border-bottom: 4px solid #0072cf; }

.translationInfo__A4fVE {
  display: flex;
  align-items: center;
  font-size: 14px;
  z-index: 10; }

.language__3MZRO {
  color: white;
  text-align: center;
  margin-right: 1rem; }

.languageName__33gLv {
  display: block;
  text-transform: uppercase;
  margin-bottom: 6px; }

.languageLabel__2bFsW {
  display: block; }

.formContainer__1t55Z {
  min-height: 400px;
  max-height: 70vh;
  overflow-y: scroll;
  margin: 1rem; }

.modalButton__2o4Cy {
  width: 100%;
  display: block; }

.duration__LA-Vt {
  margin: 0 0 1.5rem 0; }

.checkbox__GrTu1 {
  margin: 0 0 1.5rem 0; }

.audienceWrapper__3bnGo {
  margin-left: 0px; }

.publishedCheckbox__39nBs {
  margin-bottom: 20px; }

body .ck__3wBzS.ck-balloon-panel__3gFax {
  z-index: 99999; }

.languageVariants__l4dyb {
  margin: 2em 0; }

.languageVariantRow__Yw0Tg {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  padding: 1em; }
  .languageVariantRow__Yw0Tg:nth-child(odd):not(.languageVariantRowHeaders__1KmAS) {
    background: #d8d8d8; }

.languageVariantRowHeaders__1KmAS {
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-bottom: 1.15em;
  border-bottom: 1px solid #d8d8d8; }

.languageVariantRowActive__3nROV {
  border-left: 5px solid #16cb67; }

.languageVariantRowActive__3nROV .languageVariantLanguage__rwo9a {
  font-weight: bold; }

.languageVariantOperations__2Jdld {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px; }

.languageVariantOperation__3RxAe {
  border: 1px solid #90979D;
  color: #90979D;
  padding: 4px 0;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 200ms ease-out; }
  .languageVariantOperation__3RxAe:hover {
    color: white; }

.languageVariantOperationEdit__1-aYf:hover {
  background: #197da4; }

.languageVariantOperationAdd__BBGen:hover {
  background: #16cb67; }

.languageVariantOperationDisabled__FRUFK {
  color: #babfc4;
  border-color: #babfc4;
  cursor: not-allowed; }
  .languageVariantOperationDisabled__FRUFK:hover {
    background: #babfc4;
    color: #d8d8d8; }

body .ck__7cgYO.ck-balloon-panel__1BIdn {
  z-index: 99999; }

.container__xEWgb {
  padding: 0 16px 35px; }

.header__1WzQJ {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 1em; }
  @media print {
    .header__1WzQJ {
      display: none; } }

.title__188LD {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 8px;
  min-height: 38px;
  width: 100%; }
  @media (min-width: 768px) {
    .title__188LD {
      font-size: 32px;
      margin-bottom: 24px; } }

.typesContainer__URM5w {
  display: flex;
  align-items: center;
  min-height: 1.5em;
  width: 100%;
  margin-top: 10px; }
  @media (min-width: 768px) {
    .typesContainer__URM5w {
      width: auto;
      margin-top: 0; } }

.typesContainer__URM5w {
  order: 1; }
  @media (min-width: 768px) {
    .typesContainer__URM5w {
      order: 0; } }

.title__188LD {
  order: 1; }

.buttonLike__3E1IZ,
.buttonShare__10TpD {
  order: 2; }
  @media (min-width: 1024px) {
    .buttonLike__3E1IZ,
    .buttonShare__10TpD {
      order: 0; } }

.date__H9uKP {
  order: 3; }

.category__HRbRK,
.department__2Kxf9 {
  text-transform: uppercase;
  font-size: 12px; }

.category__HRbRK {
  color: #d50f3f;
  font-weight: bold; }

.typesDivider__1q35r {
  margin: 0 6px;
  color: #282828; }

.headerActionSpacer__1cOCW {
  flex: 1 0 auto; }

.actionItemContainer__2m_74 {
  display: flex;
  align-items: center;
  margin-right: 1rem; }

.buttonEdit__2cMmr {
  margin-right: 0; }

.buttonView__1sudv a,
.container__xEWgb .edit-node-modal-button {
  display: inline-block;
  cursor: pointer;
  background: #69737b;
  color: white;
  transition: all 200ms ease-out;
  line-height: 1;
  padding: 6px 8px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none; }
  .buttonView__1sudv a:hover,
  .container__xEWgb .edit-node-modal-button:hover {
    background: #d50f3f; }

.coresite .category__HRbRK {
  color: #0072cf; }

.coresite .buttonView__1sudv a,
.coresite .buttonEdit__2cMmr a {
  color: #ffffff; }
  .coresite .buttonView__1sudv a:hover,
  .coresite .buttonEdit__2cMmr a:hover {
    color: #ffffff;
    background: #0072cf; }

.quickLink__2KIhH {
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-left: auto; }
  .quickLink__2KIhH span {
    padding: 0; }

.buttonShare__10TpD > div {
  display: flex;
  align-items: center; }

.buttonShare__10TpD button {
  padding: 0; }

.contentHeader__39rEw {
  display: flex;
  margin-bottom: 2em; }
  .contentHeader__39rEw h1 {
    margin: 0; }

.contentHeaderSpacer__1v44a {
  flex: 1 1 40px; }

.downloadBtnContainer__1fxDH {
  min-width: 100px; }
  @media print {
    .downloadBtnContainer__1fxDH {
      display: none; } }

.downloadIcon__2gWC_ {
  padding-right: 0.5rem; }

.dataContainer__2dHbW {
  display: flex;
  flex-wrap: wrap;
  background: white; }

.dataRow__Sy-k5 {
  display: flex;
  flex: 0 0 100%;
  align-items: center; }
  .dataRow__Sy-k5 .dataLabel__29XQi {
    border-right: 1px solid #f1f2f3; }
  .dataRow__Sy-k5:nth-child(even) {
    background: #f1f2f3; }
    .dataRow__Sy-k5:nth-child(even) .dataLabel__29XQi {
      border-right: 1px solid white; }

.dataLabel__29XQi {
  min-width: 185px;
  display: inline-block;
  padding: 15px 20px;
  font-weight: bold;
  color: black; }

.dataValue__1X-Qt {
  display: inline-block;
  padding: 1em 15px 1em 28px; }

.sectionPageInfo__3LpUN {
  border-bottom: 1px solid #dddddd; }

body .ck__3n5KM.ck-balloon-panel__2UcgH {
  z-index: 99999; }

.overviewContent__2b4Vg {
  display: flex; }

.graphs__5GY_Y {
  flex: 0 0 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-right: 30px;
  padding-right: 1rem;
  border-right: 1px solid #d8d8d8; }
  .graphs__5GY_Y > div {
    position: relative; }

.stats1__3_7ta {
  flex: 0 0 15%;
  border-right: 1px solid #d8d8d8;
  padding-right: 1rem;
  margin-right: 30px; }

body .ck__3PFix.ck-balloon-panel__yFWsI {
  z-index: 99999; }

.infoLabelWrapper__AUr8t {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px; }

.title__GMBTT {
  font-size: 14px;
  color: #69737b;
  text-transform: uppercase; }

.tooltip__1TDok {
  margin-top: 1px; }

body .ck__mPAXr.ck-balloon-panel__Y7oMP {
  z-index: 99999; }

.wrapper__Tu-aH {
  display: inline-block;
  margin-left: 4px;
  width: 15px; }

.tooltip__1P-yj {
  text-transform: none !important; }

body .ck__1-U-Z.ck-balloon-panel__3vj2S {
  z-index: 99999; }

.wrapper__PlHHe {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.active__RX8r9 {
  background-color: #1fa4d7; }
  .active__RX8r9 * {
    color: #ffffff; }

.label__33SwX {
  font-size: 13px;
  color: #69737b;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.15;
  min-height: 2rem;
  text-align: center; }

.value__1trBC {
  font-size: 44px;
  font-weight: 300;
  text-align: center; }

body .ck__2eP6n.ck-balloon-panel__3cjpD {
  z-index: 99999; }

.wrapper__JZlCl {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  justify-content: space-between; }

body .ck__1FhGd.ck-balloon-panel__gpnuM {
  z-index: 99999; }

.wrapper__2KlO6 {
  background: white;
  margin: 1rem 0;
  padding: 34px 40px; }

.metricWrapper__ATHfK {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px; }

.metricSelect__bEQ-V {
  min-width: 180px; }

body .ck__31HtT.ck-balloon-panel__1x0-g {
  z-index: 99999; }

.count__g8RbS {
  font-size: 48px; }

.container__3FmUd {
  margin-bottom: 1rem; }

.compareBar__3IVxL {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 12px;
  color: #474747; }

.arrowSign__35m3- {
  color: #1fa4d7; }

.contentWrapper__17PDt {
  display: flex; }

body .ck__97y77.ck-balloon-panel__3nGQY {
  z-index: 99999; }

.contentWrapper__4uwpd {
  margin: 0 1rem 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

body .ck__F1skv.ck-balloon-panel__1ZtSv {
  z-index: 99999; }

.contentWrapper__2QfNT {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.compareBar__38Vv9 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 12px;
  color: #474747; }

.arrowSign__3k8_m {
  color: #1fa4d7; }

.chartContainer__34w6K {
  position: relative; }

.chartContainer__34w6K:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8d8d8; }

.chartContainer__34w6K:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8d8d8; }

.chart__2s9TZ {
  width: 100%;
  min-height: 350px;
  height: 350px;
  border-left: dotted 1px #5E666D; }

.dateText__1EELP {
  margin-left: 10px; }

.container__j13U3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.section__1F-3X {
  background: white;
  margin: 1rem 0;
  padding: 34px 40px;
  flex: 1 1 auto; }

.sectionDefault__1J95c {
  background: none;
  width: 100%; }

.sectionFilter__3oSDz {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: none; }

.marketFilter__2RbOE {
  min-width: 180px; }

.datePicker__2yatV {
  width: 100%;
  margin-top: 2rem; }

.halfSection__3QCG2 {
  width: 48%;
  flex: 0 1 auto; }

body .ck__35Pxc.ck-balloon-panel__2GTjZ {
  z-index: 99999; }

.dataSection__3pw5T {
  margin: 1em 0;
  background-color: white;
  padding: 1em;
  box-shadow: 0px 0px 8px 1px lightgrey;
  max-width: 100%;
  overflow: auto; }
  .dataSection__3pw5T h1, .dataSection__3pw5T h2, .dataSection__3pw5T h3 {
    margin-top: 0; }
  .dataSection__3pw5T .dataSection__3pw5T:last-child {
    margin-bottom: 0; }

.statusGreen__3lzEs,
.statusRed__3pQMH {
  width: 100%;
  padding: 1em;
  color: white; }

.statusGreen__3lzEs {
  background: #16cb67; }

.statusRed__3pQMH {
  background: #d50f3f; }

.errorHelp__1TOsJ {
  font-size: 0.7em; }

.dataContainer__3NQbo {
  margin: 0.25em 0; }

.dataItemError__yKjux {
  font-weight: bold;
  color: #d50f3f; }

.dataHeader__2eiLR {
  font-weight: bold;
  margin-right: 0.5em; }

.dataHelp__3xGMO {
  color: darkslategrey;
  font-size: 0.8em; }

.tabHeader__Bpitt {
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
  margin: 0.5em;
  padding: 0.3em 0.5em 0.2em 0.5em;
  background: #90979D;
  border-radius: 4px; }

.activeTab__2xhe3 {
  font-weight: bold;
  background: #197da4;
  color: white; }

.errors__1ZUKm {
  border-collapse: collapse;
  white-space: normal;
  table-layout: fixed;
  font-size: 0.85em;
  margin: 1em 0; }
  .errors__1ZUKm td, .errors__1ZUKm th {
    border: 1px solid #69737b;
    text-align: left;
    padding: 0.25em; }
  .errors__1ZUKm td div, .errors__1ZUKm th {
    padding: 0.5em; }
  .errors__1ZUKm thead {
    background-color: #197da4;
    color: white;
    font-size: 1.2em; }
    .errors__1ZUKm thead th {
      padding: 0.75em 0.5em;
      border-color: #197da4; }
  .errors__1ZUKm tr:nth-child(even) {
    background-color: #d8d8d8; }

.coresite .activeTab__2xhe3 {
  background: #0072cf; }

.coresite .errors__1ZUKm thead {
  background-color: #0072cf; }
  .coresite .errors__1ZUKm thead th {
    border-color: #0072cf; }

.fieldCreated__333rY {
  width: 160px; }

.fieldSid__1JCMa {
  max-width: 150px;
  overflow-x: auto;
  padding: 1em 0.5em; }

.fieldErrorMessage__3hEEy {
  height: 80px;
  overflow-y: auto; }

body .ck__3bwa3.ck-balloon-panel__AgQiX {
  z-index: 99999; }

.container__3BOCr {
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__3BOCr {
      padding: 24px 0; } }

.extraInfo__3Ybd5 {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }

.title__3RFRE {
  font-size: 32px;
  font-weight: normal;
  margin: 12px 0; }

.actionButtonContainer__2nRUG {
  display: flex;
  align-items: center; }

.shareButtonContainer__1_7vP {
  margin-right: 1rem; }

.content__2czA3 {
  display: flex; }

.body__25O7P {
  flex: 1 0 70%; }

body .ck__3Y6vK.ck-balloon-panel__ps6Ef {
  z-index: 99999; }

.container__1fkdB {
  position: relative;
  min-height: 1000px;
  padding: 24px; }
  .container__1fkdB:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  @media (min-width: 1800px) {
    .container__1fkdB {
      padding: 24px 0; } }

.defaultContentContainer__2CZoc {
  margin-bottom: 2rem; }

.title__3wd35 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 8px 0; }

.typesContainer__1HdZx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; }

.category__35MW8,
.department__3tqEQ {
  text-transform: uppercase;
  font-size: 12px; }

.category__35MW8 {
  color: #d50f3f;
  font-weight: bold; }

.typesDivider__2Eu_1 {
  margin: 0 4px; }

.date__3Ztn_ {
  margin-bottom: 24px; }

.resourceType__2vKDM {
  color: #d50f3f;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px; }

.summary__3SesO {
  margin: 24px 0;
  font-size: 14px; }

.trainingLink__12Ot0 {
  color: #197da4;
  text-decoration: none; }

body .ck__1xhYs.ck-balloon-panel__BoVEw {
  z-index: 99999; }

.container__2OAUy a {
  text-decoration: none;
  color: #1fa4d7; }

.top__1imQz {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap; }

.image__4CQrU {
  flex: 0 0 auto;
  margin: 0 12px 16px 0; }
  @media (min-width: 768px) {
    .image__4CQrU {
      margin: 0 20px 16px 0; } }
  .image__4CQrU .drupal-image--img {
    width: 70px;
    height: 70px; }
    @media (min-width: 768px) {
      .image__4CQrU .drupal-image--img {
        width: 100px;
        height: 100px; } }

.text__1sboZ {
  flex: 1 1 auto; }

.title__KIPf0 {
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 0.25rem; }

.fieldTeaserText__2rR1h {
  font-size: 13px;
  line-height: 1.25rem;
  color: #162732;
  margin-bottom: 12px; }

.quickLink__WT_tY {
  cursor: pointer;
  background-color: #ffffff;
  margin-right: 10px;
  display: inline-block; }
  .quickLink__WT_tY:focus {
    outline: 0; }

.trainingLink__2njJp {
  margin-left: 10px;
  display: inline-block; }

.links__37-SG {
  color: #1fa4d7;
  font-size: 12px;
  margin-top: 0px; }

.placeholder__THQ8K .drupal-image--placeholder {
  background: #d8d8d8;
  width: 100px;
  height: 100px; }

.placeholder__THQ8K .title__KIPf0 {
  height: 20px;
  width: 70%;
  background: #d8d8d8; }

.placeholder__THQ8K .fieldTeaserText__2rR1h {
  height: 3em;
  width: 100%;
  background: #d8d8d8; }

.placeholder__THQ8K .bottomPlaceholder__3M6QT {
  background: #d8d8d8;
  height: 20px;
  width: 30%; }

.placeholder__THQ8K .links__37-SG {
  display: none; }

.coresite .container__2OAUy a {
  color: #0072cf; }

.coresite .quickLink__WT_tY,
.coresite .links__37-SG {
  color: #0072cf; }

.resultsContainer__2MhYB {
  position: relative; }

.resultsList__14jNT {
  list-style: none;
  padding: 0;
  margin: 0; }

.row__1Yk8U {
  margin: 0;
  padding: 0; }

.resultsLoadingContainer__1T00J {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center; }
  .resultsLoadingContainer__1T00J .loading-spinner img {
    width: 40px; }

.noResults__2RnUq {
  text-align: center; }

body .ck__35x2h.ck-balloon-panel__3oByh {
  z-index: 99999; }

.container__1QD_U {
  background: white;
  padding: 24px 0 100px 0;
  z-index: 10;
  position: relative; }
  .container__1QD_U:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.topBar__21Fxq {
  width: 100%; }
  @media (min-width: 1024px) {
    .topBar__21Fxq {
      display: flex;
      justify-content: space-between;
      align-items: center; } }

.topBarRight__27Hxy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem; }
  @media (min-width: 1024px) {
    .topBarRight__27Hxy {
      align-items: center;
      margin-bottom: 0; } }

.title__3D69a {
  background: #197da4;
  color: white;
  padding: 12px 14px 10px;
  font-size: 16px;
  font-weight: 900;
  display: inline-block; }

.coresite .title__3D69a {
  background-color: #0072cf; }

.viewMode__3tgmq {
  color: #d8d8d8;
  margin: 0 4px;
  cursor: pointer; }

.viewModeActive__1k8zH {
  color: #d50f3f; }

.resultsList__O6ti3 {
  display: flex;
  flex-wrap: wrap; }

.container__1QD_U .resultsList__O6ti3 li {
  margin: 24px 0;
  flex: 0 0 100%; }
  @media (min-width: 1024px) {
    .container__1QD_U .resultsList__O6ti3 li {
      flex: 0 0 50%; }
      .container__1QD_U .resultsList__O6ti3 li:nth-child(even) {
        padding-left: 15px; }
      .container__1QD_U .resultsList__O6ti3 li:nth-child(odd) {
        padding-right: 15px; } }

.resultsContainer__t_uXm {
  margin-bottom: 24px; }

@media (min-width: 1024px) {
  .viewModes__1x5IQ, .filter__3vc1j {
    display: flex;
    align-items: center;
    padding: 0 1rem; } }

.filterTitle__MJza1 {
  margin-right: 1rem;
  color: #939393; }

.pagerContainer__Vu6XY {
  display: flex;
  justify-content: flex-end; }

body .ck__3UcIQ.ck-balloon-panel__29GKw {
  z-index: 99999; }

.container__Xo6Do {
  padding: 0 24px; }
  @media (min-width: 1800px) {
    .container__Xo6Do {
      padding: 0; } }

.actionButtonsContainer__2XjJy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 24px 0 12px 0; }

.header___NVBg {
  display: inline-block;
  min-height: 1em;
  min-width: 40%;
  margin-top: 0; }

body .ck__7C_ow.ck-balloon-panel__2YcB1 {
  z-index: 99999; }

.container__23zOA {
  padding: 0 15px;
  position: relative; }
  @media (min-width: 1024px) {
    .container__23zOA {
      padding: 0 0 0 15px; } }
  @media (min-width: 1800px) {
    .container__23zOA {
      padding: 0; } }

body .ck__2cPLi.ck-balloon-panel__2J0th {
  z-index: 99999; }

body .ck__2cPLi.ck-balloon-panel__2J0th {
  z-index: 99999; }

.text__Ttewr {
  width: 100%;
  font-size: 15px;
  color: #162732; }

.title__21cOt {
  flex: 1 1 100%;
  font-size: 20px;
  font-weight: bold;
  color: #162732;
  padding: 30px 20px 10px; }

.bodyContainer__1ajbV {
  display: flex;
  width: 100%; }

.bodyLeft__gV3D7,
.bodyRight__2mx_w {
  padding: 20px; }

.bodyLeft__gV3D7 {
  flex: 1 1 auto; }
  @media (min-width: 1024px) {
    .bodyLeft__gV3D7 {
      flex: 1 1 50%; } }

.address__3vY5j {
  font-size: 15px; }

.addressLine__2rHX3 {
  margin-bottom: 5px; }

.bodyRight__2mx_w {
  flex: 1 1 50%; }

.phone__3aA3a,
.fax__3bvrq,
.officeManager__1tL3S {
  margin-bottom: 5px; }
  .phone__3aA3a a,
  .fax__3bvrq a,
  .officeManager__1tL3S a {
    text-decoration: none;
    color: #197da4; }

.optionalLinksWrapper__3cykf {
  margin-top: 10px; }

.optionalLink__2oZvs {
  font-size: 14px;
  display: block;
  margin-bottom: 3px; }

.coresite .phone__3aA3a a,
.coresite .fax__3bvrq a,
.coresite .officeManager__1tL3S a {
  color: #0072cf; }

.container__QC-ER {
  display: flex;
  position: relative;
  flex-wrap: wrap; }
  @media (min-width: 1024px) {
    .container__QC-ER {
      flex-wrap: nowrap; } }

.image__2Kfhg {
  flex: 0 0 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center center; }
  @media (min-width: 1024px) {
    .image__2Kfhg {
      padding-top: 0;
      min-height: 230px;
      flex: 0 0 35%; } }

.container__QC-ER .edit-node-modal-button {
  position: absolute;
  top: 4px;
  right: 8px;
  background: #5E666D;
  color: white;
  text-transform: uppercase;
  padding: 4px 6px;
  cursor: pointer;
  font-size: 11px; }

body .ck__22Lnm.ck-balloon-panel__2QfFk {
  z-index: 99999; }

.row__1uium {
  background: white;
  margin-bottom: 16px;
  box-shadow: 0px 0px 8px 1px lightgrey; }

.noneFound__2-e7x {
  padding: 48px 0;
  text-align: center;
  font-size: 16px;
  color: #90979D; }

.tabs__3Jr_2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px; }

.tab__dlOlB {
  padding: 8px 8px;
  margin: 0 4px;
  cursor: pointer; }
  .tab__dlOlB:hover {
    color: #d50f3f; }

.tab__dlOlB.tabSelected__Qtp3w {
  color: #197da4;
  border-bottom: 3px solid #197da4; }

.coresite .tab__dlOlB:hover {
  color: #0072cf; }

.coresite .tab__dlOlB.tabSelected__Qtp3w {
  color: #0072cf;
  border-bottom: 3px solid #0072cf; }

body .ck__1h3ZG.ck-balloon-panel__R7VR_ {
  z-index: 99999; }

.container__WohvD {
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__WohvD {
      padding: 24px 0; } }

.topContainer__3eGXR {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center; }

.extraInfo__1K8Gv {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto; }

.eventType__3AaM8 {
  color: #d50f3f;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold; }

.title__2CRD- {
  font-size: 32px;
  font-weight: normal;
  margin: 12px 0; }

.details__3pknv {
  margin-left: 28px;
  padding: 24px 32px 24px 44px;
  background: #e7e7e7;
  background: linear-gradient(90deg, rgba(241, 242, 243, 0.8) 0%, rgba(241, 242, 243, 0.4) 14px, white 32px);
  flex: 0 0 30%; }

.detailsHeader__3CZ_1 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 8px; }

.detailsContent__2rnr3 {
  font-weight: 400;
  line-height: 1.5; }
  .detailsContent__2rnr3 p {
    margin: 0; }

.where__1oUch {
  margin: 24px 0; }

.register__oV9g5 {
  max-width: 100%;
  padding: 10px 20px;
  line-height: 1;
  font-size: 14px;
  color: #197da4;
  border: 1px solid #197da4;
  text-decoration: none;
  text-transform: capitalize;
  display: block;
  text-align: center; }

body .ck__1oCL8.ck-balloon-panel__Aum9P {
  z-index: 99999; }

.container__2DLFT {
  background-color: white;
  margin: 24px 0;
  padding: 24px 0;
  min-height: 200px;
  z-index: 10;
  position: relative; }
  .container__2DLFT:first-child {
    margin-top: 0; }
  .container__2DLFT:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.marketTitle__35uF3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 14px 0;
  line-height: 1; }

.list__3MP8h {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (min-width: 768px) {
    .list__3MP8h {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 1em; } }

.listItem__2wyej {
  flex: 1 1 100%;
  border-bottom: 1px solid #d8d8d8;
  margin: 4px 0;
  padding: 4px 0; }
  @media (min-width: 768px) {
    .listItem__2wyej {
      flex: 0 1 30%; } }

.noResults__D-FvR {
  color: #d8d8d8; }

.departmentLink__3EtOa {
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-decoration: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  transition: color 200ms ease-out; }
  .departmentLink__3EtOa:hover {
    color: #197da4; }

.chevron__3iegX {
  margin-left: 6px; }

.coresite .departmentLink__3EtOa {
  color: #000000; }
  .coresite .departmentLink__3EtOa:hover {
    color: #0072cf; }

body .ck__22ylj.ck-balloon-panel__2Kry1 {
  z-index: 99999; }

.container__gbxxN {
  padding: 0 15px; }
  @media (min-width: 1024px) {
    .container__gbxxN {
      padding: 0 0 0 15px; } }

.hero__1oTwv {
  overflow: hidden;
  height: 0;
  padding-top: 32%;
  margin: 0 -80px;
  background-image: url("/static/departments.png");
  background-size: cover; }

.intro__2xYrd {
  display: flex;
  justify-content: space-between;
  margin: 24px auto 24px -15px; }
  .intro__2xYrd .content__3kysz {
    flex: 1 0 60%;
    margin-right: 64px; }
    .intro__2xYrd .content__3kysz h3 {
      font-size: 24px; }
  .intro__2xYrd .image__38bbG {
    flex: 1 0 30%; }
    .intro__2xYrd .image__38bbG img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 70%; }

.filterWrapper__3aNVb {
  position: relative;
  padding: 24px 0; }

.filterInnerWrapper__19XwA {
  display: flex;
  justify-content: flex-end; }

.filterWrapper__3aNVb:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 200vw;
  background-color: white;
  z-index: -1; }

.filterWrapper__3aNVb:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200vw;
  background-color: white;
  z-index: -1; }

.coresite .filterWrapper__3aNVb:before, .coresite .filterWrapper__3aNVb:after {
  z-index: 0; }

.filterContainer__1dBVP {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #dddddd;
  padding: 5px 15px;
  z-index: 100; }

.filterLabel__1iYbg {
  color: #5D5D5D;
  margin-right: 1rem; }

.selectFieldWrapper__1p4-k {
  width: 200px; }

body.page-embed {
  overflow: hidden; }

.container__2WcEU {
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 16px;
  position: relative;
  background-color: #f1f2f3; }
  .container__2WcEU:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.eventCard__ZFr3u {
  /* use the combined variable */
  flex: 1 1 calc(100% / var(--cols) - 16px);
  max-width: calc(100% / var(--cols));
  background: #fff;
  border: 1px solid #dcddde;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.eventImageWrapper__3GuW1 {
  position: relative;
  width: 100%;
  padding-top: 42.55%;
  overflow: hidden; }

.eventImage__L9hnY {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.eventContent__1ojPP {
  padding: 2rem; }

.eventType__18wkY {
  font-size: 12px;
  font-weight: 700;
  color: #D11242;
  margin-bottom: 0.5rem;
  text-transform: uppercase; }

.eventTitle__22fWv {
  font-size: 18px;
  line-height: 1.4;
  color: #162732; }

body.page-embed {
  overflow: hidden; }

.container__30Iie {
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 16px;
  position: relative;
  background-color: #f1f2f3; }
  .container__30Iie:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.eventCard__2fukW {
  /* use the combined variable */
  flex: 1 1 calc(100% / var(--cols) - 16px);
  max-width: calc(100% / var(--cols));
  background: #fff;
  border: 1px solid #dcddde;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.eventImageWrapper__1Wdt8 {
  position: relative;
  width: 100%;
  padding-top: 42.55%;
  overflow: hidden; }

.eventImage__1jOYX {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.eventDateOverlay__SXIVJ {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  color: #333333; }

.eventDateDay__30Iq5 {
  font-size: 18px;
  font-weight: normal; }

.eventDateMonth__1rta- {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase; }

.eventContent__Z121Q {
  padding: 2rem; }

.eventType__3c-3d {
  font-size: 12px;
  font-weight: 700;
  color: #D11242;
  margin-bottom: 0.5rem;
  text-transform: uppercase; }

.eventTitle__2gOZP {
  font-size: 18px;
  line-height: 1.4;
  color: #162732; }

@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

body .ck__2P1LI.ck-balloon-panel__2gXoG {
  z-index: 99999; }

.link__u2wvk {
  flex: 0 0 15%;
  background: #d50f3f;
  color: white;
  padding: 8px 16px;
  margin: 24px 0;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  display: block; }

body .ck__JqSWr.ck-balloon-panel__I6CBV {
  z-index: 99999; }

.container__2Hd44 {
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__2Hd44 {
      padding: 24px 0; } }

.extraInfo__3aq4u {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }

.title__1s35_ {
  font-size: 32px;
  font-weight: normal;
  margin: 12px 0; }

.actionButtonContainer__2fLzE {
  display: flex;
  align-items: center; }

.shareButtonContainer__2DqZp {
  margin-right: 1rem; }

.content__3cihV {
  display: flex; }

.body__iLh6Q {
  flex: 1 0 70%; }

body .ck__IbrmH.ck-balloon-panel__XyLAb {
  z-index: 99999; }

.container__2agjF {
  padding: 0 15px; }
  @media (min-width: 1024px) {
    .container__2agjF {
      padding: 0 0 0 15px; } }
  @media (min-width: 1800px) {
    .container__2agjF {
      padding: 0; } }

.topContainer__1Zuyh {
  margin: 0;
  padding: 24px 0;
  z-index: 10;
  position: relative; }
  .topContainer__1Zuyh:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.topRow__EPuwz {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  flex-wrap: wrap; }
  @media (min-width: 1024px) {
    .topRow__EPuwz {
      flex-wrap: nowrap; } }

.announcement__2Y9Bq {
  width: 100%;
  flex: 0 0 auto;
  margin: 0 0 24px 0;
  background: white;
  box-shadow: 0px 0px 8px 1px lightgrey; }
  @media (min-width: 1024px) {
    .announcement__2Y9Bq {
      width: 380px;
      margin: 0 50px 0 0; } }

.recentResources__Uptq_ {
  flex: 1 1 auto; }

.recentHeader__w0IUi {
  font-weight: 900;
  margin-top: 0;
  color: #162732; }

.recentResourcesList__PyIbE {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  margin: -12px; }

.recentResourcesSingle__3y-ye {
  position: relative;
  flex: 1 1 100%;
  padding: 12px; }
  @media (min-width: 768px) {
    .recentResourcesSingle__3y-ye {
      flex: 1 1 50%; } }

.recentResourcesSingleInner__1Opgv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #cacaca;
  padding: 5px 0px; }

.recentResourcesLink__3kxUq {
  color: #000000; }

.resourcesNoneYet__3u_NZ {
  margin-top: 24px;
  font-weight: bold;
  font-size: 14px; }

.coresite .recentResourcesChevron__284wU {
  width: 8px; }

.coresite .recentResourcesLink__3kxUq {
  color: #000000; }

body .ck__nyouy.ck-balloon-panel__2IMF_ {
  z-index: 99999; }

.container__33wVE {
  position: relative;
  min-height: 1000px;
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__33wVE {
      padding: 24px 0; } }

.title__68zyN {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0; }

.typesContainer__2uiU8 {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.actionButtonContainer__3yk1M {
  display: flex;
  align-items: center;
  margin-left: auto; }

.shareButtonContainer__1jVNw {
  margin-right: 1rem; }

.date__2fw5o {
  margin-bottom: 24px; }

body .ck__11gY8.ck-balloon-panel__3q3U6 {
  z-index: 99999; }

.container__2lFJB {
  padding-top: 15px; }

.date__3LNvJ {
  margin-bottom: 10px; }

.summary__A_csl {
  margin-bottom: 10px; }

.download__3v3mB {
  margin-bottom: 10px; }

body .ck__1Bge1.ck-balloon-panel__35Eow {
  z-index: 99999; }

.react-add-to-calendar {
  position: relative; }

.addToCalendarWrapper__1-w7n {
  font-size: 14px;
  color: #d50f3f;
  cursor: pointer;
  margin-top: 5px; }

.addToCalendarDropdown__sS4SS {
  margin: 10px 0;
  position: absolute;
  background: white;
  width: 100%;
  padding: 10px;
  box-shadow: 0px 0px 8px 1px lightgrey; }
  .addToCalendarDropdown__sS4SS ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .addToCalendarDropdown__sS4SS a {
    font-size: 12px;
    color: #197da4; }

.container__3So0_ {
  position: relative;
  padding: 24px; }
  .container__3So0_:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  @media (min-width: 1800px) {
    .container__3So0_ {
      padding: 24px 0; } }

.header__2mAup {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px; }

.title__3Kgdk {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 8px;
  min-height: 38px;
  width: 100%; }
  @media (min-width: 768px) {
    .title__3Kgdk {
      font-size: 32px;
      margin: 0; } }

.eventType__1fYPi {
  color: #d50f3f;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  min-height: 1.5em;
  width: 100%;
  margin-top: 10px; }
  @media (min-width: 768px) {
    .eventType__1fYPi {
      width: auto;
      margin-top: 0; } }

.eventType__1fYPi {
  order: 1; }
  @media (min-width: 768px) {
    .eventType__1fYPi {
      order: 0; } }

.title__3Kgdk {
  order: 1; }

.buttonLike__34Vni,
.buttonShare__qh-Oe {
  order: 2; }
  @media (min-width: 1024px) {
    .buttonLike__34Vni,
    .buttonShare__qh-Oe {
      order: 0; } }

.date__1yFgM {
  order: 3; }

.actionItemContainer__24-bA {
  display: flex;
  align-items: center;
  margin-right: 1rem; }

.headerActionSpacer__392V- {
  flex: 1 0 auto; }

.buttonEdit__2Stgx {
  margin-right: 0; }

.quickLink__2MKgK {
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-left: auto; }
  .quickLink__2MKgK span {
    padding: 0; }

.buttonShare__qh-Oe > div {
  display: flex;
  align-items: center; }

.buttonShare__qh-Oe button {
  padding: 0; }

.content__3VmUK {
  display: flex;
  flex-wrap: wrap; }

.body__1bJo0 {
  flex: 0 0 100%; }
  @media (min-width: 1024px) {
    .body__1bJo0 {
      flex: 1 1 50%; } }

.details__6yh8S {
  flex: 0 0 100%; }
  @media (min-width: 1024px) {
    .details__6yh8S {
      margin-left: 28px;
      padding: 24px 32px 24px 44px;
      background: #e7e7e7;
      background: linear-gradient(90deg, rgba(241, 242, 243, 0.8) 0%, rgba(241, 242, 243, 0.4) 14px, white 32px);
      flex: 0 0 315px;
      z-index: 3; } }

.relatedContent__1nelX {
  margin: 24px 0;
  flex: 0 0 100%; }

.detailsHeader__2Txtc {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 8px; }

.detailsContent__1N415 {
  font-weight: 400;
  line-height: 1.5; }
  .detailsContent__1N415 p {
    margin: 0; }

.whenWhereContainer__1VWoq {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 80px; }
  @media (min-width: 1024px) {
    .whenWhereContainer__1VWoq {
      margin-top: 0;
      display: block; } }

.when__1kqJR {
  width: 50%;
  padding: 10px; }
  @media (min-width: 1024px) {
    .when__1kqJR {
      width: auto;
      padding: 0; } }

.whenSection__3fs2t {
  margin: 12px 0; }

.whenSectionHeader__3bCnc {
  text-transform: capitalize;
  font-weight: bold; }

.where__3nnlr {
  width: 50%;
  padding: 10px; }
  @media (min-width: 1024px) {
    .where__3nnlr {
      width: auto;
      padding: 0;
      margin: 24px 0; } }

.register__3h6nG {
  max-width: 100%;
  padding: 10px 20px;
  margin-bottom: 30px;
  line-height: 1;
  font-size: 14px;
  color: #197da4;
  border: 1px solid #197da4;
  text-decoration: none;
  text-transform: capitalize;
  display: block;
  text-align: center; }

.coresite .addToCalendarWrapper__1-w7n {
  color: #0072cf; }

.coresite .addToCalendarDropdown__sS4SS a {
  color: #0072cf; }

.coresite .eventType__1fYPi {
  color: #0072cf; }

.coresite .register__3h6nG {
  color: #0072cf;
  border: 1px solid #0072cf; }

body .ck__W4zhx.ck-balloon-panel__1d9QU {
  z-index: 99999; }

.pagesWrapper__HCAzT {
  margin: 24px 0;
  min-height: 100px; }

.globalPage__3jYJZ {
  margin: 24px 0; }

.pageTypeHeader__3j1Qp {
  border-top: 1px solid #90979D;
  font-size: 0.8em;
  padding-top: 0.75em;
  padding-right: 0.25em;
  margin-bottom: 36px;
  text-align: right; }

.loadingPlaceholder__julz7 {
  min-height: 300px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loadingPlaceholder__julz7 img {
    visibility: visible !important; }
  .loadingPlaceholder__julz7 * {
    color: initial !important; }

.coresite .pageTypeHeader__3j1Qp {
  border-top: 1px solid #989898; }

body .ck__1j6oS.ck-balloon-panel__1hLMm {
  z-index: 99999; }

.container__1HOpz {
  position: relative;
  position: relative;
  min-height: 1000px;
  padding: 24px; }
  .container__1HOpz:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  @media (min-width: 1800px) {
    .container__1HOpz {
      padding: 24px 0; } }

.body__TzJgR {
  min-height: 200px;
  margin-bottom: 24px; }

.loading__2w6C_ * {
  color: transparent !important; }


body .ck__1KTQs.ck-balloon-panel__PbhkD {
  z-index: 99999; }

.header__1BgVn {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px; }

.noContent__2a0du {
  border: 2px dashed #d8d8d8;
  color: #90979D;
  padding: 60px 0;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: all 200ms ease-out;
  margin-bottom: 24px; }
  .noContent__2a0du:hover {
    border-color: #197da4;
    color: #197da4; }

.itemsContainer__2goYh {
  position: relative; }

.editButton__nn98G {
  position: absolute;
  top: 0;
  right: 0;
  background: #69737b;
  color: white;
  text-transform: uppercase;
  padding: 4px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: background 200ms ease-out; }
  .editButton__nn98G:hover {
    background: #d50f3f; }

.items__1LaEq {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px; }

.item__2Tc1H {
  flex: 0 0 100%; }
  .item__2Tc1H:not(:last-child) {
    margin-bottom: 24px; }
  @media (min-width: 1024px) {
    .item__2Tc1H {
      flex: 0 0 32%; }
      .item__2Tc1H:not(:last-child) {
        margin-bottom: 0; }
      .item__2Tc1H:nth-child(2):last-child {
        margin-right: auto;
        margin-left: 16px; } }

.coresite .noContent__2a0du:hover {
  border-color: #0072cf;
  color: #0072cf; }

.coresite .editButton__nn98G:hover {
  background: #0072cf; }

body .ck__11v7M.ck-balloon-panel__2Q_s7 {
  z-index: 99999; }

.adminButtons__1twML {
  display: flex;
  align-items: center; }
  .adminButtons__1twML > :first-child {
    margin-right: 1rem; }

.coresite .adminButtons__1twML a {
  color: #ffffff; }
  .coresite .adminButtons__1twML a:hover {
    color: #ffffff;
    background-color: #0072cf; }

.header__2N13r {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px; }

.footer__3kCVy {
  padding-top: 15px;
  border-top: 3px solid #dcddde; }
  .footer__3kCVy .quickLink__2H6Sk {
    margin-right: 0; }

.title__3VU0k {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 8px;
  min-height: 38px;
  width: 100%; }
  @media (min-width: 768px) {
    .title__3VU0k {
      font-size: 32px;
      margin-bottom: 24px; } }

.typesContainer__3wq-Y {
  display: flex;
  align-items: center;
  min-height: 1.5em;
  width: 100%;
  margin-top: 10px; }
  @media (min-width: 768px) {
    .typesContainer__3wq-Y {
      width: auto;
      margin-top: 0; } }

.typesContainer__3wq-Y {
  order: 1; }
  @media (min-width: 768px) {
    .typesContainer__3wq-Y {
      order: 0; } }

.title__3VU0k {
  order: 1; }

.buttonLike__1Rtti,
.buttonShare__HLYk3,
.quickLink__2H6Sk {
  order: 2; }
  @media (min-width: 1024px) {
    .buttonLike__1Rtti,
    .buttonShare__HLYk3,
    .quickLink__2H6Sk {
      order: 0; } }

.date__2cn-L {
  order: 3; }

.category__21neE {
  color: #d50f3f;
  font-weight: bold; }

.typesDivider__2ctVo {
  margin: 0 6px;
  color: #282828; }

.headerActionSpacer__2duMg {
  flex: 1 0 auto; }

.actionItemContainer__33Uuo {
  display: flex;
  align-items: center;
  margin-right: 1rem; }

.quickLink__2H6Sk {
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-left: auto; }

.buttonShare__HLYk3 > div {
  display: flex;
  align-items: center; }

.buttonShare__HLYk3 button {
  padding: 0; }

.date__2cn-L {
  margin-left: auto;
  order: 3;
  font-size: 14px;
  min-height: 1em;
  display: flex;
  align-items: center; }
  @media (min-width: 768px) {
    .date__2cn-L {
      font-size: 1em; } }
  @media (min-width: 1024px) {
    .date__2cn-L {
      margin-left: 0; } }

.category__21neE,
.subCategory__nS81P {
  text-transform: uppercase;
  font-size: 12px; }

.loading__291s4 * {
  color: transparent !important; }

.loading__291s4 .date__2cn-L {
  width: 120px; }

body .ck__3P50P.ck-balloon-panel__2S9J- {
  z-index: 99999; }

.container__3OVjI {
  display: flex;
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  color: #197da4;
  margin-top: 3px; }
  .container__3OVjI:hover {
    cursor: pointer; }
    .container__3OVjI:hover .title__wIdZz {
      color: #d50f3f; }
    .container__3OVjI:hover .button__1kh66 {
      color: #d50f3f; }
    .container__3OVjI:hover .numOfLikes__R6Ytm {
      color: #d50f3f; }
  .container__3OVjI .buttonContainer__3WvrH {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .container__3OVjI .button__1kh66 {
    font-size: 28px;
    border: 0;
    background: transparent;
    color: #197da4;
    cursor: pointer;
    padding: 0 6px 0 4px;
    margin-bottom: 6px;
    font-weight: normal; }
    .container__3OVjI .button__1kh66:focus {
      outline: 0; }
  .container__3OVjI .buttonDisabled__36jTu {
    cursor: not-allowed; }
    .container__3OVjI .buttonDisabled__36jTu:hover {
      color: #d8d8d8; }

.coresite .container__3OVjI {
  color: #0072cf; }
  .coresite .container__3OVjI:hover .title__wIdZz,
  .coresite .container__3OVjI:hover .button__1kh66,
  .coresite .container__3OVjI:hover .numOfLikes__R6Ytm {
    color: #0072cf; }
  .coresite .container__3OVjI .button__1kh66 {
    color: #0072cf; }

body .ck__n2oHB.ck-balloon-panel__2flli {
  z-index: 99999; }

.buttonContainer__1BKsf {
  position: relative; }
  .buttonContainer__1BKsf:hover .shareButton__3ayew {
    color: #d50f3f; }
  .buttonContainer__1BKsf:hover .shareText__2QTdQ {
    color: #d50f3f; }
  .buttonContainer__1BKsf:hover svg,
  .buttonContainer__1BKsf:hover svg *,
  .buttonContainer__1BKsf:hover .shareIcon__2JgVb {
    stroke: #d50f3f; }
  .buttonContainer__1BKsf .shareButton__3ayew {
    cursor: pointer;
    background-color: #ffffff;
    background: none;
    border: 0;
    display: flex;
    align-items: center; }
    .buttonContainer__1BKsf .shareButton__3ayew:focus {
      outline: 0; }
  .buttonContainer__1BKsf .shareText__2QTdQ {
    margin-right: 0.5rem;
    color: #197da4;
    font-weight: bold;
    font-size: 12px; }
  .buttonContainer__1BKsf .menu__32a56 {
    position: absolute;
    top: 40px;
    list-style-type: none;
    margin: 5px 0;
    padding: 0;
    min-width: 150px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
  .buttonContainer__1BKsf .menuItem__z9o4Q {
    margin: 0;
    background-color: #ffffff; }
  .buttonContainer__1BKsf .menuItem__z9o4Q > button {
    width: 100%;
    min-height: 40px;
    text-align: left;
    font-weight: bold;
    background-color: #ffffff;
    border: none;
    color: #197da4;
    cursor: pointer;
    padding-left: 10px; }
    .buttonContainer__1BKsf .menuItem__z9o4Q > button:hover {
      color: #ffffff;
      background-color: #197da4; }

.coresite .buttonContainer__1BKsf:hover .shareButton__3ayew {
  color: #0072cf; }

.coresite .buttonContainer__1BKsf:hover .shareText__2QTdQ {
  color: #0072cf; }

.coresite .buttonContainer__1BKsf:hover svg,
.coresite .buttonContainer__1BKsf:hover svg *,
.coresite .buttonContainer__1BKsf:hover .shareIcon__2JgVb {
  stroke: #0072cf; }

.coresite .buttonContainer__1BKsf .shareText__2QTdQ {
  color: #0072cf; }

.coresite .buttonContainer__1BKsf .menuItem__z9o4Q > button {
  color: #0072cf; }
  .coresite .buttonContainer__1BKsf .menuItem__z9o4Q > button:hover {
    color: #ffffff;
    background-color: #0072cf; }

.placeholder__1hC4R {
  height: 0;
  overflow: hidden;
  position: relative; }
  .placeholder__1hC4R img {
    position: absolute;
    top: 0;
    left: 0; }

.image__9Bf2E {
  width: 100%;
  height: auto;
  display: block; }

.container__2fFQ- {
  box-shadow: 0px 2px 23px 0px #E4E6E9;
  background: white;
  border-radius: 2px; }

.text__1ZJt7 {
  padding: 2rem; }

.title__uCP7J {
  font-weight: 400;
  font-size: 18px;
  margin: 10px 0; }
  .title__uCP7J a {
    color: #162732;
    text-decoration: none; }

.category__l5pZb {
  color: #D11242;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700; }

.loading__pcco1 .title__uCP7J {
  height: 25px;
  width: 70%; }

.loading__pcco1 .category__l5pZb {
  width: 20%;
  height: 14px; }

.loading__pcco1 .body__QEUMQ {
  height: 20px;
  width: 100%; }

body .ck__2EMvj.ck-balloon-panel__3LQy- {
  z-index: 99999; }

.container__11fv- {
  position: relative; }

.heading__3qzjO {
  margin-top: 0;
  color: #162732; }

.field__1F4m4 {
  margin-bottom: 20px; }

.fieldLabel__1Ur4d {
  font-size: 12px;
  display: block;
  color: #69737b;
  text-transform: uppercase; }

.editButton__3QB8w {
  z-index: 10;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  box-shadow: 7px 2px 7px rgba(215, 215, 215, 0.2), -7px 2px 7px rgba(215, 215, 215, 0.2);
  border-radius: 3px; }

.noAnnouncement__3KXRS {
  text-align: center;
  padding: 6rem;
  border: 2px dashed #cfcfcf;
  cursor: pointer;
  background: #ffffff;
  transition: background 0.25s ease-in-out; }
  .noAnnouncement__3KXRS:hover {
    background: #eaeaea; }

.modalOuter__3eLzu {
  overflow: visible; }
  .modalOuter__3eLzu .modal-content {
    overflow: visible; }

.modalInner__r1178 {
  width: 600px;
  height: 400px;
  padding: 2rem 0;
  overflow: visible; }

.modalContent__1t7Y8 {
  margin-top: 1rem;
  min-height: 270px;
  overflow: visible;
  padding: 0 30px; }

.buttonAreaInner__WYIHi {
  display: flex;
  justify-content: space-between;
  width: 100%; }

body .ck__WJAIl.ck-balloon-panel__xcwFq {
  z-index: 99999; }

.container__3vrD9 {
  padding: 24px;
  z-index: 10; }
  @media (min-width: 1800px) {
    .container__3vrD9 {
      padding: 24px 0; } }

.topContainer__3g6FC {
  position: relative;
  padding: 0; }

.topRow__2uGNi {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  flex-wrap: wrap; }
  @media (min-width: 1024px) {
    .topRow__2uGNi {
      flex-wrap: nowrap; } }

.announcement__gecq9 {
  width: 100%;
  flex: 0 0 auto;
  margin: 0 0 24px 0;
  background: white;
  box-shadow: 0px 0px 8px 1px lightgrey; }
  @media (min-width: 1024px) {
    .announcement__gecq9 {
      width: 380px;
      margin: 0 50px 0 0; } }

.recent__2u0hc {
  flex: 1 1 auto; }
  .recent__2u0hc .accent-header {
    margin-bottom: 24px; }

.recentHeader__23Ebm {
  font-weight: 900;
  margin-top: 0;
  color: #162732; }

.recentApplicationsList__1LWiT {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  margin: -12px; }

.recentApplicationsSingle__2P5tV {
  position: relative;
  flex: 1 1 100%;
  padding: 12px; }
  @media (min-width: 768px) {
    .recentApplicationsSingle__2P5tV {
      flex: 1 1 50%; } }

.recentApplicationsSingleInner__27ccS {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #cacaca;
  padding: 5px 0px; }

.recentApplicationsLink__33PgX {
  color: #000000; }

.coresite a.recentApplicationsLink__33PgX {
  color: #000000; }

.recentApplicationsChevron__qo7Ns {
  width: 8px; }

.recentNoneYet__23ll8 {
  margin-top: 24px;
  font-weight: normal;
  font-size: 14px; }

.body__6wx_p {
  padding: 24px 0;
  z-index: 10;
  position: relative; }
  .body__6wx_p:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }
  .body__6wx_p:after {
    box-shadow: inset 0px -6px 6px 1px rgba(0, 0, 0, 0.025); }
  .body__6wx_p p {
    margin: 0; }

body .ck__HhnOQ.ck-balloon-panel__Nvzs6 {
  z-index: 99999; }

.container__2uNZO {
  display: flex;
  flex-wrap: wrap;
  min-height: 180px; }

.imageContainer__1ILXf {
  flex: 0 0 100%;
  margin-bottom: 12px; }
  @media (min-width: 768px) {
    .imageContainer__1ILXf {
      flex: 0 0 25%; } }

.textContainer__2mhAJ {
  flex: 1 1 auto; }
  @media (min-width: 768px) {
    .textContainer__2mhAJ {
      padding: 0 24px 16px 24px;
      max-width: 74%; } }

.title__1vmLz {
  font-weight: 900;
  font-size: 22px;
  margin: 0.5rem 0; }
  .title__1vmLz a {
    color: black;
    text-decoration: none; }

.date__22AUI {
  font-size: 12px;
  color: #636363;
  margin: 0; }

.summary__1U8Wa {
  color: #162732;
  font-size: 14px;
  margin-top: 0.25rem;
  margin-bottom: 0; }

.categoryTags__3YtaS {
  display: flex;
  align-items: center; }

.category__3BcIE, .tags__6Qys4 {
  display: inline-block; }

.category__3BcIE {
  color: #d50f3f;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold; }

.coresite .category__3BcIE {
  color: #0072cf; }

.department__1x1W8 {
  text-transform: uppercase;
  font-size: 11px;
  border-left: 1px solid black;
  padding-left: 6px;
  margin-left: 6px; }

.placeholder__2J8Jy .drupal-image--placeholder {
  background: #f1f2f3;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden; }

.placeholder__2J8Jy .title__1vmLz {
  height: 25px;
  background: #f1f2f3;
  width: 70%; }

.placeholder__2J8Jy .category__3BcIE {
  background: #f1f2f3;
  width: 60px;
  height: 14px; }

.placeholder__2J8Jy .department__1x1W8 {
  background: #f1f2f3;
  width: 25px;
  height: 12px;
  border: none; }

.placeholder__2J8Jy .body__2Yu8Y {
  background: #f1f2f3;
  height: 20px;
  width: 100%; }

.placeholder__2J8Jy .date__22AUI {
  background: #f1f2f3;
  width: 50px;
  height: 12px; }

.placeholder__2J8Jy .summary__1U8Wa {
  background: #f1f2f3;
  width: 100%;
  height: 4em; }

body .ck__fYy5h.ck-balloon-panel__6lYpS {
  z-index: 99999; }

.articles__gNdgy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px; }
  @media (min-width: 1800px) {
    .articles__gNdgy {
      padding: 24px 0; } }

.articles__gNdgy .news-article--frontpage {
  flex: 0 0 100%;
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .articles__gNdgy .news-article--frontpage {
      flex: 0 0 49%; } }
  .articles__gNdgy .news-article--frontpage:first-child {
    flex: 0 0 100%; }
  .articles__gNdgy .news-article--frontpage:nth-child(n+4) {
    flex: 0 0 100%; }
    @media (min-width: 768px) {
      .articles__gNdgy .news-article--frontpage:nth-child(n+4) {
        flex: 0 0 32%; } }
    .articles__gNdgy .news-article--frontpage:nth-child(n+4) .news-article--frontpage--title {
      font-size: 18px; }

body .ck__35dSC.ck-balloon-panel__2eZnR {
  z-index: 99999; }

@media (min-width: 1024px) {
  .articles__2pZ3b {
    display: flex;
    flex-wrap: wrap; } }

.featured__2uUfR, .other__3K30n {
  width: 100%;
  min-height: auto;
  margin-top: 24px; }
  @media (min-width: 1024px) {
    .featured__2uUfR, .other__3K30n {
      display: flex;
      justify-content: space-between; } }

.events__yw8_5 {
  width: 100%;
  margin-top: 24px; }

.other__3K30n > .news-article--frontpage, .featured__2uUfR > .news-article--frontpage {
  width: 100%;
  min-height: auto;
  margin-bottom: 1rem; }
  @media (min-width: 1024px) {
    .other__3K30n > .news-article--frontpage, .featured__2uUfR > .news-article--frontpage {
      margin-bottom: 0; } }

@media (min-width: 1024px) {
  .featured__2uUfR > .news-article--frontpage {
    width: calc(50% - 16px); } }

@media (min-width: 1024px) {
  .other__3K30n > .news-article--frontpage {
    width: calc(33% - 16px); } }

body .ck__1tRB-.ck-balloon-panel__3lJvw {
  z-index: 99999; }

.container__1P5v_ {
  max-height: 210px;
  overflow-y: auto; }

.checkboxContainer__1tGwA {
  text-align: right; }

.eventListHeadingTitle__mVTE1 {
  margin: 0 0 10px;
  font-size: 16px;
  padding-left: 10px;
  font-weight: 900; }

.eventSectionHeading__tPsrl {
  padding: 0 10px;
  font-weight: bold; }

body .ck__qjkJt.ck-balloon-panel__8IHal {
  z-index: 99999; }

.event__1Oo38 {
  padding: 10px; }

.location__ovqd- {
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #197da4; }

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

.names__ZzuyM {
  font-size: 12px;
  margin-bottom: 5px; }

.date__1L6NT {
  font-size: 12px;
  min-width: 40px; }

.coresite .location__ovqd- {
  color: #6e4bf6; }

body .ck__3MVDi.ck-balloon-panel__2fDaV {
  z-index: 99999; }

.container__DGsL2 {
  padding: 24px;
  position: relative;
  z-index: 10;
  position: relative; }
  .container__DGsL2:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.loading__V8l4g {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center; }

.body__1ZbmU {
  display: flex;
  flex-wrap: wrap; }

.calendar__29Oav,
.list__2iuWE {
  margin: 24px 0;
  width: 100%; }
  @media (min-width: 768px) {
    .calendar__29Oav,
    .list__2iuWE {
      width: 50%; } }

.calendar__29Oav {
  padding-right: 12px; }

.list__2iuWE {
  padding-left: 12px; }

body .ck__kUMnO.ck-balloon-panel__KNvfn {
  z-index: 99999; }

.container__FhmMx {
  position: relative; }
  .container__FhmMx:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.header__2mt-m {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px; }

.selectedMonth__1bHo9 {
  font-size: 1rem;
  font-weight: normal;
  color: #162732; }

.controls__3vre6 {
  display: flex;
  align-items: center; }

.prevNextContainer__1wSy2 {
  background-color: #f1f2f3;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
  .prevNextContainer__1wSy2:first-child {
    margin-right: 10px; }

.prevNext__2Ia_I {
  height: 12px; }

.prevNextPrev__1kfIW {
  transform: rotate(180deg); }

.weekdays__1oa6E,
.week__1UAY6 {
  display: flex;
  justify-content: space-between; }

.weekday__VLMfW {
  color: #90979D;
  font-weight: bold; }

.weekday__VLMfW,
.day__K0oAv {
  width: 2.5em;
  text-align: center;
  margin: 6px 0;
  padding: 2px 0; }

.day__K0oAv {
  font-size: 15px;
  position: relative;
  cursor: default; }

.dayDiffMonth__1Jf-A {
  color: #d8d8d8; }

.dayToday__3WcLC {
  font-weight: bold; }

.eventDayText__1da4K {
  width: 24px;
  margin: auto;
  text-align: center;
  line-height: 27px;
  height: 24px; }

.daySelected__3y9kN .eventDayText__1da4K {
  color: #197da4;
  background: #F1F2F3;
  border-radius: 50%;
  font-weight: bold; }

.eventDotContainer__3papi {
  position: absolute;
  top: 5px;
  left: -10px;
  display: flex;
  width: 18px;
  flex-wrap: wrap;
  justify-content: flex-end; }

.eventDot__3r5t_ {
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: 2px; }

.eventDotHoliday__2R29n {
  background: #AFAA2D; }

.eventDotRegular__2axpC {
  background: #197da4; }

.isClickable__1fpjU {
  cursor: pointer; }

.coresite .prevNextContainer__1wSy2 {
  background-color: #f0f0f0; }

.coresite .weekday__VLMfW {
  color: #989898; }

.coresite .dayDiffMonth__1Jf-A {
  color: #e0e0e0; }

.coresite .eventDotHoliday__2R29n {
  background: #6e4bf6; }

.coresite .eventDotRegular__2axpC {
  background: #6e4bf6; }

body .ck__1TDLR.ck-balloon-panel__1N8jB {
  z-index: 99999; }

.container__2DG3v {
  max-height: 210px;
  overflow-y: auto; }

.checkboxContainer__1iJN4 {
  text-align: right; }

.eventListHeadingTitle__19GAT {
  margin: 0 0 10px;
  font-size: 16px;
  padding-left: 10px;
  font-weight: 900; }

.eventSectionHeading__2ZlbT {
  padding: 0 10px;
  font-weight: bold; }

body .ck__2NzXo.ck-balloon-panel__1hMGb {
  z-index: 99999; }

.event__2jU9M {
  padding: 11px;
  margin-bottom: 6px;
  border-bottom: 1px solid #d8d8d8;
  display: flex; }
  .event__2jU9M .react-add-to-calendar {
    margin-left: auto;
    position: relative; }
  .event__2jU9M .react-add-to-calendar__button {
    color: #d50f3f; }

.right__WCx2h {
  flex: 0 0 auto;
  padding-left: 8px; }

.left__xox5Y {
  flex: 1 1 auto; }

.eventBody__3YaUK {
  display: flex; }

.holidayLocation__2caIP {
  font-size: 12px;
  flex: 1 1 50%; }
  .holidayLocation__2caIP * {
    color: #69737b;
    line-height: normal; }
  .holidayLocation__2caIP p:first-child {
    margin-top: 0; }
  .holidayLocation__2caIP p:last-child {
    margin-bottom: 0; }

.addToCalendarWrapper__2fJvD {
  font-size: 12px;
  cursor: pointer;
  text-align: right;
  font-weight: bold; }

.addToCalendarDropdown__1Lhe_ {
  margin: 10px 0;
  text-align: right; }
  .addToCalendarDropdown__1Lhe_ ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .addToCalendarDropdown__1Lhe_ a {
    font-size: 12px;
    color: #197da4; }

.eventTag__1uxUl {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 3px; }

.eventTagHoliday__3qtXz {
  color: #AFAA2D; }

.eventTagGeneric__rrXKp {
  color: #197da4; }

.date__2EmBj {
  font-size: 12px;
  text-align: right;
  margin-bottom: 4px; }

.holidayDate__1n6M5 {
  font-weight: bold; }

.title__31577 {
  font-size: 12px;
  font-weight: bold; }
  .title__31577 a {
    color: black;
    text-decoration: none; }
    .title__31577 a:hover {
      color: rgba(0, 0, 0, 0.8); }

.titleContainer__3rdL6 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px; }

.coresite .eventTagHoliday__3qtXz {
  color: #6e4bf6; }

.coresite .eventTagGeneric__rrXKp {
  color: #0072cf; }

.coresite .addToCalendarDropdown__1Lhe_ a {
  color: #0072cf; }

.coresite .event__2jU9M .react-add-to-calendar__button {
  color: #0072cf; }

body .ck__2nCMl.ck-balloon-panel__2K74e {
  z-index: 99999; }

.container__zfR9k {
  padding: 24px;
  position: relative;
  z-index: 10;
  position: relative; }
  .container__zfR9k:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.loading__2XqbY {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center; }

.body__pxNl_ {
  display: flex;
  flex-wrap: wrap; }

.calendar__2_ed8,
.list__2ebLn {
  margin: 24px 0;
  width: 100%; }
  @media (min-width: 768px) {
    .calendar__2_ed8,
    .list__2ebLn {
      width: 50%; } }

.calendar__2_ed8 {
  padding-right: 12px; }

.list__2ebLn {
  padding-left: 12px; }

.eventRow__3hCm7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 2rem 0;
  position: relative; }
  @media (max-width: 768px) {
    .eventRow__3hCm7 {
      grid-template-columns: 1fr; } }
  .eventRow__3hCm7:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.eventCard__5SzE6 {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.eventImageWrapper__784Pk {
  position: relative;
  width: 100%;
  padding-top: 42.55%;
  overflow: hidden; }

.eventImage__2AiC4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.eventDateOverlay__2V5H_ {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  color: #333333; }

.eventDateDay__2wcHP {
  font-size: 18px;
  font-weight: normal; }

.eventDateMonth__3mznA {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase; }

.eventContent__1Jdus {
  padding: 2rem; }

.eventType__NHJrK {
  font-size: 12px;
  font-weight: 700;
  color: #D11242;
  margin-bottom: 0.5rem;
  text-transform: uppercase; }

.eventTitle__2ZfFi {
  font-size: 18px;
  line-height: 1.4;
  color: #162732; }

body .ck__2UQ7r.ck-balloon-panel__2Cy23 {
  z-index: 99999; }

.container__Eih_u {
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__Eih_u {
      padding: 24px 0; } }

.header__s-zSt {
  display: block;
  padding: 0; }
  @media (min-width: 768px) {
    .header__s-zSt {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0; } }

.searchContainer__2kz6x {
  padding-right: 32px;
  flex: 1 1 auto; }

.button__2Abd9 {
  font-size: 14px;
  color: #197da4;
  padding: 0.75rem 2.5rem;
  border: 1px solid #197da4;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .button__2Abd9 {
      display: inline;
      width: auto;
      margin-bottom: 0; } }

.coresite .button__2Abd9 {
  color: #0072cf;
  border: 1px solid #0072cf; }

body .ck__1dUnR.ck-balloon-panel__25zBF {
  z-index: 99999; }

.container__1Ai6K {
  min-height: 600px;
  margin: 0 auto;
  padding: 0 24px 24px; }
  @media (min-width: 1800px) {
    .container__1Ai6K {
      padding: 0;
      max-width: 960px; } }

.filters__WG8qJ {
  margin: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .filters__WG8qJ {
      flex-direction: row; } }

.selectFieldWrapper__1C6-I {
  width: 100%; }
  @media (min-width: 1024px) {
    .selectFieldWrapper__1C6-I {
      width: 200px; } }

.inputContainer__1K2pk {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 20px; }
  @media (min-width: 1024px) {
    .inputContainer__1K2pk {
      width: 80%;
      flex-direction: row;
      margin-bottom: 0; } }

.actionButtonsContainer__2MdgU {
  width: 100%;
  display: flex; }
  @media (min-width: 768px) {
    .actionButtonsContainer__2MdgU {
      justify-content: flex-end; } }
  @media (min-width: 1024px) {
    .actionButtonsContainer__2MdgU {
      width: 20%;
      text-align: right;
      flex-direction: column;
      justify-content: space-between; } }

.totalResults__jHztj {
  font-size: 14px;
  margin-right: 1rem; }

.searchInputContainer__1FIXn {
  width: 100%;
  margin-bottom: 20px; }
  @media (min-width: 1024px) {
    .searchInputContainer__1FIXn {
      width: 60%;
      margin-bottom: 0; } }

.filterContainer__3Qnxv {
  display: flex;
  align-items: center; }
  @media (min-width: 1024px) {
    .filterContainer__3Qnxv {
      margin-left: 16px; } }

.filterLabel__1Vw6h {
  display: block;
  margin-right: 10px;
  font-size: 14px;
  color: #5d5d5d; }

.resultsContainer__3wO-y {
  padding: 24px 0;
  position: relative; }
  .resultsContainer__3wO-y:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.row__VPlA5:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 24px;
  margin-bottom: 24px; }

.noResults__2iEtA {
  font-size: 16px;
  font-weight: bold;
  padding-top: 30px;
  min-height: 350px; }

body .ck__2kiwo.ck-balloon-panel__2aVGM {
  z-index: 99999; }

.container__3reWh {
  padding: 2rem 0; }
  @media (min-width: 768px) {
    .container__3reWh {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 20px; } }

.item__3L710,
.itemLoading__3tqt0 {
  border-radius: 6px;
  padding: 1rem 2rem;
  background-color: #ffffff;
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .item__3L710,
    .itemLoading__3tqt0 {
      margin-bottom: 0; } }

.itemLoading__3tqt0 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px; }

.inactivePoll__1u6g8 {
  opacity: 0.4; }

.archivedHeader__1Qqnh {
  font-size: 12px;
  font-weight: bold;
  color: #d50f3f;
  margin-top: 12px; }

body .ck__2BSO4.ck-balloon-panel__1at7h {
  z-index: 99999; }

.container__1xao9 {
  position: relative;
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__1xao9 {
      padding: 24px 0; } }

.body__1NR-C {
  min-height: 200px;
  margin-bottom: 24px; }

.loading__pewXy * {
  color: transparent !important; }

body .ck__26dln.ck-balloon-panel__2cdVT {
  z-index: 99999; }

.container__2mmtn {
  position: relative;
  padding: 24px; }
  @media (min-width: 1800px) {
    .container__2mmtn {
      padding: 24px 0; } }

.body__2z3-4 {
  min-height: 200px;
  margin-bottom: 24px; }

.loading__15l1i * {
  color: transparent !important; }

body .ck__2W3n8.ck-balloon-panel__1kNmC {
  z-index: 99999; }

h4 {
  margin-top: 0.5rem;
  margin-bottom: 1rem; }

.nominationFormContainer__3KXzr {
  font-family: "Frutiger", sans-serif;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  background-color: #ffffff;
  position: relative;
  z-index: 10; }

.sectionContainer__1caFv {
  margin-bottom: 4rem;
  /* Section: Nominee */
  /* Section: Core Principles */
  /* Section: Nomination */
  /* Section: Submit */ }
  .sectionContainer__1caFv .sectionHeading__37sJk {
    display: block;
    font-size: 20px;
    color: #000000;
    font-weight: 700; }
  .sectionContainer__1caFv .sectionContent__fh0Pj {
    display: block;
    font-weight: normal;
    font-size: 16px; }
  .sectionContainer__1caFv.sectionNominee__JNDH6 {
    margin-bottom: 3rem; }
  .sectionContainer__1caFv .blockFilters__22mbN {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.5rem; }
    .sectionContainer__1caFv .blockFilters__22mbN .filterOption__2yV_Y {
      flex: 1; }
    @media screen and (max-width: 766px) {
      .sectionContainer__1caFv .blockFilters__22mbN {
        flex-direction: column; }
        .sectionContainer__1caFv .blockFilters__22mbN .filterOption__2yV_Y {
          flex: 1 1 100%; } }
  .sectionContainer__1caFv .blockSearch__tze8t {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem; }
    .sectionContainer__1caFv .blockSearch__tze8t p {
      display: block;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
      font-size: 15px;
      font-style: italic; }
  .sectionContainer__1caFv .blockTotalResults__c-9io {
    margin: 1rem 0 0.5rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px #E7E7E7; }
  .sectionContainer__1caFv .blockSearchResults__2G9b2 .resultsContainer__1lJgT .userResult__33lYc {
    padding-bottom: 0.5rem;
    border-bottom: solid 1px #E7E7E7; }
    .sectionContainer__1caFv .blockSearchResults__2G9b2 .resultsContainer__1lJgT .userResult__33lYc:nth-child(5) {
      border-bottom: none; }
  .sectionContainer__1caFv .blockCorePrinciples__2Y-_x {
    display: flex;
    flex-wrap: wrap; }
    .sectionContainer__1caFv .blockCorePrinciples__2Y-_x .checkbox__1qVRW {
      flex: 1 1 48%;
      box-sizing: border-box; }
    @media screen and (max-width: 1023px) {
      .sectionContainer__1caFv .blockCorePrinciples__2Y-_x .checkbox__1qVRW {
        flex: 1 1 100%; } }
  .sectionContainer__1caFv.sectionNomination__3L1A3 {
    margin-bottom: 0.5rem; }

.borderBottom__3GPig {
  border-bottom: 1px solid #E7E7E7; }

.border__1SbvM {
  border: 1px solid #E7E7E7;
  padding: 5px; }

.nominationTypeInput__dcSbE {
  padding: 5px 10px; }
  .nominationTypeInput__dcSbE .nominationTypeLabel__2ifWq {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 3px; }

.pager > div[class^="pages"] {
  justify-content: center; }

.fontNormal__3KWGW {
  font-weight: normal; }

.selectedUsersBlock__35z3h {
  background-color: #F5FBFD; }
  .selectedUsersBlock__35z3h > .row__3KKzt {
    padding-bottom: 0; }

.selectedUsersBlock__35z3h,
.resultsContainer__1lJgT {
  flex: 1;
  width: 100%; }

.resultsContainer__1lJgT {
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  overflow: auto; }

.hidden__3eZFR {
  display: none; }

.row__3KKzt:nth-child(5) {
  border-bottom: none; }

.submitButton__3XBKd {
  background-color: #1fa4d7;
  min-width: 250px;
  border: none;
  color: #ffffff;
  padding: 15px 25px;
  font-family: "Frutiger", sans-serif;
  font-size: 18px;
  cursor: pointer; }
  @media screen and (max-width: 767px) {
    .submitButton__3XBKd {
      min-width: auto; } }

.submitButtonDisabled__26Ivp {
  background-color: #d3d3d3;
  color: #4a4e4d;
  cursor: not-allowed; }

.stCorePrinciples__229Lk {
  margin-bottom: 3rem; }

.coresite .submitButton__3XBKd {
  background-color: #0072cf; }
  .coresite .submitButton__3XBKd.submitButtonDisabled__26Ivp {
    background-color: #d3d3d3; }

body .ck__3tP4B.ck-balloon-panel__2TZVS {
  z-index: 99999; }

.container__3uXF9 {
  display: flex;
  padding: 1rem 0; }
  @media screen and (max-width: 767px) {
    .container__3uXF9 {
      flex-direction: column; } }

.photoContainer__37QNn svg,
.photoContainer__37QNn img {
  width: 80px;
  height: auto;
  border-radius: 50%; }

@media screen and (max-width: 767px) {
  .photoContainer__37QNn {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; } }

@media (min-width: 768px) {
  .photoContainer__37QNn {
    margin-right: 16px; } }

.photoContainer__37QNn .avatarContainer__2KG0R {
  position: relative; }
  .photoContainer__37QNn .avatarContainer__2KG0R img.avatarLabel__1OCKm {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px; }

.infoContainer__2j6ly {
  width: 100%;
  padding: 0 1rem;
  display: flex; }
  @media screen and (max-width: 767px) {
    .infoContainer__2j6ly {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center; }
      .infoContainer__2j6ly .infoDetails__3OncM {
        max-width: 100%; } }

.infoSection__1629Z {
  width: 100%;
  overflow-wrap: break-word;
  padding: 0.5em 0; }
  @media (min-width: 1024px) {
    .infoSection__1629Z {
      padding: 0 10px;
      flex: 0 1 33%; }
      .infoSection__1629Z.infoPhone__2TJE1 {
        align-self: flex-end;
        text-align: right; } }

.infoMain__3fCbM {
  padding-top: 0;
  display: flex;
  flex-wrap: wrap; }

.name__T_PIO {
  flex: 1 0 100%; }

.infoMainSubsection__1G9mQ {
  align-self: flex-end;
  flex: 1; }
  @media screen and (max-width: 767px) {
    .infoMainSubsection__1G9mQ {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center; } }

.infoDetails__3OncM {
  max-width: 245px; }
  @media (min-width: 1024px) {
    .infoDetails__3OncM {
      max-width: 100%;
      align-self: flex-end; } }

.text__mbLG3 {
  display: block;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4rem; }

.isTitle__2lah4 {
  font-size: 18px;
  margin-bottom: 0.5rem; }

.isClickable__A_BuL {
  color: #197da4; }

.coresite .isClickable__A_BuL {
  color: #0072cf; }

.phone__hVYcP:not(.isClickable__A_BuL) {
  color: black;
  text-decoration: none; }

.isVerticallyCentered__3gtmU {
  align-items: center; }

.isEndAligned__121sI {
  align-items: flex-end; }

.hasRightMargin__3i_I0 {
  margin-right: 32px; }

.isTextCenteredMobile__aEFo6 {
  text-align: center; }
  @media (min-width: 768px) {
    .isTextCenteredMobile__aEFo6 {
      text-align: initial; } }

.address__ICC13 * {
  margin: 0;
  line-height: 1.4rem; }

.placeholder__WkfoT .name__T_PIO {
  height: 18px;
  width: 100px;
  background: #f1f2f3; }

.placeholder__WkfoT .title__1pICk {
  height: 14px;
  width: 100px;
  background: #f1f2f3; }

.placeholder__WkfoT .businessUnit__1elWE {
  height: 14px;
  width: 30%;
  background: #f1f2f3; }

.placeholder__WkfoT .address__ICC13 {
  background: #f1f2f3;
  width: 300px;
  height: 32px; }

.placeholder__WkfoT .email__3IBln {
  height: 16px;
  width: 200px;
  background: #f1f2f3; }

.placeholder__WkfoT .phone__hVYcP {
  height: 16px;
  width: 150px;
  background: #f1f2f3; }

.actionContainer__2f_wS {
  display: flex;
  align-items: center;
  justify-items: center;
  font-size: 16px; }
  .actionContainer__2f_wS > div[class~="loading-spinner"] {
    flex: 1; }
  .actionContainer__2f_wS .box__Gn8MI {
    min-width: 110px;
    padding: 10px 20px;
    font-family: "Frutiger", sans-serif;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    flex: 1;
    color: #162732; }
  @media screen and (min-width: 1280px) {
    .actionContainer__2f_wS .box__Gn8MI {
      min-width: 130px; } }
  .actionContainer__2f_wS .statusSubmitted__30Fl1 {
    background-color: #dcddde;
    cursor: not-allowed; }
  .actionContainer__2f_wS .statusSelected__2j7B0 {
    background-color: #1fa4d7;
    color: #ffffff; }
  .actionContainer__2f_wS button {
    border: none; }

.coresite .actionContainer__2f_wS .statusSelected__2j7B0 {
  background-color: #0072cf; }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .infoContainer__2j6ly {
    flex-direction: column; } }

body .ck__3mxbX.ck-balloon-panel__EISPW {
  z-index: 99999; }

.fieldCheckbox__3L5A- {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0; }
  .fieldCheckbox__3L5A- input {
    margin-top: 8px;
    margin-right: 10px;
    accent-color: #197da4; }
    .fieldCheckbox__3L5A- input:hover {
      accent-color: #457492; }
  .fieldCheckbox__3L5A- .label__3Lmlr {
    margin-top: 3px; }

.coresite .fieldCheckbox__3L5A- input {
  accent-color: #0072cf; }
  .coresite .fieldCheckbox__3L5A- input:hover {
    accent-color: #0072cf; }

body .ck__1Lwe8.ck-balloon-panel__31WR0 {
  z-index: 99999; }

.fieldTextArea__3fMvv {
  width: 100%; }

.field__YgKy_ {
  width: 100%;
  height: 300px;
  resize: vertical;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Frutiger", sans-serif;
  color: #000000;
  line-height: 1.4;
  padding: 15px 10px;
  border: 1px solid #E7E7E7; }
  .field__YgKy_:focus {
    outline: 2px solid #1fa4d7; }

.coresite .field__YgKy_:focus {
  outline: 2px solid #0072cf; }

body .ck__3y4ma.ck-balloon-panel__2oJrM {
  z-index: 99999; }

.overlay__2pap2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10; }

.modal__2kt4p {
  position: relative;
  overflow: auto;
  outline: none;
  background: white; }
  @media screen and (max-width: 1023px) {
    .modal__2kt4p {
      height: 90vh; } }
  @media (min-width: 1024px) {
    .modal__2kt4p {
      min-width: 280px;
      max-height: 80vh;
      width: auto;
      padding-top: 0; } }

.closeButton__1snKh {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #b5b5b5;
  font-size: 11px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  background: none; }
  .closeButton__1snKh:hover {
    color: #90979D; }

.row__3hNDP {
  display: flex;
  flex-wrap: wrap; }

.col__12mW4 {
  flex: 1; }

.col-1-3__2ytN7 {
  flex: 1 1 33.3333%; }

.contentContainer___m4s2 {
  max-width: 80vw; }
  .contentContainer___m4s2 h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px; }

.contentGroup__1IdQ2 {
  width: 100%;
  margin-bottom: 25px; }
  .contentGroup__1IdQ2 h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #80888e; }
  .contentGroup__1IdQ2 p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left; }

.actions__4SI0S {
  margin-top: 35px;
  margin-bottom: 25px; }
  .actions__4SI0S .submittingStatus__3M8jY {
    display: flex;
    min-width: 150px; }
    .actions__4SI0S .submittingStatus__3M8jY > div {
      flex: 1; }
  .actions__4SI0S button {
    min-width: 150px;
    border: none;
    font-family: "Frutiger", sans-serif;
    font-size: 18px;
    padding: 15px 25px;
    text-transform: capitalize;
    cursor: pointer;
    margin-right: 35px; }
  .actions__4SI0S .submitButton__3RBJe {
    background-color: #1fa4d7;
    color: #ffffff; }
  .actions__4SI0S .cancelButton__saqZK {
    background-color: #ffffff;
    color: #1fa4d7;
    text-decoration: underline; }

.modal__2kt4p .modal-content {
  padding: 30px; }

.modal-theme-coresite .actions__4SI0S .submitButton__3RBJe {
  background-color: #0072cf; }

.modal-theme-coresite .actions__4SI0S .cancelButton__saqZK {
  color: #0072cf; }

body .ck__3RLi3.ck-balloon-panel__3g2Em {
  z-index: 99999; }

.overlay__3Wfmm {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10; }

.modal__RFgRp {
  position: relative;
  overflow: auto;
  outline: none;
  min-width: 80vw;
  background: white; }
  @media (min-width: 1024px) {
    .modal__RFgRp {
      min-width: 280px;
      max-height: 80vh;
      width: auto;
      padding-top: 0; } }

.closeButton__1gJ6z {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #b5b5b5;
  font-size: 11px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  background: none; }
  .closeButton__1gJ6z:hover {
    color: #90979D; }

.row__1kBAB {
  display: flex;
  flex-wrap: wrap; }

.col__2nD5m {
  flex: 1; }

.col-1-3__3aEND {
  flex: 1 1 33.3333%; }

.contentContainer__1BQ-n {
  text-align: center;
  max-width: 80vw; }
  .contentContainer__1BQ-n h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px; }
  .contentContainer__1BQ-n * {
    text-align: center; }

.contentGroup__3ZXjj {
  width: 100%;
  margin-bottom: 25px; }
  .contentGroup__3ZXjj p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 50vw;
    text-align: center; }

.actions__3Bh5u {
  margin-top: 35px;
  margin-bottom: 25px; }
  .actions__3Bh5u button {
    min-width: 150px;
    border: none;
    font-family: "Frutiger", sans-serif;
    font-size: 18px;
    padding: 15px 25px;
    text-transform: capitalize;
    cursor: pointer;
    margin-right: 35px; }
  .actions__3Bh5u .submitButton__2TfY9 {
    background-color: #37a4d7;
    color: #ffffff; }
  .actions__3Bh5u .cancelButton__21-xZ {
    background-color: #ffffff;
    color: #37a4d7;
    text-decoration: underline; }

.modal__RFgRp .modal-content {
  padding: 30px; }

.container__2s4Ff {
  position: relative; }

.disabled__fkNLO {
  cursor: not-allowed;
  position: relative; }

.disabled__fkNLO:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2); }

.label__3sUe7 {
  color: #a0a0a0;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  font-size: 12px; }

body .ck__1BFA0.ck-balloon-panel__21i4R {
  z-index: 99999; }

.container__3lwCT {
  position: relative;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0; }
  @media screen and (max-width: 767px) {
    .container__3lwCT {
      flex-direction: column; } }

.removeButton__tKb5H {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
  background-color: white; }
  .removeButton__tKb5H img {
    width: 100%;
    height: 100%; }

.photoContainer__zVjGX svg,
.photoContainer__zVjGX img {
  width: 80px;
  height: auto;
  border-radius: 50%; }

@media screen and (max-width: 767px) {
  .photoContainer__zVjGX {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; } }

@media (min-width: 768px) {
  .photoContainer__zVjGX {
    margin-right: 16px; } }

.photoContainer__zVjGX .avatarContainer__33j-R {
  position: relative; }
  .photoContainer__zVjGX .avatarContainer__33j-R img.avatarLabel__3yDUZ {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px; }

.infoContainer__2jpX7 {
  width: 100%;
  padding: 0 1rem;
  display: flex; }
  @media screen and (max-width: 767px) {
    .infoContainer__2jpX7 {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center; }
      .infoContainer__2jpX7 .infoDetails__SBZ7c {
        max-width: 100%; } }
  @media (min-width: 1024px) {
    .infoContainer__2jpX7 {
      display: flex;
      align-items: space-between; } }

.infoSection__2OvGa {
  width: 100%;
  overflow-wrap: break-word;
  padding: 0.5em 0; }
  @media (min-width: 1024px) {
    .infoSection__2OvGa {
      padding: 0 10px;
      flex: 0 1 33%; }
      .infoSection__2OvGa.infoPhone__263bo {
        align-self: flex-end;
        text-align: right; } }

.infoMain__7S50_ {
  padding-top: 0;
  display: flex;
  flex-wrap: wrap; }

.name__2Yy82 {
  flex: 1 0 100%; }

.infoMainSubsection__3CHNR {
  align-self: flex-end;
  flex: 1; }
  @media screen and (max-width: 767px) {
    .infoMainSubsection__3CHNR {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center; } }

.infoDetails__SBZ7c {
  max-width: 245px; }
  @media (min-width: 1024px) {
    .infoDetails__SBZ7c {
      max-width: 100%;
      align-self: flex-end; } }

.text__pKzjQ {
  display: block;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.4rem; }

.isTitle__12GIu {
  font-size: 18px;
  margin-bottom: 0.5rem; }

.isClickable__3dFiM {
  color: #197da4; }

.coresite .isClickable__3dFiM {
  color: #0072cf; }

.phone__2MpGg:not(.isClickable__3dFiM) {
  color: black;
  text-decoration: none; }

.isVerticallyCentered__TWwbU {
  align-items: center; }

.isEndAligned__2mjk3 {
  align-items: flex-end; }

.hasRightMargin__1Qlho {
  margin-right: 32px; }

.isTextCenteredMobile__vtAia {
  text-align: center; }
  @media (min-width: 768px) {
    .isTextCenteredMobile__vtAia {
      text-align: initial; } }

.address__3bMQR * {
  margin: 0;
  line-height: 1.4rem; }

.placeholder__2TniV .name__2Yy82 {
  height: 18px;
  width: 100px;
  background: #f1f2f3; }

.placeholder__2TniV .title__1USiL {
  height: 14px;
  width: 100px;
  background: #f1f2f3; }

.placeholder__2TniV .businessUnit__2W0Vt {
  height: 14px;
  width: 30%;
  background: #f1f2f3; }

.placeholder__2TniV .address__3bMQR {
  background: #f1f2f3;
  width: 300px;
  height: 32px; }

.placeholder__2TniV .email__1Kfzr {
  height: 16px;
  width: 200px;
  background: #f1f2f3; }

.placeholder__2TniV .phone__2MpGg {
  height: 16px;
  width: 150px;
  background: #f1f2f3; }

.actionContainer__31HVY {
  display: flex;
  align-items: center;
  justify-items: center;
  font-size: 16px; }
  .actionContainer__31HVY > div[class~="loading-spinner"] {
    flex: 1; }
  .actionContainer__31HVY .box__Shx98 {
    min-width: 110px;
    padding: 10px 20px;
    font-family: "Frutiger", sans-serif;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    flex: 1; }
  @media screen and (min-width: 1280px) {
    .actionContainer__31HVY .box__Shx98 {
      min-width: 130px; } }
  .actionContainer__31HVY .statusSubmitted__2-_8S {
    background-color: #dcddde;
    cursor: not-allowed; }
  .actionContainer__31HVY .statusSelected__20OiD {
    background-color: #1fa4d7;
    color: #ffffff; }
  .actionContainer__31HVY button {
    border: 1px solid #d7d7d7; }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .infoContainer__2jpX7 {
    flex-direction: column; } }

.coresite .statusSelected__20OiD {
  background-color: #0072cf; }

body .ck__2a__N.ck-balloon-panel__1EC61 {
  z-index: 99999; }

.searchBarContainer__IbKfL {
  width: 100%;
  position: relative;
  border: 1px solid #E7E7E7; }

.searchBarIcon__18jUh {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%); }
  .searchBarIcon__18jUh img {
    display: block; }
  .searchBarIcon__18jUh.clickable__tWHq9 {
    cursor: pointer; }

.searchBarLabel__3TQt- {
  color: #a0a0a0;
  margin-top: 12px;
  padding-left: 15px;
  z-index: 1;
  font-size: 12px; }

.searchBar__2QZgj {
  width: 100%;
  font-family: "Frutiger", sans-serif;
  font-size: 16px;
  padding: 17px 40px 17px 15px;
  border: none;
  outline: none; }
  @media (min-width: 768px) {
    .searchBar__2QZgj {
      font-size: 16px; } }

.searchBarWithLabel__3BKcg {
  padding-top: 2px;
  padding-bottom: 10px; }

.container__jZ-zx {
  position: relative; }

.disabled__1D3V4 {
  cursor: not-allowed;
  position: relative; }

.disabled__1D3V4:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 3; }

.label__31y79 {
  color: #a0a0a0;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  font-size: 12px; }

body .ck__2gQz6.ck-balloon-panel__1gzva {
  z-index: 99999; }

.buttonContainer__2VJxk:hover .shareButton__31pOu {
  color: #d50f3f; }

.buttonContainer__2VJxk:hover .shareText__1imZs {
  color: #d50f3f; }

.buttonContainer__2VJxk:hover svg,
.buttonContainer__2VJxk:hover svg *,
.buttonContainer__2VJxk:hover .shareIcon__2oILp {
  stroke: #d50f3f; }

.buttonContainer__2VJxk .shareButton__31pOu {
  cursor: pointer;
  background-color: #ffffff;
  background: none;
  border: 0;
  display: flex;
  align-items: center; }
  .buttonContainer__2VJxk .shareButton__31pOu:focus {
    outline: 0; }

.buttonContainer__2VJxk .shareText__1imZs {
  margin-right: 0.5rem;
  color: #197da4;
  font-weight: bold;
  font-size: 12px; }

.coresite .buttonContainer__2VJxk:hover .shareButton__31pOu {
  color: #0072cf; }

.coresite .buttonContainer__2VJxk:hover .shareText__1imZs {
  color: #0072cf; }

.coresite .buttonContainer__2VJxk:hover svg,
.coresite .buttonContainer__2VJxk:hover svg *,
.coresite .buttonContainer__2VJxk:hover .shareIcon__2oILp {
  stroke: #0072cf; }

.coresite .buttonContainer__2VJxk .shareText__1imZs {
  color: #0072cf; }

body .ck__SxA7_.ck-balloon-panel__SuW0P {
  z-index: 99999; }

.pagesWrapper__3ChXf {
  margin: 24px 0;
  min-height: 100px; }

.globalPage__3ZyRJ {
  margin: 24px 0; }

.loadingPlaceholder__K_ho6 {
  min-height: 300px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .loadingPlaceholder__K_ho6 img {
    visibility: visible !important; }
  .loadingPlaceholder__K_ho6 * {
    color: initial !important; }

body .ck__1gqYo.ck-balloon-panel__1EKC2 {
  z-index: 99999; }

.container__2DvkO {
  display: flex;
  flex-wrap: wrap; }

.file__15xux {
  margin: 16px 16px 16px 0;
  font-size: 18px;
  color: #90979D; }

.textContainer__3f5Yk {
  padding: 16px 0;
  flex: 1 1 80%; }

.textHeader__1vEDU {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }

.title__1Zvzz {
  font-weight: 500;
  font-size: 18px;
  margin: 0.5rem 0; }
  .title__1Zvzz a {
    color: black;
    text-decoration: none; }

.date__dM-T_ {
  font-size: 14px;
  color: #90979D; }

.summary__3JJGV {
  color: #162732;
  font-size: 14px;
  margin-top: 0.25rem;
  margin-bottom: 0;
  display: inline-block; }

.categoryTags__3SjYZ {
  display: flex;
  align-items: center; }

.category__7lpv0, .tags__15I1m {
  display: inline-block; }

.category__7lpv0 {
  color: #90979D;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold; }

.placeholder__1EClE .title__1Zvzz {
  height: 25px;
  background: #f1f2f3;
  width: 70%; }
  .placeholder__1EClE .title__1Zvzz a {
    color: #f1f2f3;
    text-decoration: none; }

.placeholder__1EClE .file__15xux {
  color: #f1f2f3;
  background: #f1f2f3;
  width: 1.4em;
  height: 1.4em; }

.placeholder__1EClE .category__7lpv0 {
  background: #f1f2f3;
  width: 60px;
  height: 14px;
  color: #f1f2f3; }

.placeholder__1EClE .date__dM-T_ {
  background: #f1f2f3;
  width: 100px;
  min-height: 14px;
  color: #f1f2f3; }

.placeholder__1EClE .body__2WakV {
  background: #f1f2f3;
  height: 20px;
  width: 100%;
  color: #f1f2f3; }

.placeholder__1EClE .summary__3JJGV {
  background: #f1f2f3;
  color: #f1f2f3;
  width: 100%;
  height: 2em; }

body .ck__X1oP0.ck-balloon-panel___zgYL {
  z-index: 99999; }

body .ck__X1oP0.ck-balloon-panel___zgYL {
  z-index: 99999; }

.text__2gUzO {
  width: 100%;
  font-size: 15px;
  color: #162732; }

.title__2EQ6f {
  flex: 1 1 100%;
  font-size: 20px;
  font-weight: bold;
  color: #162732;
  padding: 30px 20px 10px; }

.bodyContainer__WzpLT {
  display: flex;
  width: 100%; }

.bodyLeft__dFxZY,
.bodyRight__1utWL {
  padding: 20px; }

.bodyLeft__dFxZY {
  flex: 1 1 auto; }
  @media (min-width: 1024px) {
    .bodyLeft__dFxZY {
      flex: 1 1 50%; } }

.address__1oQW1 {
  font-size: 15px; }

.addressLine__1p5JL {
  margin-bottom: 5px; }

.bodyRight__1utWL {
  flex: 1 1 50%; }

.phone__1_kex,
.fax__1e_PN,
.officeManager__2sZlQ {
  margin-bottom: 5px; }
  .phone__1_kex a,
  .fax__1e_PN a,
  .officeManager__2sZlQ a {
    text-decoration: none;
    color: #197da4; }

.optionalLinksWrapper__3-BIa {
  margin-top: 10px; }

.optionalLink__2zPUg {
  font-size: 14px;
  display: block;
  margin-bottom: 3px; }

.coresite .phone__1_kex a,
.coresite .fax__1e_PN a,
.coresite .officeManager__2sZlQ a {
  color: #0072cf; }

.container__2mrza {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 768px) {
    .container__2mrza {
      flex-wrap: nowrap; } }

.image__2aCdN {
  background-size: contain;
  background-repeat: no-repeat;
  min-height: auto;
  padding-top: 56.25%;
  flex: 0 0 100%; }
  @media (min-width: 768px) {
    .image__2aCdN {
      flex: 0 0 25%;
      padding-top: 0; } }

.title__2EQ6f {
  padding: 30px 0 10px; }
  @media (min-width: 768px) {
    .title__2EQ6f {
      padding: 30px 20px 10px; } }

.bodyLeft__dFxZY,
.bodyRight__1utWL {
  padding: 20px 0; }
  @media (min-width: 768px) {
    .bodyLeft__dFxZY,
    .bodyRight__1utWL {
      padding: 20px; } }

.bodyLeft__dFxZY {
  padding: 20px 20px 20px 0; }
  @media (min-width: 768px) {
    .bodyLeft__dFxZY {
      padding: 20px; } }

.bodyRight__1utWL {
  padding: 20px 0 20px 20px; }
  @media (min-width: 768px) {
    .bodyRight__1utWL {
      padding: 20px; } }

body .ck__3ozEd.ck-balloon-panel__3SGUo {
  z-index: 99999; }

.container__1RASD {
  display: flex; }

.imageContainer__3mzv7 {
  flex: 0 0 auto;
  margin-right: 16px; }

.textContainer__33VPO {
  flex: 1 1 auto; }

.title__3j_K8 {
  font-weight: 900;
  font-size: 18px;
  margin: 0.5rem 0; }
  .title__3j_K8 a {
    color: #197da4;
    font-weight: normal;
    text-decoration: none; }

.coresite .title__3j_K8 a {
  color: #0072cf; }

.summary__34ODv {
  color: #162732;
  font-size: 14px;
  margin-top: 0.25rem;
  margin-bottom: 0; }

.categoryTags__1wG_M {
  display: flex;
  align-items: center; }

.category__1aMK1, .tags__ZcF_0 {
  display: inline-block; }

.category__1aMK1 {
  color: #90979D;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold; }

.placeholder__TIfx0 .title__3j_K8 {
  height: 25px;
  background: #f1f2f3;
  width: 60%; }
  .placeholder__TIfx0 .title__3j_K8 a {
    color: #f1f2f3; }

.placeholder__TIfx0 .category__1aMK1 {
  background: #f1f2f3;
  width: 70px;
  height: 14px;
  color: #f1f2f3; }

.placeholder__TIfx0 .body__13Fkl {
  background: #f1f2f3;
  height: 20px;
  width: 100%;
  color: #f1f2f3; }

body .ck__x3o-Z.ck-balloon-panel__1vM8A {
  z-index: 99999; }

.container__16kv3 {
  border: 6px solid #d8d8d8;
  margin: 40px auto;
  padding: 36px 48px;
  max-width: 960px;
  position: relative; }

.helpArea__2UdSW {
  font-size: 1.2em;
  margin-bottom: 1.65em; }

.dropzone__2KRhg {
  width: 100%;
  min-height: 75px;
  background: #ffffff;
  border: 2px dashed #90979D;
  color: #90979D;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  padding: 30px; }

.dropzone__2KRhg .uploadIcon__2lqOP {
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #90979D; }

.completedStartOver__3w9Iz {
  margin-top: 24px;
  color: #197da4;
  font-weight: normal;
  cursor: pointer;
  font-size: 1em; }

.wrapper__1bsS4 {
  padding: 24px 16px; }

.modalLoading__1fj4A {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100; }

.overlay__ecnQw {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 5; }
  .overlay__ecnQw .loading-spinner img {
    width: 40px; }

.uploadError__2oH_4 {
  color: #d50f3f;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: bold; }

.uploadErrorMessage__2hpyh {
  font-weight: normal;
  font-size: 13px;
  margin: 4px 0; }

.placeholder-text__m3X96 {
  color: #69737b; }

.dropzone__2KRhg {
  width: 100%;
  min-height: 75px;
  background: #ffffff;
  border: 2px dashed #90979D;
  color: #90979D;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  padding: 30px; }

.dropzone__2KRhg .uploadIcon__2lqOP {
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #90979D; }

.completedResponse__2EVkO {
  color: #16cb67;
  font-size: 18px;
  font-weight: bold; }

.completedStartOver__3w9Iz {
  margin-top: 24px;
  color: #197da4;
  font-weight: normal;
  cursor: pointer;
  font-size: 1em; }

.executeButton__3E_Jk {
  width: 225px;
  cursor: pointer;
  display: block;
  margin: 1.65em auto 0;
  background: #1fa4d7;
  color: white;
  text-align: center;
  padding: 0.65em; }
  .executeButton__3E_Jk:hover {
    background: #5BB1D3; }

.coresite .executeButton__3E_Jk {
  background: #0072cf; }
  .coresite .executeButton__3E_Jk a {
    color: #ffffff; }
  .coresite .executeButton__3E_Jk:hover {
    background: #3070c8; }

body .ck__2W0_B.ck-balloon-panel__2EWW2 {
  z-index: 99999; }

.container__21sZx {
  display: flex;
  justify-content: flex-start;
  align-items: center; }

.container__21sZx span {
  padding-left: 10px;
  padding-right: 10px; }

.dateButton__2_I4L {
  background: none;
  border: none;
  padding: 10px;
  color: rgba(53, 64, 82, 0.501694);
  cursor: pointer; }
  .dateButton__2_I4L:hover {
    background-color: #1fa4d7;
    color: #ffffff; }

.dateButtonActive__2o2r9 {
  background-color: #1fa4d7;
  color: #ffffff; }

.verticalBorder__2IHZ4 {
  border-left: solid 1px #979797; }

.datePickerInput__2HIjK {
  width: 120px;
  background-color: red; }

.coresite .dateButton__2_I4L:hover {
  background-color: #0072cf; }

.coresite .dateButtonActive__2o2r9 {
  background-color: #0072cf; }

@charset "UTF-8";
.react-datepicker-wrapper {
  width: auto !important; }
  .react-datepicker-wrapper .react-datepicker__input-container {
    width: auto; }
    .react-datepicker-wrapper .react-datepicker__input-container::after {
      content: '\2304';
      font-weight: bolder;
      position: absolute;
      color: #0a6fb4;
      top: 50%;
      right: 5px;
      transform: translateY(-60%); }
    .react-datepicker-wrapper .react-datepicker__input-container input {
      border: none;
      color: #474747;
      background-color: #e5e5e5;
      padding: 10px 12px;
      font-size: 14px; }

.coresite .react-datepicker-wrapper .react-datepicker__input-container::after {
  color: #0072cf; }

.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__day--selected,
.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__day--in-selecting-range,
.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__day--in-range,
.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__month-text--selected,
.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__month-text--in-selecting-range,
.coresite .react-datepicker-popper .react-datepicker__month-container .react-datepicker__month-text--in-range {
  background-color: #0072cf; }

body .ck__2Shjf.ck-balloon-panel__3hKBw {
  z-index: 99999; }

.dataSet__vQCvr {
  color: #5E666D; }

.dataPercent__2s9oH {
  font-size: 1.4rem;
  display: inline-block;
  min-width: 4rem;
  text-align: right;
  margin-right: 0.5rem; }

.container__1EuiL {
  margin-bottom: 25px;
  align-items: center; }
  .container__1EuiL h1 {
    margin-bottom: 0 !important;
    margin-right: 2rem !important; }

.content__2Vh6M {
  width: 100%;
  height: 100%;
  max-height: 400px;
  margin-top: -15px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }

.switch__qpNfq {
  font-size: 10px;
  padding: 1rem;
  cursor: pointer;
  margin: 0;
  text-transform: uppercase;
  color: #56AEEF; }

.activeSwitch__1NbfE {
  background: #56AEEF;
  color: white; }

.table__2wMLG {
  width: 100%;
  border-collapse: collapse; }
  .table__2wMLG th {
    background-color: #ffffff;
    position: sticky;
    top: 0; }
  .table__2wMLG td, .table__2wMLG th {
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(151, 151, 151, 0.5); }
  .table__2wMLG td {
    font-weight: 300; }
  .table__2wMLG .headingText__WfjGR {
    display: flex;
    justify-content: flex-end;
    align-items: center; }

.leftCell__1IPDO {
  text-align: left; }

.rightCell__8OCa8 {
  text-align: right; }

.sortIndicator__1GppQ {
  margin-left: 7px;
  margin-top: 5px; }
  .sortIndicator__1GppQ > svg {
    width: 16px; }

.container__3fHtI {
  position: relative; }

.disabled__1lMRm {
  cursor: not-allowed;
  position: relative; }

.disabled__1lMRm:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 3; }

.label__1YhvG {
  color: #a0a0a0;
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  font-size: 12px; }

body .ck__3gDVi.ck-balloon-panel__1551b {
  z-index: 99999; }

.metricInfoWrapper__Wo44f {
  display: flex;
  flex-direction: row;
  align-items: center; }

.leftInfo__15dUB {
  display: flex;
  align-items: center;
  padding-top: 5px; }
  .leftInfo__15dUB span {
    font-size: 56px;
    font-weight: 300; }

.rightInfo__3NHCD {
  display: flex;
  flex-direction: column;
  margin-left: 15px; }
  .rightInfo__3NHCD p {
    margin: 0; }

.label__3nEgo {
  font-size: 16px; }

.duration__cJCDS {
  font-size: 14px;
  color: #1fa4d7; }

.coresite .duration__cJCDS {
  color: #0072cf; }

body .ck__3pjUW.ck-balloon-panel__357of {
  z-index: 99999; }

.wrapper__3-iyN {
  background: white;
  margin: 1rem 0;
  padding: 34px 40px; }

.emptyView__XRA43 {
  display: flex;
  justify-content: flex-start;
  align-items: center; }

.table__18z_K {
  width: 100%;
  border-collapse: collapse; }
  .table__18z_K td, .table__18z_K th {
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(151, 151, 151, 0.5); }
  .table__18z_K td {
    font-weight: 300; }
  .table__18z_K th.rightCell__1fz6C {
    display: flex;
    justify-content: flex-end;
    align-items: center; }

.leftCell__1pP3G {
  text-align: left; }

.rightCell__1fz6C {
  text-align: right; }

.sortIndicator__2pyPs {
  margin-left: 7px;
  margin-top: 5px; }
  .sortIndicator__2pyPs > svg {
    width: 16px; }

body .ck__YWNJI.ck-balloon-panel__BDFxo {
  z-index: 99999; }

.wrapper__2qdMu {
  background: white;
  margin: 1rem 0;
  padding: 34px 40px; }

.table__ZSQ-Q {
  border-collapse: collapse;
  width: 100%; }
  .table__ZSQ-Q td {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(151, 151, 151, 0.5); }
    .table__ZSQ-Q td:first-child {
      text-align: left; }

.firstCell__jDi0H {
  text-align: left; }

body .ck__34lZr.ck-balloon-panel__-q8vX {
  z-index: 99999; }

.button__bF-29 {
  font-size: 16px;
  margin: 24px 0; }

.helpText__2E0wH {
  font-size: 0.85em;
  margin-bottom: 2em; }

.fileField__jmuPn {
  margin: 12px 0; }

.dropzone__1D8CE {
  width: 100%;
  min-height: 40px;
  background: #ffffff;
  border: 2px dashed #90979D;
  color: #90979D;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  padding: 30px; }

.dropzone__1D8CE .uploadIcon__tn6-t {
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid #90979D; }

.fileName__3859F {
  font-size: 1.2em;
  font-weight: bold; }

.errorMessage__2VKnF {
  color: #d50f3f; }

.successMessage__3crCP {
  color: #16cb67; }

body .ck__-lIiU.ck-balloon-panel__3QEDs {
  z-index: 99999; }

.container__1bzg_ {
  display: flex;
  align-items: center;
  justify-content: center; }
  .container__1bzg_ > * {
    flex: 1;
    min-width: 180px; }

.label__5urs- {
  text-align: right;
  padding-right: 25px; }

body .ck__2atCF.ck-balloon-panel__CmIP7 {
  z-index: 99999; }

.wrapper__dwWAc {
  display: flex;
  flex-direction: column; }

.title__1yyc0 {
  font-size: 24px;
  font-weight: 500;
  margin: 0; }

.subtitle__3aWJf {
  font-size: 16px;
  color: #5784ab; }

.coresite .subtitle__3aWJf a {
  color: #0072cf; }

body .ck__1y9hA.ck-balloon-panel__18B7d {
  z-index: 99999; }

.container__rYMEZ {
  max-width: 960px;
  margin: 0 auto;
  background: #f1f2f3;
  position: relative; }
  .container__rYMEZ:after {
    content: '';
    display: block;
    background: #f1f2f3;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.content__1fiur {
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 768px) {
    .content__1fiur {
      flex-direction: row; } }

.selectContainer__O3CGy {
  flex-grow: 10;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .selectContainer__O3CGy {
      flex-direction: row; } }

.selectFieldWrapper__wEMEh {
  width: 200px;
  margin-right: 1rem; }
  .selectFieldWrapper__wEMEh:last-child {
    margin-right: 0; }

.title__wQ6ua {
  color: #000000;
  flex-grow: 1;
  margin-right: 1rem; }

.select__1evzm {
  margin-right: 1rem; }
  .select__1evzm:last-child {
    margin-right: 0; }

body .ck__28lA2.ck-balloon-panel__HcOsq {
  z-index: 99999; }

.resultsWrapper__QBV5N {
  position: relative; }
  .resultsWrapper__QBV5N:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.resultsWrapper__QBV5N .pager {
  padding: 30px 0; }

.resultsList__2umlw {
  padding: 24px; }
  @media (min-width: 1800px) {
    .resultsList__2umlw {
      padding: 24px 0; } }
  .resultsList__2umlw li:not(:last-child) {
    margin: 0 0 24px 0;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #f1f2f3; }

.pagerContainer__2CmoG {
  display: flex;
  justify-content: flex-end; }

.filterArea__2lSXL {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px; }
  @media (min-width: 1800px) {
    .filterArea__2lSXL {
      padding: 24px 0; } }

.filterContainer__2CAsT {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.filterLabel__q7uBn {
  margin-right: 1rem;
  color: #5D5D5D; }

body .ck__KRnd5.ck-balloon-panel__3xaW- {
  z-index: 99999; }

.container__WQ1tF {
  padding: 24px 16px; }
  @media (min-width: 1800px) {
    .container__WQ1tF {
      padding: 24px 0; } }

.filters__x10oF {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; }

.searchInputContainer__1XkIv {
  flex: 1 0 100%; }

.typeFilterContainer__3ZpIX {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 0 100%;
  margin: 24px 0; }
  @media (min-width: 768px) {
    .typeFilterContainer__3ZpIX {
      flex-wrap: nowrap; } }
  @media (min-width: 1024px) {
    .typeFilterContainer__3ZpIX {
      flex: 1 0 50%;
      padding: 0 16px 0 0; } }
  @media (min-width: 1280px) {
    .typeFilterContainer__3ZpIX {
      flex: 0 0 65%; } }

.selectFieldWrapper__12Sdm {
  flex: 1 1 400px;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .selectFieldWrapper__12Sdm {
      margin-right: 1rem;
      margin-bottom: 0; } }
  .selectFieldWrapper__12Sdm:last-child {
    flex: 1 1 200px;
    margin-right: 0; }

.typeFilterLabel__1O4um {
  flex: 0 0 auto;
  color: #90979D;
  padding-right: 1em; }

.typeFilterSelect__8J0pk {
  flex: 1 1 auto; }

.resultsCount__32py2 {
  margin-left: auto; }

.resultsContainer__JvEsU {
  padding: 24px 0;
  min-height: 65vh;
  position: relative; }
  .resultsContainer__JvEsU:after {
    content: '';
    display: block;
    background: white;
    width: 200vw;
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: -1; }

.result__22YPM {
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f2f3; }
  .result__22YPM:first-child {
    margin-top: 0; }

.noSearch__18PSh,
.noResults__37kSw {
  margin-top: 24px;
  text-align: center;
  color: #90979D; }

.pagerContainer__2Vp92 {
  display: flex;
  justify-content: flex-end; }

.toggleSwitchWrapper__2qnx8 {
  display: flex;
  align-items: center;
  color: #90979D;
  margin-left: 20px; }

.toggleSwitch__Gb6iO {
  margin: 0 10px; }

body .ck__3zU_6.ck-balloon-panel__2Jj8g {
  z-index: 99999; }

.wrapper__2PrOH {
  background: white;
  margin: 1rem 0;
  padding: 75px 40px; }

.table__1_nA0 {
  border-collapse: collapse;
  width: 100%; }
  .table__1_nA0 thead tr th {
    padding-bottom: 15px;
    border-bottom: solid 1px #474747; }
    .table__1_nA0 thead tr th.firstCell__3UYg3 {
      text-align: left; }
  .table__1_nA0 tbody tr td {
    border-bottom: solid 1px rgba(151, 151, 151, 0.5); }
  .table__1_nA0 td {
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center; }
    .table__1_nA0 td.firstCell__3UYg3 {
      text-align: left; }

.valueCell__3jCNp {
  font-weight: 300; }

.BaseTable {
  box-shadow: 0 2px 4px 0 #eeeeee;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  font-size: 13px;
}

.BaseTable--disabled {
  opacity: 0.7;
  pointer-events: none;
}

.BaseTable--dynamic .BaseTable__row {
  overflow: hidden;
  align-items: stretch;
}

.BaseTable:not(.BaseTable--dynamic) .BaseTable__row-cell-text,
.BaseTable .BaseTable__row--frozen .BaseTable__row-cell-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.BaseTable__table {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column-reverse;
}

.BaseTable__table-main {
  outline: 1px solid #eeeeee;
  left: 0;
}

.BaseTable__table-main .BaseTable__header-cell:first-child, .BaseTable__table-main .BaseTable__row-cell:first-child {
  padding-left: 15px;
}

.BaseTable__table-main .BaseTable__header-cell:last-child, .BaseTable__table-main .BaseTable__row-cell:last-child {
  padding-right: 15px;
}

.BaseTable__table-main .BaseTable__header {
  background-color: #f8f8f8;
}

.BaseTable__table-frozen-left .BaseTable__header,
.BaseTable__table-frozen-left .BaseTable__body, .BaseTable__table-frozen-right .BaseTable__header,
.BaseTable__table-frozen-right .BaseTable__body {
  overflow: hidden !important;
}

.BaseTable__table-frozen-left {
  box-shadow: 2px 0 4px 0 #eeeeee;
  top: 0;
  left: 0;
}

.BaseTable__table-frozen-left .BaseTable__header-cell:first-child, .BaseTable__table-frozen-left .BaseTable__row-cell:first-child {
  padding-left: 15px;
}

.BaseTable__table-frozen-left .BaseTable__header-row,
.BaseTable__table-frozen-left .BaseTable__row {
  padding-right: 0 !important;
}

.BaseTable__table-frozen-left .BaseTable__body {
  overflow-y: auto !important;
}

.BaseTable__table-frozen-right {
  box-shadow: -2px 0 4px 0 #eeeeee;
  top: 0;
  right: 0;
}

.BaseTable__table-frozen-right .BaseTable__header-cell:last-child, .BaseTable__table-frozen-right .BaseTable__row-cell:last-child {
  padding-right: 15px;
}

.BaseTable__table-frozen-right .BaseTable__header-row,
.BaseTable__table-frozen-right .BaseTable__row {
  padding-left: 0 !important;
}

.BaseTable__table-frozen-right .BaseTable__body {
  overflow-y: auto !important;
}

.BaseTable__header {
  overflow: hidden !important;
}

.BaseTable .BaseTable__header,
.BaseTable .BaseTable__body {
  outline: none;
}

.BaseTable__header-row, .BaseTable__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
}

.BaseTable__header-row {
  background-color: #f8f8f8;
  font-weight: 700;
}

.BaseTable__row {
  background-color: #ffffff;
}

.BaseTable__row:hover, .BaseTable__row--hovered {
  background-color: #f3f3f3;
}

.BaseTable__row-expanded {
  border-bottom: 1px solid #eeeeee;
}

.BaseTable__header-cell, .BaseTable__row-cell {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 7.5px;
  box-sizing: border-box;
}

.BaseTable__header-cell--align-center, .BaseTable__row-cell--align-center {
  justify-content: center;
  text-align: center;
}

.BaseTable__header-cell--align-right, .BaseTable__row-cell--align-right {
  justify-content: flex-end;
  text-align: right;
}

.BaseTable__header-cell {
  position: relative;
  cursor: default;
}

.BaseTable__header-cell:hover .BaseTable__column-resizer {
  visibility: visible;
  opacity: 0.5;
}

.BaseTable__header-cell:hover .BaseTable__column-resizer:hover {
  opacity: 1;
}

.BaseTable__header-cell .BaseTable__sort-indicator {
  display: none;
}

.BaseTable__header-cell--sortable:hover {
  background-color: #f3f3f3;
  cursor: pointer;
}

.BaseTable__header-cell--sortable:not(.BaseTable__header-cell--sorting):hover .BaseTable__sort-indicator {
  display: block;
  color: #888888;
}

.BaseTable__header-cell--sorting .BaseTable__sort-indicator, .BaseTable__header-cell--sorting:hover .BaseTable__sort-indicator {
  display: block;
}

.BaseTable__header-cell--resizing .BaseTable__column-resizer {
  visibility: visible;
  opacity: 1;
}

.BaseTable__header-cell--resizing .BaseTable__column-resizer::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  content: '';
  left: -9999px;
}

.BaseTable__header-cell-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.BaseTable__header-row--resizing .BaseTable__header-cell {
  background-color: transparent;
  cursor: col-resize;
}

.BaseTable__header-row--resizing .BaseTable__header-cell:not(.BaseTable__header-cell--sorting) .BaseTable__sort-indicator {
  display: none;
}

.BaseTable__header-row--resizing .BaseTable__header-cell:not(.BaseTable__header-cell--resizing) .BaseTable__column-resizer {
  visibility: hidden;
}

.BaseTable__column-resizer {
  width: 3px;
  visibility: hidden;
  background-color: #cccccc;
}

.BaseTable__column-resizer:hover {
  visibility: visible;
  opacity: 1;
}

.BaseTable__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #ffffff;
}

.BaseTable__resizing-line {
  cursor: col-resize;
  position: absolute;
  top: 0;
  background-color: #cccccc;
  width: 3px;
  transform: translateX(-100%);
}

.BaseTable__empty-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #ffffff;
}

.BaseTable__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.BaseTable__overlay > * {
  pointer-events: auto;
}

body .ck__Hlv_l.ck-balloon-panel__3Y_Zf {
  z-index: 99999; }

.section__UDK_Y {
  background: white;
  margin: 1rem 0;
  padding: 34px 40px; }

.sectionFilter__3SdG3 {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0; }

.filterOption__UDvdX {
  min-width: 180px; }

body .ck__QcDq8.ck-balloon-panel__iixeg {
  z-index: 99999; }

.srOnly__OZuKp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.mainWrapper__1XLGs {
  position: relative;
  min-height: 1000px; }
  @media (min-width: 768px) {
    .mainWrapper__1XLGs {
      display: flex; } }

.main__3bWWx {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0 16px; }
  @media (min-width: 768px) {
    .main__3bWWx {
      padding-right: 30px; } }
  @media (min-width: 1024px) {
    .main__3bWWx {
      padding: 0 32px;
      width: 100%;
      max-width: 100%; } }
  @media (min-width: 1280px) {
    .main__3bWWx {
      width: 100%; } }
  @media (min-width: 1800px) {
    .main__3bWWx {
      padding: 0;
      max-width: 1280px; } }

@media (min-width: 1800px) {
  .container__23nII .atc-subheader,
  .container__23nII .atc-admin-subnav,
  .container__23nII .atc-global-nav {
    max-width: 1280px; } }

.fullWidth__1dJpj {
  max-width: 100%;
  padding: 0 15px; }
  .fullWidth__1dJpj.expanded__3T270 {
    padding-right: 60px; }

body .ck__2b-Yb.ck-balloon-panel__38oVC {
  z-index: 99999; }

.container__1wd0W {
  width: 100%;
  background-color: #d8d8d8;
  color: white;
  font-size: 1.15em; }

.navContainer__3kR-d {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 32px; }
  @media (min-width: 1024px) {
    .navContainer__3kR-d {
      max-width: 100%; } }
  @media (min-width: 1800px) {
    .navContainer__3kR-d {
      max-width: 960px;
      padding: 0; } }

.nav__EHLXY {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none; }

.nav__EHLXY li {
  color: black;
  cursor: pointer;
  transition: color 200ms;
  display: flex;
  align-items: center;
  margin-right: 2em; }
  .nav__EHLXY li a {
    padding: 20px 8px 14px;
    color: black;
    text-decoration: none;
    outline: none;
    border-bottom: 4px solid transparent; }
    .nav__EHLXY li a:hover, .nav__EHLXY li a.atc-active-path {
      border-color: #197da4; }

.coresite .nav__EHLXY li a:hover, .coresite .nav__EHLXY li a.atc-active-path {
  border-color: #0072cf; }

body .ck__3_tWC.ck-balloon-panel__3ltQG {
  z-index: 99999; }

.container__23AYT {
  margin-top: 25px; }

.actionBar__1aI1n {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column; }

.section__Dkg-k {
  margin-top: 20px;
  padding: 50px 45px;
  background-color: #ffffff; }

.searchBar__1rY9S {
  margin-bottom: 15px; }

.filterBar__3xELj {
  display: flex;
  flex: 1 0 auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }

.fieldWrapper__WHoqJ {
  min-width: 200px;
  margin-right: 25px;
  display: flex; }
  .fieldWrapper__WHoqJ > * {
    min-width: 200px;
    margin-right: 20px; }
  .fieldWrapper__WHoqJ.fieldWrapper__WHoqJ:last-child {
    margin-right: 0; }

.dateFilter__3XyC_ {
  min-width: 280px;
  display: flex; }

.actionButton__2LFIJ {
  width: auto; }

.downloadIcon__2MIsa {
  margin-right: 10px; }

.coresite .section__Dkg-k a {
  color: #0072cf; }

/*! react-buttons v1.3.1 | (c) 2018 Trend Micro Inc. | MIT | https://github.com/trendmicro-frontend/react-buttons */
.buttons---btn---2jZHN {
  display: inline-block;
  min-width: 80px;
  padding: 5px 12px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.buttons---btn---2jZHN:focus,
.buttons---btn---2jZHN:active:focus,
.buttons---btn---2jZHN.buttons---active---2-a32:focus,
.buttons---btn---2jZHN.buttons---focus---1kVJZ,
.buttons---btn---2jZHN:active.buttons---focus---1kVJZ,
.buttons---btn---2jZHN.buttons---active---2-a32.buttons---focus---1kVJZ {
  outline: none;
}
.buttons---btn---2jZHN:hover,
.buttons---btn---2jZHN.buttons---hover---42FF2,
.buttons---btn---2jZHN:focus,
.buttons---btn---2jZHN.buttons---focus---1kVJZ {
  color: #222;
  text-decoration: none;
}
.buttons---btn---2jZHN:active,
.buttons---btn---2jZHN.buttons---active---2-a32 {
  outline: none;
  background-image: none;
  -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.1) inset;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1) inset;
}
.buttons---btn---2jZHN.buttons---disabled---eCY9b,
.buttons---btn---2jZHN[disabled],
fieldset[disabled] .buttons---btn---2jZHN {
  cursor: not-allowed;
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
a .buttons---btn---2jZHN.buttons---disabled---eCY9b,
fieldset[disabled] a .buttons---btn---2jZHN {
  pointer-events: none;
}
.buttons---btn---2jZHN + .buttons---btn---2jZHN {
  margin-left: 8px;
}
.buttons---btn---2jZHN > [class*="loader-container"] {
  display: inline-block;
}
.buttons---btn---2jZHN > [class*="loader-container"] > [class*="loader"] {
  margin-top: 2px;
  margin-right: 8px;
}
.buttons---btn-default---1wWXD {
  color: #222;
  background-color: #fbfbfb;
  background-image: -webkit-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -moz-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -o-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -ms-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: linear-gradient(to bottom, #fbfbfb 0%, #ececec 100%);
  background-repeat: repeat-x;
  border-color: #ccc;
}
.buttons---btn-default---1wWXD:active,
.buttons---btn-default---1wWXD.buttons---active---2-a32 {
  color: #222;
  background-color: #eee;
  background-image: none;
  border-color: #bbb;
  -webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.1) inset;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1) inset;
}
.buttons---btn-default---1wWXD:focus,
.buttons---btn-default---1wWXD.buttons---focus---1kVJZ {
  color: #222;
  border-color: #0096cc;
}
.buttons---btn-default---1wWXD:hover,
.buttons---btn-default---1wWXD.buttons---hover---42FF2 {
  color: #222;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #f5f5f5 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #f5f5f5 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  border-color: #999;
}
.buttons---btn-default---1wWXD.buttons---disabled---eCY9b:hover,
.buttons---btn-default---1wWXD[disabled]:hover,
fieldset[disabled] .buttons---btn-default---1wWXD:hover,
.buttons---btn-default---1wWXD.buttons---disabled---eCY9b.buttons---hover---42FF2,
.buttons---btn-default---1wWXD[disabled].buttons---hover---42FF2,
fieldset[disabled] .buttons---btn-default---1wWXD.buttons---hover---42FF2,
.buttons---btn-default---1wWXD.buttons---disabled---eCY9b:focus,
.buttons---btn-default---1wWXD[disabled]:focus,
fieldset[disabled] .buttons---btn-default---1wWXD:focus,
.buttons---btn-default---1wWXD.buttons---disabled---eCY9b.buttons---focus---1kVJZ,
.buttons---btn-default---1wWXD[disabled].buttons---focus---1kVJZ,
fieldset[disabled] .buttons---btn-default---1wWXD.buttons---focus---1kVJZ {
  background-color: #fbfbfb;
  background-image: -webkit-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -moz-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -o-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: -ms-linear-gradient(top, #fbfbfb 0%, #ececec 100%);
  background-image: linear-gradient(to bottom, #fbfbfb 0%, #ececec 100%);
  background-repeat: repeat-x;
  border-color: #ccc;
}
.buttons---btn-primary---Wp1wb {
  color: #fff;
  background-color: #0096cc;
  background-image: -webkit-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -moz-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -o-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -ms-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: linear-gradient(to bottom, #00a7e6 0%, #0096cc 100%);
  background-repeat: repeat-x;
  border-color: #0095ce;
}
.buttons---btn-primary---Wp1wb > [class*="loader-container"] > [class*="loader"] {
  border-color: rgba(255,255,255,0.4);
  border-left-color: #fff;
}
.buttons---btn-primary---Wp1wb:active,
.buttons---btn-primary---Wp1wb.buttons---active---2-a32 {
  color: #fff;
  background-color: #009ed8;
  background-image: none;
  border-color: #00759f;
  -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.15) inset;
  box-shadow: 0 1px 6px rgba(0,0,0,0.15) inset;
}
.buttons---btn-primary---Wp1wb:focus,
.buttons---btn-primary---Wp1wb.buttons---focus---1kVJZ {
  color: #fff;
  border-color: #444;
  -webkit-box-shadow: 0 0 1px #fff inset;
  box-shadow: 0 0 1px #fff inset;
}
.buttons---btn-primary---Wp1wb:hover,
.buttons---btn-primary---Wp1wb.buttons---hover---42FF2 {
  color: #fff;
  background-color: #1daee5;
  background-image: -webkit-linear-gradient(top, #1daee5 0%, #00a3df 100%);
  background-image: -moz-linear-gradient(top, #1daee5 0%, #00a3df 100%);
  background-image: -o-linear-gradient(top, #1daee5 0%, #00a3df 100%);
  background-image: -ms-linear-gradient(top, #1daee5 0%, #00a3df 100%);
  background-image: linear-gradient(to bottom, #1daee5 0%, #00a3df 100%);
  background-repeat: repeat-x;
  border-color: #00759f;
}
.buttons---btn-primary---Wp1wb.buttons---disabled---eCY9b:hover,
.buttons---btn-primary---Wp1wb[disabled]:hover,
fieldset[disabled] .buttons---btn-primary---Wp1wb:hover,
.buttons---btn-primary---Wp1wb.buttons---disabled---eCY9b.buttons---hover---42FF2,
.buttons---btn-primary---Wp1wb[disabled].buttons---hover---42FF2,
fieldset[disabled] .buttons---btn-primary---Wp1wb.buttons---hover---42FF2,
.buttons---btn-primary---Wp1wb.buttons---disabled---eCY9b:focus,
.buttons---btn-primary---Wp1wb[disabled]:focus,
fieldset[disabled] .buttons---btn-primary---Wp1wb:focus,
.buttons---btn-primary---Wp1wb.buttons---disabled---eCY9b.buttons---focus---1kVJZ,
.buttons---btn-primary---Wp1wb[disabled].buttons---focus---1kVJZ,
fieldset[disabled] .buttons---btn-primary---Wp1wb.buttons---focus---1kVJZ {
  background-color: #0096cc;
  background-image: -webkit-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -moz-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -o-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: -ms-linear-gradient(top, #00a7e6 0%, #0096cc 100%);
  background-image: linear-gradient(to bottom, #00a7e6 0%, #0096cc 100%);
  background-repeat: repeat-x;
  border-color: #0095ce;
}
.buttons---btn-danger---1UUqU {
  color: #fff;
  background-color: #db3d44;
  background-image: -webkit-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -moz-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -o-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -ms-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: linear-gradient(to bottom, #e15054 0%, #db3d44 100%);
  background-repeat: repeat-x;
  border-color: #d8262b;
}
.buttons---btn-danger---1UUqU:active,
.buttons---btn-danger---1UUqU.buttons---active---2-a32 {
  color: #fff;
  background-color: #e15054;
  background-image: none;
  border-color: #c22327;
  -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.15) inset;
  box-shadow: 0 1px 6px rgba(0,0,0,0.15) inset;
}
.buttons---btn-danger---1UUqU:focus,
.buttons---btn-danger---1UUqU.buttons---focus---1kVJZ {
  color: #fff;
  border-color: #444;
  -webkit-box-shadow: 0 0 1px #fff inset;
  box-shadow: 0 0 1px #fff inset;
}
.buttons---btn-danger---1UUqU:hover,
.buttons---btn-danger---1UUqU.buttons---hover---42FF2 {
  color: #fff;
  background-color: #e15f5f;
  background-image: -webkit-linear-gradient(top, #e15f5f 0%, #e15054 100%);
  background-image: -moz-linear-gradient(top, #e15f5f 0%, #e15054 100%);
  background-image: -o-linear-gradient(top, #e15f5f 0%, #e15054 100%);
  background-image: -ms-linear-gradient(top, #e15f5f 0%, #e15054 100%);
  background-image: linear-gradient(to bottom, #e15f5f 0%, #e15054 100%);
  background-repeat: repeat-x;
  border-color: #c22327;
}
.buttons---btn-danger---1UUqU.buttons---disabled---eCY9b:hover,
.buttons---btn-danger---1UUqU[disabled]:hover,
fieldset[disabled] .buttons---btn-danger---1UUqU:hover,
.buttons---btn-danger---1UUqU.buttons---disabled---eCY9b.buttons---hover---42FF2,
.buttons---btn-danger---1UUqU[disabled].buttons---hover---42FF2,
fieldset[disabled] .buttons---btn-danger---1UUqU.buttons---hover---42FF2,
.buttons---btn-danger---1UUqU.buttons---disabled---eCY9b:focus,
.buttons---btn-danger---1UUqU[disabled]:focus,
fieldset[disabled] .buttons---btn-danger---1UUqU:focus,
.buttons---btn-danger---1UUqU.buttons---disabled---eCY9b.buttons---focus---1kVJZ,
.buttons---btn-danger---1UUqU[disabled].buttons---focus---1kVJZ,
fieldset[disabled] .buttons---btn-danger---1UUqU.buttons---focus---1kVJZ {
  background-color: #db3d44;
  background-image: -webkit-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -moz-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -o-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: -ms-linear-gradient(top, #e15054 0%, #db3d44 100%);
  background-image: linear-gradient(to bottom, #e15054 0%, #db3d44 100%);
  background-repeat: repeat-x;
  border-color: #d8262b;
}
.buttons---btn-border---1O58b {
  color: #222;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
  background-repeat: repeat-x;
  border-color: #ccc;
  -webkit-transition: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.buttons---btn-border---1O58b:hover,
.buttons---btn-border---1O58b.buttons---hover---42FF2 {
  color: #222;
  background-color: #f4f4f4;
  background-image: -webkit-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
  background-image: -ms-linear-gradient(top, #f4f4f4 0%, #f4f4f4 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 0%, #f4f4f4 100%);
  background-repeat: repeat-x;
  border-color: #999;
}
.buttons---btn-border---1O58b:focus,
.buttons---btn-border---1O58b.buttons---focus---1kVJZ {
  color: #222;
  border-color: #0096cc;
}
.buttons---btn-border---1O58b:active,
.buttons---btn-border---1O58b.buttons---active---2-a32,
.buttons---open---1ju75 > .buttons---dropdown-toggle---vMtjL.buttons---btn-border---1O58b {
  color: #222;
  background-color: #eee;
  background-image: none;
  border-color: #bbb;
  -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.1) inset;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1) inset;
}
.buttons---btn-border---1O58b:active:hover,
.buttons---btn-border---1O58b.buttons---active---2-a32:hover,
.buttons---open---1ju75 > .buttons---dropdown-toggle---vMtjL.buttons---btn-border---1O58b:hover,
.buttons---btn-border---1O58b:active.buttons---hover---42FF2,
.buttons---btn-border---1O58b.buttons---active---2-a32.buttons---hover---42FF2,
.buttons---open---1ju75 > .buttons---dropdown-toggle---vMtjL.buttons---btn-border---1O58b.buttons---hover---42FF2,
.buttons---btn-border---1O58b:active:focus,
.buttons---btn-border---1O58b.buttons---active---2-a32:focus,
.buttons---open---1ju75 > .buttons---dropdown-toggle---vMtjL.buttons---btn-border---1O58b:focus,
.buttons---btn-border---1O58b:active.buttons---focus---1kVJZ,
.buttons---btn-border---1O58b.buttons---active---2-a32.buttons---focus---1kVJZ,
.buttons---open---1ju75 > .buttons---dropdown-toggle---vMtjL.buttons---btn-border---1O58b.buttons---focus---1kVJZ {
  color: #222;
  border-color: #bbb;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1) inset;
}
.buttons---btn-border---1O58b.buttons---disabled---eCY9b,
.buttons---btn-border---1O58b[disabled],
fieldset[disabled] .buttons---btn-border---1O58b {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  cursor: not-allowed;
}
.buttons---btn-border---1O58b.buttons---disabled---eCY9b:hover,
.buttons---btn-border---1O58b[disabled]:hover,
fieldset[disabled] .buttons---btn-border---1O58b:hover,
.buttons---btn-border---1O58b.buttons---disabled---eCY9b.buttons---hover---42FF2,
.buttons---btn-border---1O58b[disabled].buttons---hover---42FF2,
fieldset[disabled] .buttons---btn-border---1O58b.buttons---hover---42FF2,
.buttons---btn-border---1O58b.buttons---disabled---eCY9b:focus,
.buttons---btn-border---1O58b[disabled]:focus,
fieldset[disabled] .buttons---btn-border---1O58b:focus,
.buttons---btn-border---1O58b.buttons---disabled---eCY9b.buttons---focus---1kVJZ,
.buttons---btn-border---1O58b[disabled].buttons---focus---1kVJZ,
fieldset[disabled] .buttons---btn-border---1O58b.buttons---focus---1kVJZ {
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -moz-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -o-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -ms-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #fff 100%);
  background-repeat: repeat-x;
  border-color: #ccc;
}
.buttons---btn-link---1xwS4 {
  padding-right: 0;
  padding-left: 0;
  font-weight: normal;
  color: #0096cc;
  border-radius: 0;
}
.buttons---btn-link---1xwS4,
.buttons---btn-link---1xwS4:active,
.buttons---btn-link---1xwS4.buttons---active---2-a32,
.buttons---btn-link---1xwS4.buttons---disabled---eCY9b,
.buttons---btn-link---1xwS4[disabled],
fieldset[disabled] .buttons---btn-link---1xwS4 {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.buttons---btn-link---1xwS4,
.buttons---btn-link---1xwS4:hover,
.buttons---btn-link---1xwS4.buttons---hover---42FF2,
.buttons---btn-link---1xwS4:focus,
.buttons---btn-link---1xwS4:active {
  border-color: transparent;
}
.buttons---btn-link---1xwS4:hover,
.buttons---btn-link---1xwS4.buttons---hover---42FF2,
.buttons---btn-link---1xwS4:focus {
  color: #db3d44;
  text-decoration: underline;
  background-color: transparent;
}
.buttons---btn-link---1xwS4.buttons---disabled---eCY9b:hover,
.buttons---btn-link---1xwS4[disabled]:hover,
fieldset[disabled] .buttons---btn-link---1xwS4:hover,
.buttons---btn-link---1xwS4.buttons---disabled---eCY9b.buttons---hover---42FF2,
.buttons---btn-link---1xwS4[disabled].buttons---hover---42FF2,
fieldset[disabled] .buttons---btn-link---1xwS4.buttons---hover---42FF2,
.buttons---btn-link---1xwS4.buttons---disabled---eCY9b:focus,
.buttons---btn-link---1xwS4[disabled]:focus,
fieldset[disabled] .buttons---btn-link---1xwS4:focus,
.buttons---btn-link---1xwS4.buttons---disabled---eCY9b.buttons---focus---1kVJZ,
.buttons---btn-link---1xwS4[disabled].buttons---focus---1kVJZ,
fieldset[disabled] .buttons---btn-link---1xwS4.buttons---focus---1kVJZ {
  color: #e6e6e6;
  text-decoration: none;
}
.buttons---btn-lg---2xtUV,
.buttons---btn-group-lg---3C8An > .buttons---btn---2jZHN {
  padding: 9px 12px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 3px;
}
.buttons---btn-lg---2xtUV.buttons---btn-compact---mXDAU,
.buttons---btn-group-lg---3C8An > .buttons---btn---2jZHN.buttons---btn-compact---mXDAU {
  padding-left: 0;
  padding-right: 0;
  min-width: 58px;
}
.buttons---btn-md---HRR_F,
.buttons---btn-group-md---3FQVP > .buttons---btn---2jZHN {
  padding: 5px 12px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 3px;
}
.buttons---btn-md---HRR_F.buttons---btn-compact---mXDAU,
.buttons---btn-group-md---3FQVP > .buttons---btn---2jZHN.buttons---btn-compact---mXDAU {
  padding-left: 0;
  padding-right: 0;
  min-width: 42px;
}
.buttons---btn-sm---3cNnY,
.buttons---btn-group-sm---3_QLf > .buttons---btn---2jZHN {
  padding: 4px 12px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
}
.buttons---btn-sm---3cNnY.buttons---btn-compact---mXDAU,
.buttons---btn-group-sm---3_QLf > .buttons---btn---2jZHN.buttons---btn-compact---mXDAU {
  padding-left: 0;
  padding-right: 0;
  min-width: 36px;
}
.buttons---btn-xs---2eEDQ,
.buttons---btn-group-xs---1c4pb > .buttons---btn---2jZHN {
  padding: 1px 12px;
  font-size: 12px;
  line-height: 18px;
  border-radius: 3px;
}
.buttons---btn-xs---2eEDQ.buttons---btn-compact---mXDAU,
.buttons---btn-group-xs---1c4pb > .buttons---btn---2jZHN.buttons---btn-compact---mXDAU {
  padding-left: 0;
  padding-right: 0;
  min-width: 28px;
}
.buttons---btn-block---1nSNV {
  display: block;
  width: 100%;
}
.buttons---btn-block---1nSNV.buttons---btn---2jZHN + .buttons---btn-block---1nSNV.buttons---btn---2jZHN,
.buttons---btn-block---1nSNV + .buttons---btn-block---1nSNV {
  margin-left: 0;
  margin-top: 8px;
}
input[type="submit"].buttons---btn-block---1nSNV,
input[type="reset"].buttons---btn-block---1nSNV,
input[type="button"].buttons---btn-block---1nSNV {
  width: 100%;
}
.buttons---btn-group---1jaDo,
.buttons---btn-group-vertical---3Lm1e {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN {
  position: relative;
  float: left;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:hover,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:hover,
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN.buttons---hover---42FF2,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN.buttons---hover---42FF2,
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:active,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:active,
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN.buttons---active---2-a32,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN.buttons---active---2-a32 {
  z-index: 2;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:focus,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:focus,
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN.buttons---focus---1kVJZ,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN.buttons---focus---1kVJZ {
  z-index: 3;
}
.buttons---btn-group---1jaDo .buttons---btn---2jZHN + .buttons---btn---2jZHN,
.buttons---btn-group---1jaDo .buttons---btn---2jZHN + .buttons---btn-group---1jaDo,
.buttons---btn-group---1jaDo .buttons---btn-group---1jaDo + .buttons---btn---2jZHN,
.buttons---btn-group---1jaDo .buttons---btn-group---1jaDo + .buttons---btn-group---1jaDo {
  margin-left: -1px;
}
.buttons---btn-group---1jaDo + .buttons---btn-group---1jaDo {
  margin-left: 8px;
}
.buttons---btn-toolbar---2-GfJ {
  margin-left: -5px;
  zoom: 1;
}
.buttons---btn-toolbar---2-GfJ:before,
.buttons---btn-toolbar---2-GfJ:after {
  content: "";
  display: table;
}
.buttons---btn-toolbar---2-GfJ:after {
  clear: both;
}
.buttons---btn-toolbar---2-GfJ .buttons---btn---2jZHN,
.buttons---btn-toolbar---2-GfJ .buttons---btn-group---1jaDo,
.buttons---btn-toolbar---2-GfJ .buttons---input-group---1T18I {
  float: left;
}
.buttons---btn-toolbar---2-GfJ > .buttons---btn---2jZHN,
.buttons---btn-toolbar---2-GfJ > .buttons---btn-group---1jaDo,
.buttons---btn-toolbar---2-GfJ > .buttons---input-group---1T18I {
  margin-left: 5px;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:not(:first-child):not(:last-child):not(.buttons---dropdown-toggle---vMtjL) {
  border-radius: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:first-child {
  margin-left: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:first-child:not(:last-child):not(.buttons---dropdown-toggle---vMtjL) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN:last-child:not(:first-child),
.buttons---btn-group---1jaDo > .buttons---dropdown-toggle---vMtjL:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn-group---1jaDo {
  float: left;
}
.buttons---btn-group---1jaDo > .buttons---btn-group---1jaDo:not(:first-child):not(:last-child) > .buttons---btn---2jZHN {
  border-radius: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn-group---1jaDo:first-child:not(:last-child) > .buttons---btn---2jZHN:last-child,
.buttons---btn-group---1jaDo > .buttons---btn-group---1jaDo:first-child:not(:last-child) > .buttons---dropdown-toggle---vMtjL {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn-group---1jaDo:last-child:not(:first-child) > .buttons---btn---2jZHN:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.buttons---btn-group---1jaDo .buttons---dropdown-toggle---vMtjL:active,
.buttons---btn-group---1jaDo.buttons---open---1ju75 .buttons---dropdown-toggle---vMtjL {
  outline: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo > .buttons---btn---2jZHN {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo {
  zoom: 1;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:before,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:after {
  content: "";
  display: table;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:after {
  clear: both;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo > .buttons---btn---2jZHN {
  float: none;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN + .buttons---btn---2jZHN,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN + .buttons---btn-group---1jaDo,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo + .buttons---btn---2jZHN,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo + .buttons---btn-group---1jaDo {
  margin-top: -1px;
  margin-left: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:first-child:not(:last-child) {
  border-top-radius: 3px;
  border-bottom-radius: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn---2jZHN:last-child:not(:first-child) {
  border-top-radius: 0;
  border-bottom-radius: 3px;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:not(:first-child):not(:last-child) > .buttons---btn---2jZHN {
  border-radius: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:first-child:not(:last-child) > .buttons---btn---2jZHN:last-child,
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:first-child:not(:last-child) > .buttons---dropdown-toggle---vMtjL {
  border-bottom-radius: 0;
}
.buttons---btn-group-vertical---3Lm1e > .buttons---btn-group---1jaDo:last-child:not(:first-child) > .buttons---btn---2jZHN:first-child {
  border-top-radius: 0;
}
.buttons---btn-group-justified---3qB9u {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.buttons---btn-group-justified---3qB9u > .buttons---btn---2jZHN,
.buttons---btn-group-justified---3qB9u > .buttons---btn-group---1jaDo {
  float: none;
  display: table-cell;
  width: 1%;
}
.buttons---btn-group-justified---3qB9u > .buttons---btn-group---1jaDo .buttons---btn---2jZHN {
  width: 100%;
}
.buttons---btn-group-justified---3qB9u > .buttons---btn-group---1jaDo .buttons---dropdown-menu---1fkH0 {
  left: auto;
}
.buttons---dropdown-toggle---vMtjL {
  min-width: 0;
}
.buttons---dropdown-toggle---vMtjL.buttons---btn---2jZHN {
  text-align: left;
  padding-left: 12px;
  padding-right: 12px;
}
.buttons---dropdown-toggle---vMtjL.buttons---btn-compact---mXDAU {
  text-align: center;
}
.buttons---dropdown-toggle---vMtjL.buttons---btn-link---1xwS4 {
  color: #222;
  padding-left: 0;
  padding-right: 0;
  text-decoration: none;
}
.buttons---dropdown-toggle---vMtjL.buttons---btn-link---1xwS4:hover,
.buttons---dropdown-toggle---vMtjL.buttons---btn-link---1xwS4:hover > * {
  color: #0096cc;
}
.buttons---btn-group---1jaDo > .buttons---btn---2jZHN + .buttons---dropdown-toggle---vMtjL {
  padding-left: 8px;
  padding-right: 8px;
  min-width: 0;
}
.buttons---btn-group---1jaDo > .buttons---btn-lg---2xtUV + .buttons---dropdown-toggle---vMtjL {
  padding-left: 12px;
  padding-right: 12px;
}
[data-toggle="buttons"] > .buttons---btn---2jZHN input[type="radio"],
[data-toggle="buttons"] > .buttons---btn-group---1jaDo > .buttons---btn---2jZHN input[type="radio"],
[data-toggle="buttons"] > .buttons---btn---2jZHN input[type="checkbox"],
[data-toggle="buttons"] > .buttons---btn-group---1jaDo > .buttons---btn---2jZHN input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.buttons---btn---2jZHN.buttons---btn-compact---mXDAU .fa {
  margin-right: 0;
}
.buttons---btn---2jZHN .fa {
  font-size: 14px;
  margin-right: 8px;
}
.buttons---btn---2jZHN i.fa,
.buttons---btn---2jZHN span.fa {
  font-size: 14px;
  color: #666;
}
.buttons---btn-primary---Wp1wb i.fa,
.buttons---btn-danger---1UUqU i.fa,
.buttons---btn-primary---Wp1wb span.fa,
.buttons---btn-danger---1UUqU span.fa {
  color: inherit;
}
.buttons---btn-lg---2xtUV.buttons---btn---2jZHN i.fa,
.buttons---btn-sm---3cNnY.buttons---btn---2jZHN i.fa,
.buttons---btn-xs---2eEDQ.buttons---btn---2jZHN i.fa,
.buttons---btn-lg---2xtUV.buttons---btn---2jZHN span.fa,
.buttons---btn-sm---3cNnY.buttons---btn---2jZHN span.fa,
.buttons---btn-xs---2eEDQ.buttons---btn---2jZHN span.fa {
  font-size: inherit;
}
.buttons---btn-lg---2xtUV.buttons---btn---2jZHN i.svg,
.buttons---btn-lg---2xtUV.buttons---btn---2jZHN span.svg {
  width: 24px;
  height: 24px;
}
.buttons---btn---2jZHN i.svg,
.buttons---btn---2jZHN span.svg {
  width: 16px;
  height: 16px;
}
.buttons---btn-sm---3cNnY.buttons---btn---2jZHN i.svg,
.buttons---btn-xs---2eEDQ.buttons---btn---2jZHN i.svg,
.buttons---btn-sm---3cNnY.buttons---btn---2jZHN span.svg,
.buttons---btn-xs---2eEDQ.buttons---btn---2jZHN span.svg {
  width: 12px;
  height: 12px;
}
/*! react-dropdown v1.4.0 | (c) 2020 Trend Micro Inc. | MIT | https://github.com/trendmicro-frontend/react-dropdown */
.dropdown---dropdown---1yvIZ {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 20px;
  position: relative;
}
.dropdown---dropdown---1yvIZ *,
.dropdown---dropdown---1yvIZ *:before,
.dropdown---dropdown---1yvIZ *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
.dropdown---dropdown-toggle---vMtjL {
  min-width: 0;
}
.dropdown---dropdown-toggle---vMtjL .dropdown---caret---3CkEt {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 4px dashed #666;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  margin-left: 8px;
}
.dropdown---dropup---30DnN .dropdown---dropdown-toggle---vMtjL .dropdown---caret---3CkEt {
  border-top: 0;
  border-bottom: 4px dashed #666;
}
.dropdown---dropdown-toggle---vMtjL:focus {
  outline: 0;
}
.dropdown---dropdown-toggle---vMtjL.dropdown---btn-link---1xwS4:hover .dropdown---caret---3CkEt {
  border-top-color: #0096cc;
}
.dropdown---dropdown-toggle---vMtjL.dropdown---empty---zMmdA .dropdown---caret---3CkEt {
  margin-left: 0;
}
.dropdown---dropdown-menu---1fkH0 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 0;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.dropdown---dropdown-menu---1fkH0.dropdown---pull-right---2juGH {
  right: 0;
  left: auto;
}
.dropdown---dropdown-menu---1fkH0 .dropdown---header---3pfXo {
  display: block;
  padding: 4px 16px;
  font-size: 12px;
  line-height: 20px;
  color: #888;
  white-space: nowrap;
}
.dropdown---dropdown-menu---1fkH0 .dropdown---divider---13uxG {
  height: 1px;
  margin: 8px 0;
  overflow: hidden;
  background-color: #eee;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0 > .dropdown---menu-item---1LjoL {
  display: block;
  padding: 4px 16px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---dropdown-submenu---11C1M > .dropdown---menu-item---1LjoL {
  padding-right: 32px;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0 > .dropdown---menu-item---1LjoL:focus {
  outline: 0;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0 > .dropdown---menu-item---1LjoL:hover,
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0 > .dropdown---menu-item---1LjoL:focus {
  text-decoration: none;
  color: #222;
  background-color: #eee;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b {
  cursor: not-allowed;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b > .dropdown---menu-item---1LjoL,
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b > .dropdown---menu-item---1LjoL:hover,
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b > .dropdown---menu-item---1LjoL:focus {
  color: #bbb;
}
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b > .dropdown---menu-item---1LjoL:hover,
.dropdown---dropdown-menu---1fkH0 > .dropdown---menu-item-wrapper---3uAM0.dropdown---disabled---eCY9b > .dropdown---menu-item---1LjoL:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.dropdown---dropdown-menu---1fkH0.dropdown---selected---1EK3y > .dropdown---menu-item-wrapper---3uAM0 > .dropdown---menu-item---1LjoL {
  padding: 4px 32px 4px 40px;
}
.dropdown---dropdown-menu---1fkH0.dropdown---selected---1EK3y > .dropdown---menu-item-wrapper---3uAM0.dropdown---active---2-a32 > .dropdown---menu-item---1LjoL:before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE2IDE2OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KPCFbQ0RBVEFbDQoJLnN0MHtmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtmaWxsOiMwMDk2Q0M7fQ0KXV0+DQo8L3N0eWxlPg0KPGcgaWQ9Imljb25TZWxlY3RDaGVjayI+DQoJPGc+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMi43LDQuMWMtMC40LTAuNC0xLTAuNC0xLjQsMGwtNS4yLDYuMUw0LjcsNy4zQzQuMyw3LDMuNyw3LDMuMyw3LjNzLTAuNCwxLDAsMS40TDUsMTIuMg0KCQkJYzAsMC4xLDAuMSwwLjIsMC4yLDAuM2wwLjEsMC4yYzAuNCwwLjQsMSwwLjQsMS40LDBjMCwwLDAtMC4xLDAuMS0wLjFsNi03LjFDMTMuMSw1LjEsMTMuMSw0LjUsMTIuNyw0LjF6Ii8+DQoJPC9nPg0KPC9nPg0KPC9zdmc+DQo=);
  background-position: 0 2px;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 20px;
  margin: 0 8px 0 -24px;
  vertical-align: top;
  width: 16px;
}
.dropdown---dropdown-menu---1fkH0.dropdown---selected---1EK3y > .dropdown---menu-item-wrapper---3uAM0.dropdown---active---2-a32 > .dropdown---menu-item---1LjoL,
.dropdown---dropdown-menu---1fkH0.dropdown---selected---1EK3y > .dropdown---menu-item-wrapper---3uAM0.dropdown---active---2-a32 > .dropdown---menu-item---1LjoL:hover,
.dropdown---dropdown-menu---1fkH0.dropdown---selected---1EK3y > .dropdown---menu-item-wrapper---3uAM0.dropdown---active---2-a32 > .dropdown---menu-item---1LjoL:focus {
  text-decoration: none;
  outline: 0;
}
.dropdown---dropup---30DnN > .dropdown---dropdown-menu---1fkH0 {
  top: auto;
  bottom: 100%;
}
.dropdown---dropdown---1yvIZ.dropdown---open---1ju75 > .dropdown---dropdown-menu---1fkH0 {
  display: block;
}
.dropdown---dropdown-menu-wrapper---3gX-X {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #bbb;
  -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.dropdown---dropdown-menu-wrapper---3gX-X.dropdown---pull-right---2juGH {
  right: 0;
  left: auto;
}
.dropdown---dropdown-menu-wrapper---3gX-X > .dropdown---dropdown-menu---1fkH0 {
  position: static;
  vertical-align: top;
}
.dropdown---dropdown---1yvIZ.dropdown---open---1ju75 > .dropdown---dropdown-menu-wrapper---3gX-X {
  display: block;
}
.dropdown---dropdown---1yvIZ.dropdown---open---1ju75 > .dropdown---dropdown-menu-wrapper---3gX-X > .dropdown---dropdown-menu---1fkH0 {
  display: inline-block;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.dropdown---dropdown-submenu---11C1M {
  position: relative;
}
.dropdown---dropdown-submenu---11C1M:hover > .dropdown---dropdown-menu---1fkH0,
.dropdown---dropdown-submenu---11C1M.dropdown---open---1ju75 > .dropdown---dropdown-menu---1fkH0 {
  display: block;
}
.dropdown---dropdown-submenu---11C1M.dropdown---pull-left---176QY {
  float: none;
}
.dropdown---dropdown-submenu---11C1M.dropdown---pull-left---176QY > .dropdown---dropdown-menu---1fkH0 {
  left: auto;
  right: 100%;
  margin-left: 0;
}
.dropdown---dropdown-submenu---11C1M > .dropdown---menu-item---1LjoL:before {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right-width: 0;
  border-left-color: #666;
  margin: 6px -16px 6px 0;
}
.dropdown---dropdown-submenu---11C1M > .dropdown---dropdown-menu---1fkH0 {
  top: 0;
  left: 100%;
  margin-top: 0;
}
body .ck__agfCf.ck-balloon-panel__2RxuD {
  z-index: 99999; }

.dropdownWrapper__3guZ2 {
  margin-right: 0; }

.exportButton__12Vbu {
  width: 85% !important;
  margin-right: 0 !important; }

.downloadIcon__22nWE {
  margin-right: 7px; }

body .ck__15Drd.ck-balloon-panel__oTZ__ {
  z-index: 99999; }

.container__1bXR1 {
  padding: 24px 0;
  max-width: 1280px;
  margin: 0 auto; }

.filters__2-ky7 {
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; }

.searchInputContainer__a3Ecf {
  flex: 1 0 100%; }

.selectFilters__9yLJZ {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 24px;
  gap: 20px;
  width: 100%; }

.selectFiltersSubtypeActive__1sYUp {
  grid-template-columns: repeat(6, 1fr); }

.resultsCountTop__iEIB2 {
  margin-bottom: 24px; }

.downloadIcon__1yHK9 {
  margin-right: 10px; }

.typeFilterContainer__1SaSf {
  display: flex;
  align-items: center;
  flex: 1 0 100%;
  margin: 24px 0; }
  @media (min-width: 1024px) {
    .typeFilterContainer__1SaSf {
      flex: 1 0 50%;
      padding: 0 16px 0 0; } }
  @media (min-width: 1280px) {
    .typeFilterContainer__1SaSf {
      flex: 0 0 65%; } }

.typeFilterLabel__2w7yT {
  flex: 0 0 auto;
  color: #90979D;
  padding-right: 1em; }

.typeFilterSelect__dyQJt {
  flex: 1 1 auto; }

.resultsCount__1T_Kl {
  margin-left: auto;
  color: #90979D; }

.infoText__AVA8Y {
  color: #90979D; }

.footerResults__2A9on {
  color: #90979D;
  margin: 24px 0;
  text-align: right; }

.resultsWrapperOuter__1ZOln {
  overflow-x: auto; }

.resultsWrapper__3_pjK {
  table-layout: fixed;
  border-spacing: 0;
  margin-bottom: 24px;
  font-size: 14px;
  width: 100%; }
  .resultsWrapper__3_pjK a {
    color: #197da4;
    text-decoration: none; }
  .resultsWrapper__3_pjK thead {
    background: #ffffff; }
  .resultsWrapper__3_pjK thead:hover {
    cursor: pointer; }
  .resultsWrapper__3_pjK th {
    min-width: 70px;
    font-size: 12px;
    color: #7E888E;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E7E7E7; }
    .resultsWrapper__3_pjK th.clickableTitle__1lIgq {
      cursor: pointer; }
  .resultsWrapper__3_pjK .th-comment__H-Clq,
  .resultsWrapper__3_pjK .td-comment__34qGA {
    width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; }
  .resultsWrapper__3_pjK td {
    padding: 1rem;
    width: auto; }

.coresite .resultsWrapper__3_pjK a {
  color: #0072cf; }

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

.tableRow__FlLGl:hover {
  background: rgba(41, 163, 210, 0.1); }

.tableRow__FlLGl td {
  word-break: break-word; }

.tableRowEven__2s_Se {
  background: white; }

.dropdownLinkContainer__2maz7 {
  position: relative; }
  .dropdownLinkContainer__2maz7 .dropdownLinkChildren__3wybN {
    display: none;
    position: absolute;
    flex-direction: row;
    flex-wrap: wrap;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.3); }
  .dropdownLinkContainer__2maz7:hover .dropdownLinkChildren__3wybN {
    display: flex; }

.dropdownLinkChildren__3wybN a,
.dropdownLinkContainer__2maz7 div.edit-node-modal-button {
  width: 100%;
  padding: 0.75rem;
  color: #5BB1D3;
  text-transform: uppercase;
  cursor: pointer;
  background: white; }
  .dropdownLinkChildren__3wybN a:hover,
  .dropdownLinkContainer__2maz7 div.edit-node-modal-button:hover {
    color: #FFFFFF;
    background: #5BB1D3; }

.dropdownLink__2Dkwh {
  padding: 0.5rem; }

.headerActive__202Bo {
  color: #000; }

.tableLoading__3K6_A {
  opacity: 0.25; }

.thUpdated__NgZpu {
  width: 120px; }

.thDropdown__2AM6Y {
  width: 70px; }

.thPublished__hj82y {
  width: 110px; }

.fieldPublished__3mBBP {
  text-align: left; }

.headingUpdated__3M51X, .fieldUpdated__3165Y {
  text-align: left; }

.pagerContainer__2_zNr {
  display: flex;
  justify-content: flex-end; }

.exportMessage__3bZOc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center; }

.exportMessageInner__3EXtz {
  text-align: center;
  background: white;
  padding: 2rem 4rem; }

body .ck__2GRcl.ck-balloon-panel__154K0 {
  z-index: 99999; }

.container__--uhi {
  padding: 24px 0;
  max-width: 1280px;
  margin: 0 auto; }

.filters__3A8oI {
  margin: 0 0 24px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; }

.searchInputContainer__19nOl {
  flex: 1 0 100%; }

.selectFilters__1sugC {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 24px;
  gap: 20px;
  width: 100%; }

.selectFiltersSubtypeActive__W9sbY {
  grid-template-columns: repeat(6, 1fr); }

.resultsCountTop__3fwVU {
  margin-bottom: 24px; }

.downloadIcon__2M2W2 {
  margin-right: 10px; }

.typeFilterContainer__3MCzH {
  display: flex;
  align-items: center;
  flex: 1 0 100%;
  margin: 24px 0; }
  @media (min-width: 1024px) {
    .typeFilterContainer__3MCzH {
      flex: 1 0 50%;
      padding: 0 16px 0 0; } }
  @media (min-width: 1280px) {
    .typeFilterContainer__3MCzH {
      flex: 0 0 65%; } }

.typeFilterLabel__2YemN {
  flex: 0 0 auto;
  color: #90979D;
  padding-right: 1em; }

.typeFilterSelect__1noS3 {
  flex: 1 1 auto; }

.resultsCount__3bemg {
  margin-left: auto;
  color: #90979D; }

.infoText__Hwjae {
  color: #90979D; }

.footerResults__1yFeK {
  color: #90979D;
  margin: 24px 0;
  text-align: right; }

.resultsWrapperOuter__1F_Dz {
  overflow-x: auto; }

.resultsWrapper___-6z0 {
  table-layout: fixed;
  border-spacing: 0;
  margin-bottom: 24px;
  font-size: 14px;
  width: 100%; }
  .resultsWrapper___-6z0 a {
    color: #197da4;
    text-decoration: none; }
  .resultsWrapper___-6z0 thead {
    background: #ffffff; }
  .resultsWrapper___-6z0 thead:hover {
    cursor: pointer; }
  .resultsWrapper___-6z0 th {
    min-width: 70px;
    font-size: 12px;
    color: #7E888E;
    text-transform: uppercase;
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #E7E7E7; }
    .resultsWrapper___-6z0 th.clickableTitle__3jEnF {
      cursor: pointer; }
  .resultsWrapper___-6z0 .th-comment__uctjE,
  .resultsWrapper___-6z0 .td-comment__2bwoH {
    width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; }
  .resultsWrapper___-6z0 td {
    padding: 1rem;
    width: auto; }

.coresite .resultsWrapper___-6z0 a {
  color: #0072cf; }

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

.tableRow__1e9mp:hover {
  background: rgba(41, 163, 210, 0.1); }

.tableRow__1e9mp td {
  word-break: break-word; }

.tableRowEven__1iwid {
  background: white; }

.dropdownLinkContainer__3H0Fu {
  position: relative; }
  .dropdownLinkContainer__3H0Fu .dropdownLinkChildren__12zRw {
    display: none;
    position: absolute;
    flex-direction: row;
    flex-wrap: wrap;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0px 9px 30px rgba(0, 0, 0, 0.3); }
  .dropdownLinkContainer__3H0Fu:hover .dropdownLinkChildren__12zRw {
    display: flex; }

.dropdownLinkChildren__12zRw a,
.dropdownLinkContainer__3H0Fu div.edit-node-modal-button {
  width: 100%;
  padding: 0.75rem;
  color: #5BB1D3;
  text-transform: uppercase;
  cursor: pointer;
  background: white; }
  .dropdownLinkChildren__12zRw a:hover,
  .dropdownLinkContainer__3H0Fu div.edit-node-modal-button:hover {
    color: #FFFFFF;
    background: #5BB1D3; }

.dropdownLink__2NMPD {
  padding: 0.5rem; }

.headerActive__H_JAm {
  color: #000; }

.tableLoading__31LAE {
  opacity: 0.25; }

.thUpdated__VV-3g {
  width: 120px; }

.thDropdown__3OGBh {
  width: 70px; }

.thPublished__9Frpg {
  width: 110px; }

.fieldPublished__2-Q4B {
  text-align: left; }

.headingUpdated__uB1Ca, .fieldUpdated__3t01e {
  text-align: left; }

.pagerContainer__1qeAj {
  display: flex;
  justify-content: flex-end; }

.exportMessage__3Ezem {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center; }

.exportMessageInner__3AzlW {
  text-align: center;
  background: white;
  padding: 2rem 4rem; }

.chevron__ERsQe {
  transition: 0.2s ease-out; }

.down__2_LE8 {
  transform: rotate(180deg); }

body .ck__3EBjA.ck-balloon-panel__2uvYR {
  z-index: 99999; }

.wrapper__3WsgD {
  padding: 24px 16px; }

.container__2vkYp {
  position: relative; }

.description__1JUSf {
  font-size: 0.9em;
  margin-bottom: 2em; }

.descriptionSection__1mv8T {
  margin-bottom: 0.5em; }

.selectBoxesContainer__1ffwJ {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em; }
  .selectBoxesContainer__1ffwJ > div {
    flex: 0 0 23.25%; }

.downloadIcon__WZH9Z {
  margin-right: 10px; }

.downloadButton__2SvVB {
  width: 225px;
  display: block;
  margin: 0 auto;
  background: #1fa4d7;
  color: white;
  text-align: center;
  padding: 0.65em; }
  .downloadButton__2SvVB:hover {
    background: #5BB1D3; }

.coresite .downloadButton__2SvVB {
  color: #ffffff;
  background: #0072cf; }
  .coresite .downloadButton__2SvVB:hover {
    background: #3070c8; }

body .ck__179ja.ck-balloon-panel__2fK3e {
  z-index: 99999; }

.downloadIcon__WRjiw {
  margin-right: 10px; }

.downloadButton__UANN_ {
  display: block;
  margin: 0 auto;
  color: white;
  text-align: center; }

