/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Note: `style.css` is autogenerated from `style.scss` */
/* Developers should define `:focus` styles for focusable controls. */
/* Didn't add `:focus` specifier for lesser CSS rule priority. */
.rrui__outline:not(.rrui__outline--default) {
  outline: none;
}

/* Reset the default `<button/>` styles */
.rrui__button-reset {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  user-select: none;
  /* box-sizing  : border-box; */
}

/* This CSS class can be used on its own in applications. */
/* Because of that, `outline: none` is added here too. */
/* Developers should define `:focus` styles for buttons. */
/* Didn't add `:focus` specifier for lesser CSS rule priority. */
.rrui__button-reset:not(.rrui__outline--default) {
  outline: none;
}

.rrui__button-reset--link:hover {
  text-decoration: none;
}

.rrui__activity-indicator {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
}

.rrui__activity-indicator__arc {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  animation: rrui__activity-indicator 1.2s cubic-bezier(0.5, 0.15, 0.5, 0.85) infinite;
  border-color: currentColor transparent transparent transparent;
}

.rrui__activity-indicator__arc:nth-child(1) {
  animation-delay: -0.45s;
}

.rrui__activity-indicator__arc:nth-child(2) {
  animation-delay: -0.3s;
}

.rrui__activity-indicator__arc:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes rrui__activity-indicator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rrui__autocomplete__input {
  height: 100%;
  box-sizing: border-box;
}

/* Stretches the inputs to full column width by default. */
/* Because everyone uses CSS grids today. */
.rrui__autocomplete__input {
  width: 100%;
}

.rrui__autocomplete .rrui__ellipsis {
  position: absolute;
  right: 0.2rem;
  top: calc(50% - 0.1rem);
  pointer-events: none;
}

.rrui__autocomplete__input {
  padding-right: 1.5rem;
}

.rrui__autocomplete .rrui__options-list {
  /*
	`<Select/>` options text should be at least fully visible.
	At the same time `<Select/>` options should stretch themselves
	horizontally to the width of the containing column (when using grid layout).
	*/
  width: calc(100% + 1.8rem);
  /* Makes `border-bottom` visible on an iPhone */
  margin-top: 1px;
}

.rrui__autocomplete--compact {
  /* Reverts `width: 100%` set at the top of this file */
  width: auto;
  /* If it's `compact` then it's most likely inlined */
  display: inline-block;
}

.rrui__autocomplete--compact .rrui__expandable-list {
  width: auto;
}

.rrui__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 1.8rem;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  transition: background-color 30ms ease-out, color 30ms ease-out, border-color 30ms ease-out;
  background-color: transparent;
  color: #2bd7f0;
  border-radius: 0;
}

.rrui__button:active {
  background-color: transparent;
  color: #2bd7f0;
}

.rrui__button--busy,
.rrui__button--disabled {
  /* "pointer-events" prevents "cursor: wait" from working */
  pointer-events: none;
}

.rrui__button--stretch {
  display: flex;
  width: 100%;
}

.rrui__button--link:hover {
  text-decoration: none;
}

.rrui__button__busy {
  display: block;
  position: absolute;
  left: 0;
  bottom: calc(50% - 0.7em);
  width: 100%;
  height: 0.1em;
  overflow: hidden;
  opacity: 0;
  transition: opacity 300ms ease-out 0ms;
}

.rrui__button__busy--after-show {
  opacity: 1;
  transition: opacity 700ms ease-out 200ms;
}

.rrui__button__busy:before {
  display: block;
  position: absolute;
  content: "";
  left: -40%;
  width: 40%;
  height: 100%;
  background-color: currentColor;
  animation: rrui__button__busy 2s ease-in infinite;
}

/* Based on "CSS indeterminate progress" example. */
/* https://codepen.io/brunjo/pen/XJmbNz */
@keyframes rrui__button__busy {
  from {
    left: -40%;
    width: 40%;
  }
  50% {
    width: 70%;
  }
  70% {
    width: 85%;
  }
  80% {
    left: 30%;
    width: 100%;
  }
  95% {
    left: 60%;
  }
  to {
    left: 100%;
  }
}

/* http://tympanus.net/codrops/2013/10/15/animated-checkboxes-and-radio-buttons-with-svg/ */
.rrui__checkbox .rrui__input {
  display: inline-flex;
  align-items: center;
}

.rrui__checkbox .rrui__input--multiline {
  /* IE and Edge have a bug with `inline-flex`:
	   the multiline content shrinks in width. */
  display: flex;
  align-items: flex-start;
}

.rrui__checkbox__label {
  display: inline-block;
  /* Using padding instead of margin here to make the gap clickable. */
  padding-left: 0.6rem;
  vertical-align: bottom;
  color: inherit;
  user-select: none;
}

.rrui__checkbox__label:not(.rrui__checkbox__label--multiline) {
  white-space: nowrap;
}

.rrui__checkbox__label--multiline {
  /* A fix for IE 11 to force it wrap `<label/>` text */
  flex: 1 0 0;
}

.rrui__checkbox--multiline .rrui__checkbox__checkbox {
  margin-top: 0.12em;
}

.rrui__checkbox__input,
.rrui__checkbox__label {
  cursor: pointer;
}

.rrui__checkbox--disabled {
  pointer-events: none;
}

.rrui__checkbox__checkbox {
  position: relative;
  z-index: 0;
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  color: #000000;
}

.rrui__checkbox__input {
  position: absolute;
  z-index: 3;
  left: -40%;
  top: -40%;
  width: 180%;
  height: 180%;
  margin: 0;
  opacity: 0;
}

.rrui__checkbox__box {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  fill: currentColor;
  user-select: none;
  pointer-events: none;
}

/* Checkbox color (:checked) */
.rrui__checkbox__box--checked {
  color: #03b2cb;
}

/* Checkbox color (:focus) */
.rrui__checkbox__input:focus + .rrui__checkbox__box {
  color: #03b2cb;
}

/* Checkbox color (:focus) (:checked) */
.rrui__checkbox__input:focus + .rrui__checkbox__box--checked {
  color: #03b2cb;
}

/* Checkbox color (:checked / :active) */
.rrui__checkbox__input:active + .rrui__checkbox__box {
  color: #2bd7f0;
}

.rrui__checkbox__box-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 10%;
  transform: scale(0.9);
}

.rrui__checkbox--invalid .rrui__checkbox__box-background {
  background-color: #ffffff;
}

/* Checkbox color (:invalid) */
.rrui__checkbox--invalid .rrui__checkbox__box {
  color: #d30f00;
}

/* Focus ring. */
.rrui__checkbox__focus-ring {
  display: block;
  position: absolute;
  left: -75%;
  top: -75%;
  width: 250%;
  height: 250%;
  border-radius: 50%;
  z-index: 0;
}

.rrui__checkbox__input:focus + .rrui__checkbox__box + .rrui__checkbox__box-background + .rrui__checkbox__focus-ring {
  background-color: transparent;
}

.rrui__checkbox__input:active + .rrui__checkbox__box + .rrui__checkbox__box-background + .rrui__checkbox__focus-ring {
  background-color: transparent;
}

/*
.rrui__close--top-right
{
	position : fixed;
	top      : 1.2rem;
	right    : 1.2rem;
	z-index  : 1;
}
*/
.rrui__close--bottom-right {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 1;
}

.rrui__close__icon {
  width: 1.2rem;
  height: 1.2rem;
  box-sizing: content-box;
}

.rrui__close:active .rrui__close__icon-path,
.rrui__button:active .rrui__close__icon-path {
  color: #03b2cb;
}

.rrui__close__icon-path {
  color: #000000;
  stroke: currentColor;
}

.rrui__close {
  padding: 0.6rem;
  margin: -0.6rem;
}

/* DayPicker styles (version 7.1.10) */
.DayPicker {
  user-select: none;
}

.DayPicker-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1.2rem;
  border-bottom: 0.1em solid transparent;
}

.DayPicker-wrapper:focus {
  border-bottom-color: #03b2cb;
}

.DayPicker-NavButton {
  position: absolute;
  top: 0.3rem;
  cursor: pointer;
  width: 1.5em;
  height: 1.5em;
}

.DayPicker-NavButton--prev {
  left: 0.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 style=%27fill: currentColor; color: %2303b2cb;%27%3E%3Cpath d=%27M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z%27%3E%3C/path%3E%3C/svg%3E");
}

.DayPicker-NavButton--next {
  right: 0.3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 24 24%27 style=%27fill: currentColor; color: %2303b2cb;%27%3E%3Cpath d=%27M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z%27%3E%3C/path%3E%3C/svg%3E");
}

.DayPicker-NavButton--prev:focus,
.DayPicker-NavButton--next:focus {
  background-color: #f7f7f7;
  border-radius: 50%;
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  /* iPhone moves <select/>s around the screen on focus when using `display: table-caption`. */
  /* display: table-caption; */
  text-align: center;
  margin-bottom: 1em;
}

.DayPicker-Weekdays {
  margin-top: 1em;
  display: table-header-group;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  font-size: 0.875em;
  text-align: center;
  color: #888888;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  border-radius: 50%;
}

.DayPicker-Day:focus {
  background-color: #f7f7f7;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

/* Default modifiers */
.DayPicker-Day--today:not(.DayPicker-Day--selected):not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  /*
	color: #03b2cb;
	font-weight: 700;
	*/
  /* border: 1px solid #f3f3f3; */
  /*
	border-radius: 50%;
	box-shadow: 0 0 1px #000000;
	*/
  color: #d0021b;
  font-weight: 700;
}

.DayPicker-Day--outside {
  cursor: default;
  color: #888888;
}

.DayPicker-Day--disabled {
  color: #cacaca;
  cursor: default;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  color: #ffffff;
  background-color: #03b2cb;
}

/* .DayPicker:not(.DayPicker--interactionDisabled) ... */
.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #f3f3f3;
  color: #000000;
}

.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):active {
  color: #ffffff;
  background-color: #2bd7f0;
}

/* =============================== */
/* Custom `react-daypicker` styles */
/* =============================== */
.DayPicker-Months {
  margin-top: 0.5em;
}

.DayPicker-Month {
  margin-top: 0;
}

.DayPicker-MonthSelect {
  margin-right: 0.3em;
}

.DayPicker-MonthSelect,
.DayPicker-YearSelect {
  display: inline-block;
  position: relative;
}

/* `:focus` styles are implemented using
   `background-color` / `border-color`
   instead of a standard `outline`. */
/* Didn't add `:focus` specifier for lesser CSS rule priority. */
/* ------------------------------------ */
/* `.DayPicker-wrapper` is a `<div/>` wrapping the calendar.
   It gets focused upon expanding which causes an outline.
   That outline can be safely removed because it doesn't aid accesiblity. */
.rrui__date-picker:not(.rrui__outline--default) .DayPicker-wrapper,
.rrui__date-picker:not(.rrui__outline--default) .DayPicker-Day,
.rrui__date-picker:not(.rrui__outline--default) .DayPicker-NavButton {
  outline: none;
}

/* https://github.com/gpbl/react-day-picker/issues/708 */
/*
.DayPicker-NavButton:active
{
	color : #2bd7f0;
}
*/
/* ----------------------------------------------------- */
/* -                  `<DatePicker/>`                  - */
/* ----------------------------------------------------- */
.rrui__date-picker {
  position: relative;
}

.rrui__date-picker .rrui__expandable {
  min-width: 100%;
  background-color: #ffffff;
  color: #000000;
}

.rrui__date-picker .rrui__expandable__content {
  /* For compatibility with older versions. */
  /* Deprecated. Will be removed in versions > 0.14. */
  padding: 0;
}

.rrui__date-picker__calendar abbr {
  text-decoration: none;
}

.rrui__date-picker__input-overlay {
  /*
	Set `display` to `block` for fullscreen `.rrui__expandable` design.
	This works around the mobile keyboard appearing from the bottom.
	display  : block;
	*/
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* `z-index` could potentially cause a bug
	   when the overlay would be above other content on a page
	   resulting in it capturing events like "mousedown" or "click". */
  /* z-index  : 1; */
  outline: none;
}

.rrui__date-picker__close {
  /*
	Set `display` to `block` for fullscreen `.rrui__expandable` design.
	display      : block;
	*/
  display: none;
}

.rrui__date-picker:focus {
  display: none;
}

.rrui__date-picker__icon {
  position: absolute;
  top: 0.45rem;
  right: 0.3rem;
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.5;
  color: #000000;
  /* `z-index` could potentially cause a bug
	   when the button would be above other content on a page
	   resulting in it capturing events like "mousedown" or "click". */
  /* z-index  : 1; */
}

.rrui__date-picker__icon--hidden {
  display: none;
}

/*
// Adding `:focus` style for date picker icon is not required
// because it's not tabbable (`tabIndex={-1}`).
.rrui__date-picker__icon:focus,
*/
.rrui__date-picker .rrui__expanded--expanded .rrui__date-picker__icon {
  opacity: 1;
  color: #03b2cb;
}

.rrui__date-picker__icon:focus {
  opacity: 1;
  color: #03b2cb;
}

.rrui__date-picker__icon:active {
  opacity: 1;
  color: #2bd7f0;
}

.DayPicker-YearSelect select:focus + button .rrui__select__arrow,
.DayPicker-MonthSelect select:focus + button .rrui__select__arrow {
  color: #03b2cb;
}

.rrui__divider {
  line-height: 0;
  font-size: 0;
}

.rrui__divider__line {
  width: 100%;
  height: 1px;
  margin-bottom: -1px;
  background-color: rgba(0, 0, 0, 0.16);
  border: 0;
}

.rrui__ellipsis {
  width: 0.9rem;
  opacity: 0.7;
}

.rrui__ellipsis__size {
  position: relative;
  width: 100%;
  padding-bottom: 22%;
}

.rrui__ellipsis__dots {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
}

.rrui__ellipsis__dot {
  width: 22%;
  height: 100%;
  margin-right: 16.5%;
  border-radius: 50%;
  background-color: currentColor;
  opacity: 0.4;
}

.rrui__ellipsis__dot--1 {
  animation: 1.1s linear 0s infinite rrui__ellipsis;
}

.rrui__ellipsis__dot--2 {
  animation: 1.1s linear 0.36666667s infinite rrui__ellipsis;
}

.rrui__ellipsis__dot--3 {
  margin-right: 0;
  animation: 1.1s linear 0.73333333s infinite rrui__ellipsis;
}

@keyframes rrui__ellipsis {
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.rrui__expandable {
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0.8);
  transform-origin: 50% top 0;
  /* 250ms - too slow for short lists */
  transition: all 150ms ease-out;
  /* prevent white background showing through the transparent border */
  /* http://stackoverflow.com/questions/7473200/transparent-border-expands-background-color-image */
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}

.rrui__expandable--expanded {
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1);
  transform-origin: 50% top 0;
  transition: all 150ms cubic-bezier(0.23, 1, 0.32, 1);
}

.rrui__expandable--overlay {
  position: absolute;
  z-index: 1;
}

.rrui__expandable__content {
  /*
	The inner block's `opacity` is animated too
	(it fades in and out by itself too).
	This is done to fade out the inner block when the dropdown is collapsed
	therefore hiding an otherwise bizarre and unwanted visual clutter
	*/
  opacity: 0;
  /* Mitigates inner content overlapping with itself creating a feeling of a mess */
  transition: opacity 100ms ease-out;
}

.rrui__expandable__content--expanded {
  opacity: 1;
}

.rrui__expandable--left-aligned {
  left: 0;
}

.rrui__expandable--right-aligned {
  right: 0;
}

.rrui__expandable--downward {
  /* When an html page is overflown by a long list
	   then this bottom margin helps to see that
	   there's no more options left out being clipped or something */
  margin-bottom: 1em;
}

.rrui__expandable--upward {
  bottom: 100%;
  /* When an html page is overflown by a long list
	   then this bottom margin helps to see that
	   there's no more options left out being clipped or something */
  margin-top: 1em;
  transform-origin: 50% bottom 0;
}

.rrui__expandable__close {
  /*
	Set `display` to `block` for fullscreen `.rrui__expandable` design.
	display : block;
	*/
  display: none;
}

.rrui__expandable-list--left-aligned {
  left: 0;
}

.rrui__expandable-list--right-aligned {
  right: 0;
}

.rrui__options-list--left-aligned {
  left: -0.9rem;
}

.rrui__options-list--right-aligned {
  right: -0.9rem;
}

/* Styles are from Material UI. */
/* https://material-ui.com/demos/expansion-panels/ */
.rrui__expansion-panel {
  background-color: #ffffff;
}

.rrui__expansion-panel--expanded {
  /* margin: 16px 0; */
}

/*
.rrui__expansion-panel:before
{
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	content: "";
	opacity: 1;
	position: absolute;
	transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
	background-color: ;
}

.rrui__expansion-panel--expanded:before
{
	opacity: 0;
}
*/
.rrui__expansion-panel__header {
  position: relative;
  width: 100%;
  height: 2.4rem;
  transition: height 210ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: normal;
  text-align: left;
}

.rrui__expansion-panel__header--expanded {
  height: 3.0rem;
}

.rrui__expansion-panel__header--toggle-icon-end {
  background-color: #f3f3f3;
}

.rrui__expansion-panel__header--toggle-icon-end:focus {
  box-shadow: inset 0 0 0 1px #cacaca;
}

/* CSS select specificity is to support <Collapsible/>s inside <Collapsible/>s. */
.rrui__expansion-panel__header--toggle-icon-start:focus > .rrui__expansion-panel__heading {
  padding-bottom: 0.15em;
  border-bottom: 1px solid #03b2cb;
}

/* CSS select specificity is to support <Collapsible/>s inside <Collapsible/>s. */
.rrui__expansion-panel__header--toggle-icon-start:active > .rrui__expansion-panel__heading {
  border-bottom: 1px solid #2bd7f0;
}

.rrui__expansion-panel__header--toggle-icon-start.rrui__expansion-panel__header--expanded {
  height: 2.4rem;
}

.rrui__expansion-panel__content-wrapper {
  overflow: hidden;
  transition: height 210ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rrui__expansion-panel__header,
.rrui__expansion-panel__content {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.rrui__expansion-panel__content {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.rrui__expansion-panel__icon {
  position: absolute;
  top: 50%;
  width: 0.6rem;
  transition: transform 210ms cubic-bezier(0.4, 0, 0.2, 1);
}

.rrui__expansion-panel__icon--end {
  right: 1.2rem;
  transform: translateY(-50%) rotate(0deg);
}

.rrui__expansion-panel__icon--expanded.rrui__expansion-panel__icon--end {
  transform: translateY(-50%) rotate(180deg);
}

.rrui__expansion-panel__icon--start {
  left: 0;
  margin-right: 0.6rem;
  transform: translateY(-50%) rotate(-90deg);
}

.rrui__expansion-panel__icon--expanded.rrui__expansion-panel__icon--start {
  transform: translateY(-50%) rotate(0deg);
}

.rrui__file-upload__area {
  cursor: pointer;
}

.rrui__file-upload__area--disabled {
  pointer-events: none;
}

.rrui__form {
  /* Chrome adds margin-bottom for all <form/>s for some weird reason */
  margin-bottom: 0;
}

.rrui__form__actions {
  margin-top: 2.4rem;
  /* Right alignment */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.rrui__form__actions--left-right {
  justify-content: space-between;
}

.rrui__form__actions .rrui__button {
  margin-right: 2.4rem;
}

.rrui__form__actions .rrui__button:last-child {
  margin-right: 0;
}

.rrui__form__field {
  margin-bottom: 1.2rem;
}

.rrui__form__error:empty {
  display: none;
}

.rrui__input {
  /* `position: relative` is for the floating label absolute positioning */
  position: relative;
}

.rrui__input,
.rrui__input-label {
  height: 1.8rem;
  font-size: inherit;
}

/* `.rrui__input:not(.rrui__input--multiline)`
   would result in issues with this CSS selector being
   too specific and therefore taking higher priority */
.rrui__input--multiline {
  height: auto;
}

/*
For some reason web browsers size `<input/>`s to be wider
than 100% of the parent if the parent is small enough.
*/
.rrui__input-element {
  max-width: 100%;
}

.rrui__input-error {
  margin-top: 0.6rem;
  color: #d30f00;
}

.rrui__input-field {
  border-radius: 0;
  /* Some web browsers add <input/> padding by default */
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

/* Overrides Chrome autofill yellow background color. */
.rrui__input-field:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset;
}

/* Overrides Chrome autofill yellow background color (when `<TextInput/>` is focused). */
.rrui__input-field:focus:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset;
}

/* Overrides Chrome autofill yellow background color (when `<TextInput/>` is invalid). */
.rrui__input-field--invalid:-webkit-autofill,
.rrui__input-field--invalid:focus:-webkit-autofill {
  box-shadow: 0 0 0 1000px #ffffff inset;
}

/* For `<TextInput/>` and alike. */
.rrui__input-field,
.rrui__select__button {
  /* Stretches the inputs to full column width by default. */
  /* Because everyone uses CSS grids today. */
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  background-color: #ffffff;
  border-radius: 0;
}

/* For `<TextInput/>` and alike. */
.rrui__input-field,
.rrui__select__button,
.rrui__select__native {
  border-width: 0;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: #cacaca;
  transition: border 0.1s;
}

/* For `<TextInput/>` and alike. */
.rrui__input-field:focus,
.rrui__select__button:focus,
.rrui__select__native:focus + .rrui__select__button,
.rrui__select__native:focus {
  border-color: #03b2cb;
  background-color: #ffffff;
}

/* For `<TextInput/>` and alike. */
.rrui__input-field--invalid,
.rrui__input-field--invalid:focus,
.rrui__select__button--invalid,
.rrui__select__button--invalid:focus,
.rrui__select__native--invalid:focus + .rrui__select__button,
.rrui__select__native--invalid,
.rrui__select__native--invalid:focus {
  border-color: #d30f00;
  background-color: #ffffff;
}

.rrui__input-field {
  height: 100%;
  font-size: inherit;
  box-sizing: border-box;
}

/* Resets height back to 100% for multiline text input */
.rrui__input-field--multiline {
  height: auto;
  resize: none;
}

/* For `<TextInput/>` and alike. */
.rrui__input-field--disabled,
.rrui__select__button--disabled {
  /* "pointer-events" prevents "cursor: wait" from working. */
  pointer-events: none;
  /* cursor : default; */
  background-color: #ffffff;
}

.rrui__select__native[disabled] {
  /* "pointer-events" prevents "cursor: wait" from working. */
  pointer-events: none;
  /* cursor : default; */
}

.rrui__input-field__icon {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  pointer-events: none;
  color: #888888;
}

.rrui__input-field--with-icon {
  padding-left: 1.35rem;
}

.rrui__input-label {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: inherit;
  user-select: none;
  pointer-events: none;
  /*
	When changing this label color
	one could also change "input" and "textarea" placeholder color
	if using `placeholder` property.
	Changing `:placeholder` color is not widely supported though.
	*/
  color: #888888;
  transform: scale(0.8) translateY(-70%);
  transform-origin: left top;
  transition: color 0.1s ease-out, transform 450ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Focused input label. */
/* For `<Select native={false}/>` (default). */
.rrui__select__native:focus + .rrui__select__button + .rrui__input-label,
.rrui__select__native:focus + .rrui__input-label,
.rrui__input-element:focus + .rrui__input-label {
  color: #03b2cb;
}

.rrui__list {
  margin: 0;
  padding-left: 0;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  overflow-y: auto;
  background-color: #ffffff;
  color: #000000;
  list-style-type: none;
  overflow-x: hidden;
  box-sizing: border-box;
}

.rrui__list__item {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  /*
	This side padding is also connected to
	`.rrui__select__options--left-aligned`'s `left`,
	`.rrui__select__options--right-aligned`'s `right`
	and `.rrui__select__options`'s `min-width`.
	*/
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: inherit;
  box-sizing: border-box;
  text-align: left;
  white-space: nowrap;
}

.rrui__list__item:hover {
  background-color: #f3f3f3;
  color: #000000;
}

.rrui__list__item:active {
  background-color: #03b2cb;
  color: #ffffff;
}

.rrui__list__item--button {
  height: 2.4rem;
}

.rrui__list__item--divider {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  pointer-events: none;
}

.rrui__list__item--focus {
  background-color: #f3f3f3;
  color: #000000;
}

.rrui__list__item--selected,
.rrui__list__item--selected:hover {
  background-color: #03b2cb;
  color: #ffffff;
}

.rrui__list__item-icon {
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.rrui__list__item--disabled {
  /* "pointer-events" prevents "cursor: wait" from working */
  pointer-events: none;
}

.rrui__list__items--scroll {
  /* https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/ */
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.rrui__menu {
  /* Usually menu toggler is not 100% wide, so it makes sense. */
  display: inline-block;
  position: relative;
}

.rrui__menu .rrui__expandable-list {
  width: auto;
}

.rrui__menu .rrui__list__item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.rrui__menu .rrui__list__item--divider {
  padding-left: 0;
  padding-right: 0;
}

.rrui__menu-button {
  position: relative;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0.3rem;
  margin: -0.3rem;
  line-height: 0;
  color: #000000;
  /* This CSS rule can be removed if .rrui__button-reset gets it. */
  box-sizing: border-box;
}

/*
.rrui__menu-button:active
{
	color : #03b2cb);
}
*/
.rrui__menu-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.rrui__menu-icon__bar {
  width: 100%;
  background-color: currentColor;
  position: absolute;
  height: 2px;
  border-radius: 1px;
  /* calc(var(2px) / 2); */
  transform-origin: 50% 50%;
}

.rrui__menu-icon--expanded .rrui__menu-icon__bar {
  width: 100%;
  top: calc((100% - 2px) / 2);
  transition: width 125ms 0s, top 125ms 0s, transform 125ms 125ms;
}

.rrui__menu-icon--expanded .rrui__menu-icon__bar:nth-child(1),
.rrui__menu-icon--expanded .rrui__menu-icon__bar:nth-child(2) {
  transform: rotate(-45deg);
}

.rrui__menu-icon--expanded .rrui__menu-icon__bar:nth-child(3) {
  transform: rotate(45deg);
}

.rrui__menu-icon--collapsed .rrui__menu-icon__bar {
  transition: transform 125ms 0s, top 125ms 125ms, width 125ms 125ms;
  transform: rotate(0);
}

.rrui__menu-icon--collapsed .rrui__menu-icon__bar:nth-child(1) {
  top: 17%;
}

.rrui__menu-icon--collapsed .rrui__menu-icon__bar:nth-child(2) {
  top: calc((100% - 2px) / 2);
}

.rrui__menu-icon--collapsed .rrui__menu-icon__bar:nth-child(3) {
  top: calc(83% - 2px);
}

/*===========================================================
= `react-modal`                                             =
===========================================================*/
/*
when changing css transition times here
also change `default_close_timeout` in ./Modal.js accordingly
*/
/* Could have used `opacity` transition on `.ReactModal__Overlay`
   but it introduced a bug in Chrome: the fixed Overlay shriked vertically
   while having its opacity animated at the same time as the Content being scaled */
.ReactModal__Overlay {
  background-color: transparent;
  /* "auto" introduces a vertical scrollbar when "bouncing" (animation) */
  /* overflow: auto; */
  overflow: hidden;
}

.ReactModal__Overlay--after-open {
  background-color: rgba(0, 0, 0, 0.25);
}

/* This rule is required for closing animation */
.ReactModal__Overlay--before-close {
  background-color: transparent;
}

.ReactModal__Overlay--after-open {
  transition: background-color 300ms ease-out;
}

.ReactModal__Overlay--before-close {
  transition: background-color 100ms ease-out;
}

.rrui__modal__contents {
  opacity: 0;
  /*
	Scaling `<Modal/>` down on appear looks cool
	but it also can cause scrollbars to appear
	due to overflow which is a weird `scale()` behaviour.
	Those scrollbars alter window width resulting in
	`<Modal/>` positioning glitches (while centering itself).
	Therefore not using `scale()`s above `1`, only downscaling.
	transform  : scale(1.07);
	*/
  transform: scale(0.95);
  transition: transform 100ms ease-out, opacity 100ms ease-out;
}

.ReactModal__Content--after-open .rrui__modal__contents {
  opacity: 1;
  transform: none;
}

/* This rule is required for closing animation */
.ReactModal__Content--before-close .rrui__modal__contents {
  opacity: 0;
  transform: scale(0.95);
}

/*
The extra opacity animation on `<Modal/>` contents
is used to prevent clutter on background while the modal fades in/out.
*/
.rrui__modal__contents-body {
  opacity: 0;
}

.ReactModal__Content--after-open .rrui__modal__contents-body {
  opacity: 1;
  transition: opacity 100ms ease-out;
}

.ReactModal__Content--before-close .rrui__modal__contents-body {
  opacity: 0;
  transition: opacity 80ms ease-out;
}

/* Hides `react-modal` scrollbar when closing the modal */
.ReactModal__Overlay--before-close {
  overflow: hidden;
}

/*
While this would disable page scrolling when modal is presented,
it would introduce page width jumps.
.ReactModal__Body--open
{
	height: 100%;
	overflow: hidden;
}
*/
/*==========================================================
= `<Modal/>`                                               =
===========================================================*/
/*
Make sure to add `.rrui__fixed-full-width` CSS class
to all full-width `position: fixed` elements.
Such elements must not be `width: 100%`
but rather `width: auto` or `left: 0; right: 0;`.
*/
.rrui__fixed-full-width {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
}

.rrui__modal__overlay {
  /* Horizontal centering */
  display: flex;
  justify-content: center;
}

.rrui__modal__overlay--fullscreen {
  /* `display: flex` results in a weird content clipping bug in fullscreen mode
	   because of `justify-content: center` on the container */
  display: block;
  background-color: #ffffff;
}

.rrui__modal__overlay--hidden {
  display: none;
}

.rrui__modal__overlay--busy {
  cursor: wait;
}

.rrui__modal__container {
  /* Centers everything vertically */
  min-height: 100%;
  /* Using `inline-flex` here so that it doesn't
	   stretch to the whole overlay width */
  display: inline-flex;
  flex-direction: column;
}

.rrui__modal__container--fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rrui__modal__close:focus {
  background-color: #f3f3f3;
  border-radius: 50%;
}

.rrui__modal__close--busy {
  cursor: wait;
}

.rrui__modal__contents {
  /* So that modal content won't neccessarily
	   stretch horizontally to the full width of the screen */
  display: inline-block;
  /* Modal content shouldn't stretch vertically */
  flex-grow: 0;
  /* Modal content will contract vertically */
  flex-shrink: 1;
  flex-basis: auto;
  border-radius: 0.2rem;
  background-color: #ffffff;
  color: #000000;
}

.rrui__modal__contents--fullscreen {
  /* Completely cover the screen */
  border-radius: 0;
}

.rrui__modal__vertical-margin {
  /* Perhaps "width : 100%" was needed for it to work properly */
  width: 100%;
  /* Vertical padding won't ever shrink below the minimum size */
  flex-shrink: 0;
  flex-basis: 3%;
}

.rrui__modal__vertical-margin--top {
  flex-grow: 2;
}

.rrui__modal__vertical-margin--bottom {
  flex-grow: 5;
}

.rrui__modal__vertical-margin--fullscreen {
  display: none;
}

.rrui__modal--could-not-close-because-busy {
  animation: bounce_z 0.6s;
  transform: translate3d(0, 0, 0);
}

/* https://daneden.github.io/animate.css/ */
/* https://github.com/daneden/animate.css/blob/master/source/bouncing_entrances/bounceIn.css */
@keyframes bounce_z {
  from, 25%, 47%, 72%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale3d(1, 1, 1);
  }
  25% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  47% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  72% {
    transform: scale3d(0.995, 0.995, 0.995);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.rrui__modal__content .rrui__form__error {
  margin-bottom: 0;
}

/* Fullscreen `<Modal/>` animation tweaking */
.rrui__modal__overlay--fullscreen:not(.ReactModal__Overlay--after-open),
.rrui__modal__overlay--fullscreen.ReactModal__Overlay--before-close {
  background-color: transparent;
}

.rrui__modal__overlay--fullscreen {
  transition: background-color 100ms ease-out;
}

.rrui__modal__overlay--fullscreen .rrui__modal__contents {
  background-color: transparent;
}

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

.rrui__modal__title,
.rrui__modal__actions,
.rrui__modal__content {
  /* Using `margin` instead of `padding` here
    to leverage the "margin collapse" CSS feature. */
  margin: 1.8rem;
}

.rrui__modal__actions {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.rrui__modal__close {
  /* Prevents `<Modal.Title/>` overlapping with `<Close/>` padding. */
  margin-left: 0;
  /* Prevents the close button from being stretched vertically. */
  line-height: 0;
}

.rrui__modal__content--close-button,
.rrui__modal__title--close-button {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rrui__scrollable {
  /* https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements/ */
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.rrui__select {
  /* This is for `.rrui__select__options` to be positioned
	   correctly relative to the `<Select/>` itself. */
  position: relative;
  user-select: none;
}

.rrui__select .rrui__options-list {
  /*
	`<Select/>` options text should be at least fully visible.
	At the same time `<Select/>` options should stretch themselves
	horizontally to the width of the containing column (when using grid layout).
	*/
  width: calc(100% + 1.8rem);
  /*
	`margin-top` is constituted by:
	- `.rrui__select__options` `padding-top`.
	- `.rrui__input` `height`.
	- half of the difference between `.rrui__select__option`'s `height`/`line-height` and `.rrui__input` `height`.
	*/
  margin-top: 0;
}

.rrui__select__button {
  height: 100%;
  box-sizing: border-box;
  color: inherit;
  /* Not introducing an animation on `.rrui__select__option`
	   because it would introduce a little clutter due to
	   focused option animation in autocomplete mode */
  transition: color 30ms ease-out;
  /* Because Chrome adds `text-align: center` for all buttons */
  text-align: left;
}

.rrui__select__button--expanded {
  color: #03b2cb;
}

.rrui__select__button--empty .rrui__select__selected-label {
  color: #888888;
}

/* For `<Select native={false}/>` (default). */
.rrui__select__native:active + .rrui__select__button .rrui__select__selected-label,
.rrui__select__native:active + .rrui__select__button .rrui__select__arrow,
.rrui__select__native:active + .rrui__input-label {
  color: #03b2cb;
}

.rrui__select__selected-content {
  display: flex;
  align-items: center;
}

.rrui__select__selected-label {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rrui__select .rrui__ellipsis {
  position: absolute;
  right: 0.2rem;
  top: calc(50% - 0.1rem);
  pointer-events: none;
}

.rrui__select__arrow {
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
  margin-top: 0.1em;
  color: var(--link-color);
  border-width: 0.35em 0.22em 0 0.22em;
  border-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
}

.rrui__select--compact {
  /* Reverts `width: 100%` set at the top of this file */
  width: auto;
  /* If it's `compact` then it's most likely inlined */
  display: inline-flex;
  align-items: center;
}

.rrui__select--compact .rrui__expandable-list {
  width: auto;
}

/* Stretches the inputs to full column width by default. */
/* Because everyone uses CSS grids today. */
.rrui__select__button,
.rrui__select__native {
  width: 100%;
}

.rrui__select__native {
  height: 100%;
  cursor: pointer;
}

/* Something from stackoverflow. */
.rrui__select__native-option--divider {
  font-size: 1px;
  background: currentColor;
}

/* ChromeVox has a bug where `opacity: 0` elements are ignored. */
/* https://github.com/michalsnik/aos/issues/397 */
/* opacity  : 0.001; */
.rrui__select__native--overlay {
  position: absolute;
  /* `z-index` caused a bug when select `<button/>`
	    would be above other content on a page.
	    For example, when there were two `<Select/>`s
	    one below another then mouse down events
	    from the options list of the top select
	    would "go through" to the bottom select
	    expanding it. */
  /* z-index  : 1; */
  opacity: 0;
}

.rrui__select__toggler {
  display: inline-block;
}

.rrui__shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.rrui__slideout-menu {
  position: fixed;
  z-index: 100;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  /* `box-sizing` is for padding to not glitch when overflown vertically. */
  box-sizing: border-box;
  overflow-y: auto;
  opacity: 0.9;
  background-color: #000000;
  color: #ffffff;
  transform: translate3d(-100%, 0, 0);
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.rrui__slideout-menu--fullscreen {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rrui__slideout-menu--expanded {
  box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.4);
}

.rrui__slideout-menu--left {
  left: 0;
  top: 0;
  bottom: 0;
  transform: translate3d(-100%, 0, 0);
}

.rrui__slideout-menu--left.rrui__slideout-menu--fullscreen {
  right: 0;
}

.rrui__slideout-menu--left.rrui__slideout-menu--expanded {
  transform: translate3d(0, 0, 0);
}

.rrui__slideout-menu--right {
  right: 0;
  top: 0;
  bottom: 0;
  transform: translate3d(100%, 0, 0);
}

.rrui__slideout-menu--right.rrui__slideout-menu--fullscreen {
  left: 0;
}

.rrui__slideout-menu--right.rrui__slideout-menu--expanded {
  transform: translate3d(0, 0, 0);
}

.rrui__slideout-menu--top {
  left: 0;
  right: 0;
  top: 0;
  transform: translate3d(0, -100%, 0);
}

.rrui__slideout-menu--top.rrui__slideout-menu--fullscreen {
  bottom: 0;
}

.rrui__slideout-menu--top.rrui__slideout-menu--expanded {
  transform: translate3d(0, 0, 0);
}

.rrui__slideout-menu--bottom {
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 100%, 0);
}

.rrui__slideout-menu--bottom.rrui__slideout-menu--fullscreen {
  top: 0;
}

.rrui__slideout-menu--bottom.rrui__slideout-menu--expanded {
  transform: translate3d(0, 0, 0);
}

.rrui__slideout-menu__item {
  display: block;
  height: 2.4rem;
  line-height: 2.4rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  opacity: 0;
  transition: opacity 110ms ease-out;
}

.rrui__slideout-menu--expanded .rrui__slideout-menu__item {
  opacity: 1;
}

.rrui__slideout-menu__item:hover {
  text-decoration: none;
}

.rrui__slideout-menu__item:active {
  background-color: #03b2cb;
  color: #ffffff;
}

.rrui__slideout-menu--fullscreen .rrui__slideout-menu__item {
  text-align: center;
}

.rrui__snackbar__container {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  margin: 1.2rem;
  transition: all 225ms cubic-bezier(0, 0, 0.2, 1);
  transform: translateY(0);
  visibility: visible;
}

.rrui__snackbar__container--hidden {
  transition: all 195ms cubic-bezier(0.4, 0, 0.6, 1);
  visibility: hidden;
}

.rrui__snackbar {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 0;
  pointer-events: auto;
  background: #000000;
  color: #ffffff;
  border-radius: 0.1rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  min-height: 2.4rem;
}

.rrui__snackbar__text {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  flex: 1;
  /*
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	*/
}

.rrui__snackbar__count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  min-width: 1.4rem;
  height: 1.4rem;
  padding-left: 0.3em;
  padding-right: 0.3em;
  transform: translateX(50%) translateY(50%);
  border: 1px solid #ffffff;
  border-radius: 0.7rem;
  background-color: #000000;
  color: #ffffff;
  font-weight: lighter;
  pointer-events: none;
}

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

.rrui__snackbar__action {
  font-size: 95%;
  border-radius: 0.5em;
  text-transform: uppercase;
  color: #03b2cb;
}

.rrui__snackbar__action:active {
  color: #2bd7f0;
}

.rrui__snackbar__action,
.rrui__snackbar__close {
  margin-left: 0.6rem;
  margin-right: -0.5em;
  padding: 0.5em;
}

.rrui__snackbar__close {
  border-radius: 50%;
  color: inherit;
}

.rrui__snackbar__close:hover {
  color: #f3f3f3;
}

.rrui__snackbar__close:active {
  color: #cacaca;
}

.rrui__snackbar__close-icon {
  width: 0.75em;
  height: 0.75em;
}

.rrui__switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.rrui__switch--disabled {
  cursor: default;
}

.rrui__switch--label {
  display: inline-flex;
  align-items: center;
}

.rrui__switch__switch {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 0;
}

.rrui__switch__input {
  left: -30%;
  right: -30%;
  width: 160%;
  height: 180%;
  cursor: pointer;
}

.rrui__switch__label--left {
  margin-right: 0.6rem;
}

.rrui__switch__label--right {
  margin-left: 0.6rem;
}

.rrui__switch__groove {
  position: relative;
  display: inline-block;
  width: 1.65em;
  height: 1em;
  color: #03b2cb;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 0.0625em rgba(0, 0, 0, 0.16);
  border-radius: 0.5em;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.98);
}

.rrui__switch__input:focus + .rrui__switch__groove {
  box-shadow: inset 0 0 0 0.0625em rgba(0, 0, 0, 0.16), 0 0 0 0 transparent;
}

.rrui__switch__groove--on {
  box-shadow: inset 0 0 0 0.73em currentColor;
}

.rrui__switch__input:focus + .rrui__switch__groove--on {
  box-shadow: inset 0 0 0 0.73em currentColor, 0 0 0 0 transparent;
}

.rrui__switch__knob {
  position: absolute;
  width: 0.875em;
  height: 0.875em;
  border-radius: 0.4375em;
  top: 0.0625em;
  left: 0.0625em;
  background-color: #ffffff;
  box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.3), inset 0 0 0 0.03em transparent, 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease-out;
}

.rrui__switch__input:focus + .rrui__switch__groove + .rrui__switch__knob {
  box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.3), inset 0 0 0 0.03em #03b2cb, 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
}

.rrui__switch__knob--on {
  left: 0.7125em;
}

.rrui__switcher {
  position: relative;
  white-space: nowrap;
}

.rrui__switcher .rrui__input {
  display: flex;
}

.rrui__switcher__option {
  flex: 1;
  height: 100%;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  background-color: transparent;
  color: #03b2cb;
  border: 1px solid #03b2cb;
  border-radius: 0.2rem;
  transition: all 50ms ease-out;
}

.rrui__switcher__option--first {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.rrui__switcher__option--last {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rrui__switcher__option--middle {
  border-radius: 0;
  border-right: none;
}

.rrui__switcher__option:focus:not(:active):not(.rrui__switcher__option--selected) {
  color: #03b2cb;
}

.rrui__switcher__option:active {
  color: #ffffff;
  background-color: #2bd7f0;
  /*border-color     : transparent;*/
  transition: none;
}

.rrui__switcher__option--selected {
  color: #ffffff;
  background-color: #03b2cb;
  /*border-color     : #03b2cb;*/
}

.rrui__switcher__option {
  cursor: pointer;
}

.rrui__switcher__option--disabled {
  cursor: default;
}

.rrui__text-input__label--invalid {
  color: #d30f00;
}

.rrui__input-field:not(:focus) + .rrui__text-input__label--placeholder {
  transform: translateX(0rem) translateY(0) scale(1);
  /* Introducing a return animation delay */
  /* Because when a user clicks/taps on an option */
  /* Then the input loses focus */
  /* Causing the return animation to start playing */
  /* and then revert back as the click finishes */
  /* returning focus to the input. */
  transition-delay: 100ms;
}

/* Set the default height of multiline `<TextInput/>`s. */
.rrui__input-field--multiline {
  height: 4.2rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-left: 0;
  padding-right: 0;
}

/* Multiline `<TextInput/>`'s label positioning. */
/* Must be same as `padding-top`/`padding-bottom`. */
.rrui__text-input__label--multiline {
  top: 0.3rem;
}

.rrui__tooltip {
  display: flex;
  align-items: center;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  height: 2.4rem;
  color: #ffffff;
  background-color: #000000;
  border-radius: 0.1rem;
  cursor: default;
}

.rrui__tooltip {
  opacity: 0;
}

.rrui__tooltip--after-show {
  opacity: 1;
}

/* `--before-hide` must be placed after `--after-show`. */
.rrui__tooltip--before-hide {
  opacity: 0;
}

.rrui__tooltip--top {
  transform: translateY(-0.5em);
}

.rrui__tooltip--top.rrui__tooltip--after-show {
  transform: translateY(-0.2em);
}

/* `--before-hide` must be placed after `--after-show`. */
.rrui__tooltip--top.rrui__tooltip--before-hide {
  transform: translateY(-0.5em);
}

.rrui__tooltip--left {
  transform: translateX(-0.5em);
}

.rrui__tooltip--left.rrui__tooltip--after-show {
  transform: translateX(-0.2em);
}

/* `--before-hide` must be placed after `--after-show`. */
.rrui__tooltip--left.rrui__tooltip--before-hide {
  transform: translateX(-0.5em);
}

.rrui__tooltip--bottom {
  transform: translateY(0.5em);
}

.rrui__tooltip--bottom.rrui__tooltip--after-show {
  transform: translateY(0.2em);
}

/* `--before-hide` must be placed after `--after-show`. */
.rrui__tooltip--bottom.rrui__tooltip--before-hide {
  transform: translateY(0.5em);
}

.rrui__tooltip--right {
  transform: translateX(0.5em);
}

.rrui__tooltip--right.rrui__tooltip--after-show {
  transform: translateX(0.2em);
}

/* `--before-hide` must be placed after `--after-show`. */
.rrui__tooltip--right.rrui__tooltip--before-hide {
  transform: translateX(0.5em);
}

.rrui__tooltip--after-show,
.rrui__tooltip--before-hide {
  transition: opacity 120ms, transform 120ms;
}

/* Prevents entering text selection mode
   on mobile devices when tapping down and holding */
.rrui__tooltip__target {
  user-select: none;
}

/*!
 * Styles derived from:
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */.mdf-container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width: 576px){.mdf-container{max-width:540px}}@media(min-width: 768px){.mdf-container{max-width:720px}}@media(min-width: 992px){.mdf-container{max-width:960px}}@media(min-width: 1200px){.mdf-container{max-width:1140px}}.mdf-container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.mdf-row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.mdf-no-gutters{margin-right:0;margin-left:0}.mdf-no-gutters>.mdf-col,.mdf-no-gutters>[class*=mdf-col-]{padding-right:0;padding-left:0}.mdf-col-1,.mdf-col-2,.mdf-col-3,.mdf-col-4,.mdf-col-5,.mdf-col-6,.mdf-col-7,.mdf-col-8,.mdf-col-9,.mdf-col-10,.mdf-col-11,.mdf-col-12,.mdf-col,.mdf-col-auto,.mdf-col-sm-1,.mdf-col-sm-2,.mdf-col-sm-3,.mdf-col-sm-4,.mdf-col-sm-5,.mdf-col-sm-6,.mdf-col-sm-7,.mdf-col-sm-8,.mdf-col-sm-9,.mdf-col-sm-10,.mdf-col-sm-11,.mdf-col-sm-12,.mdf-col-sm,.mdf-col-sm-auto,.mdf-col-md-1,.mdf-col-md-2,.mdf-col-md-3,.mdf-col-md-4,.mdf-col-md-5,.mdf-col-md-6,.mdf-col-md-7,.mdf-col-md-8,.mdf-col-md-9,.mdf-col-md-10,.mdf-col-md-11,.mdf-col-md-12,.mdf-col-md,.mdf-col-md-auto,.mdf-col-lg-1,.mdf-col-lg-2,.mdf-col-lg-3,.mdf-col-lg-4,.mdf-col-lg-5,.mdf-col-lg-6,.mdf-col-lg-7,.mdf-col-lg-8,.mdf-col-lg-9,.mdf-col-lg-10,.mdf-col-lg-11,.mdf-col-lg-12,.mdf-col-lg,.mdf-col-lg-auto,.mdf-col-xl-1,.mdf-col-xl-2,.mdf-col-xl-3,.mdf-col-xl-4,.mdf-col-xl-5,.mdf-col-xl-6,.mdf-col-xl-7,.mdf-col-xl-8,.mdf-col-xl-9,.mdf-col-xl-10,.mdf-col-xl-11,.mdf-col-xl-12,.mdf-col-xl,.mdf-col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.mdf-col{flex-basis:0;flex-grow:1;max-width:100%}.mdf-col-auto{flex:0 0 auto;width:auto;max-width:100%}.mdf-col-1{flex:0 0 8.333333%;max-width:8.333333%}.mdf-col-2{flex:0 0 16.666667%;max-width:16.666667%}.mdf-col-3{flex:0 0 25%;max-width:25%}.mdf-col-4{flex:0 0 33.333333%;max-width:33.333333%}.mdf-col-5{flex:0 0 41.666667%;max-width:41.666667%}.mdf-col-6{flex:0 0 50%;max-width:50%}.mdf-col-7{flex:0 0 58.333333%;max-width:58.333333%}.mdf-col-8{flex:0 0 66.666667%;max-width:66.666667%}.mdf-col-9{flex:0 0 75%;max-width:75%}.mdf-col-10{flex:0 0 83.333333%;max-width:83.333333%}.mdf-col-11{flex:0 0 91.666667%;max-width:91.666667%}.mdf-col-12{flex:0 0 100%;max-width:100%}.mdf-order-first{order:-1}.mdf-order-last{order:13}.mdf-order-0{order:0}.mdf-order-1{order:1}.mdf-order-2{order:2}.mdf-order-3{order:3}.mdf-order-4{order:4}.mdf-order-5{order:5}.mdf-order-6{order:6}.mdf-order-7{order:7}.mdf-order-8{order:8}.mdf-order-9{order:9}.mdf-order-10{order:10}.mdf-order-11{order:11}.mdf-order-12{order:12}.mdf-offset-1{margin-left:8.333333%}.mdf-offset-2{margin-left:16.666667%}.mdf-offset-3{margin-left:25%}.mdf-offset-4{margin-left:33.333333%}.mdf-offset-5{margin-left:41.666667%}.mdf-offset-6{margin-left:50%}.mdf-offset-7{margin-left:58.333333%}.mdf-offset-8{margin-left:66.666667%}.mdf-offset-9{margin-left:75%}.mdf-offset-10{margin-left:83.333333%}.mdf-offset-11{margin-left:91.666667%}@media(min-width: 576px){.mdf-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.mdf-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.mdf-col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}.mdf-col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}.mdf-col-sm-3{flex:0 0 25%;max-width:25%}.mdf-col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}.mdf-col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}.mdf-col-sm-6{flex:0 0 50%;max-width:50%}.mdf-col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}.mdf-col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}.mdf-col-sm-9{flex:0 0 75%;max-width:75%}.mdf-col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}.mdf-col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}.mdf-col-sm-12{flex:0 0 100%;max-width:100%}.mdf-order-sm-first{order:-1}.mdf-order-sm-last{order:13}.mdf-order-sm-0{order:0}.mdf-order-sm-1{order:1}.mdf-order-sm-2{order:2}.mdf-order-sm-3{order:3}.mdf-order-sm-4{order:4}.mdf-order-sm-5{order:5}.mdf-order-sm-6{order:6}.mdf-order-sm-7{order:7}.mdf-order-sm-8{order:8}.mdf-order-sm-9{order:9}.mdf-order-sm-10{order:10}.mdf-order-sm-11{order:11}.mdf-order-sm-12{order:12}.mdf-offset-sm-0{margin-left:0}.mdf-offset-sm-1{margin-left:8.333333%}.mdf-offset-sm-2{margin-left:16.666667%}.mdf-offset-sm-3{margin-left:25%}.mdf-offset-sm-4{margin-left:33.333333%}.mdf-offset-sm-5{margin-left:41.666667%}.mdf-offset-sm-6{margin-left:50%}.mdf-offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.mdf-offset-sm-9{margin-left:75%}.mdf-offset-sm-10{margin-left:83.333333%}.mdf-offset-sm-11{margin-left:91.666667%}}@media(min-width: 768px){.mdf-col-md{flex-basis:0;flex-grow:1;max-width:100%}.mdf-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.mdf-col-md-1{flex:0 0 8.333333%;max-width:8.333333%}.mdf-col-md-2{flex:0 0 16.666667%;max-width:16.666667%}.mdf-col-md-3{flex:0 0 25%;max-width:25%}.mdf-col-md-4{flex:0 0 33.333333%;max-width:33.333333%}.mdf-col-md-5{flex:0 0 41.666667%;max-width:41.666667%}.mdf-col-md-6{flex:0 0 50%;max-width:50%}.mdf-col-md-7{flex:0 0 58.333333%;max-width:58.333333%}.mdf-col-md-8{flex:0 0 66.666667%;max-width:66.666667%}.mdf-col-md-9{flex:0 0 75%;max-width:75%}.mdf-col-md-10{flex:0 0 83.333333%;max-width:83.333333%}.mdf-col-md-11{flex:0 0 91.666667%;max-width:91.666667%}.mdf-col-md-12{flex:0 0 100%;max-width:100%}.mdf-order-md-first{order:-1}.mdf-order-md-last{order:13}.mdf-order-md-0{order:0}.mdf-order-md-1{order:1}.mdf-order-md-2{order:2}.mdf-order-md-3{order:3}.mdf-order-md-4{order:4}.mdf-order-md-5{order:5}.mdf-order-md-6{order:6}.mdf-order-md-7{order:7}.mdf-order-md-8{order:8}.mdf-order-md-9{order:9}.mdf-order-md-10{order:10}.mdf-order-md-11{order:11}.mdf-order-md-12{order:12}.mdf-offset-md-0{margin-left:0}.mdf-offset-md-1{margin-left:8.333333%}.mdf-offset-md-2{margin-left:16.666667%}.mdf-offset-md-3{margin-left:25%}.mdf-offset-md-4{margin-left:33.333333%}.mdf-offset-md-5{margin-left:41.666667%}.mdf-offset-md-6{margin-left:50%}.mdf-offset-md-7{margin-left:58.333333%}.mdf-offset-md-8{margin-left:66.666667%}.mdf-offset-md-9{margin-left:75%}.mdf-offset-md-10{margin-left:83.333333%}.mdf-offset-md-11{margin-left:91.666667%}}@media(min-width: 992px){.mdf-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.mdf-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.mdf-col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}.mdf-col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}.mdf-col-lg-3{flex:0 0 25%;max-width:25%}.mdf-col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}.mdf-col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}.mdf-col-lg-6{flex:0 0 50%;max-width:50%}.mdf-col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}.mdf-col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}.mdf-col-lg-9{flex:0 0 75%;max-width:75%}.mdf-col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}.mdf-col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}.mdf-col-lg-12{flex:0 0 100%;max-width:100%}.mdf-order-lg-first{order:-1}.mdf-order-lg-last{order:13}.mdf-order-lg-0{order:0}.mdf-order-lg-1{order:1}.mdf-order-lg-2{order:2}.mdf-order-lg-3{order:3}.mdf-order-lg-4{order:4}.mdf-order-lg-5{order:5}.mdf-order-lg-6{order:6}.mdf-order-lg-7{order:7}.mdf-order-lg-8{order:8}.mdf-order-lg-9{order:9}.mdf-order-lg-10{order:10}.mdf-order-lg-11{order:11}.mdf-order-lg-12{order:12}.mdf-offset-lg-0{margin-left:0}.mdf-offset-lg-1{margin-left:8.333333%}.mdf-offset-lg-2{margin-left:16.666667%}.mdf-offset-lg-3{margin-left:25%}.mdf-offset-lg-4{margin-left:33.333333%}.mdf-offset-lg-5{margin-left:41.666667%}.mdf-offset-lg-6{margin-left:50%}.mdf-offset-lg-7{margin-left:58.333333%}.mdf-offset-lg-8{margin-left:66.666667%}.mdf-offset-lg-9{margin-left:75%}.mdf-offset-lg-10{margin-left:83.333333%}.mdf-offset-lg-11{margin-left:91.666667%}}@media(min-width: 1200px){.mdf-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.mdf-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.mdf-col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}.mdf-col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}.mdf-col-xl-3{flex:0 0 25%;max-width:25%}.mdf-col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}.mdf-col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}.mdf-col-xl-6{flex:0 0 50%;max-width:50%}.mdf-col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}.mdf-col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}.mdf-col-xl-9{flex:0 0 75%;max-width:75%}.mdf-col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}.mdf-col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}.mdf-col-xl-12{flex:0 0 100%;max-width:100%}.mdf-order-xl-first{order:-1}.mdf-order-xl-last{order:13}.mdf-order-xl-0{order:0}.mdf-order-xl-1{order:1}.mdf-order-xl-2{order:2}.mdf-order-xl-3{order:3}.mdf-order-xl-4{order:4}.mdf-order-xl-5{order:5}.mdf-order-xl-6{order:6}.mdf-order-xl-7{order:7}.mdf-order-xl-8{order:8}.mdf-order-xl-9{order:9}.mdf-order-xl-10{order:10}.mdf-order-xl-11{order:11}.mdf-order-xl-12{order:12}.mdf-offset-xl-0{margin-left:0}.mdf-offset-xl-1{margin-left:8.333333%}.mdf-offset-xl-2{margin-left:16.666667%}.mdf-offset-xl-3{margin-left:25%}.mdf-offset-xl-4{margin-left:33.333333%}.mdf-offset-xl-5{margin-left:41.666667%}.mdf-offset-xl-6{margin-left:50%}.mdf-offset-xl-7{margin-left:58.333333%}.mdf-offset-xl-8{margin-left:66.666667%}.mdf-offset-xl-9{margin-left:75%}.mdf-offset-xl-10{margin-left:83.333333%}.mdf-offset-xl-11{margin-left:91.666667%}}.mdf-d-none{display:none !important}.mdf-d-inline{display:inline !important}.mdf-d-inline-block{display:inline-block !important}.mdf-d-block{display:block !important}.mdf-d-table{display:table !important}.mdf-d-table-row{display:table-row !important}.mdf-d-table-cell{display:table-cell !important}.mdf-d-flex{display:flex !important}.mdf-d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.mdf-d-sm-none{display:none !important}.mdf-d-sm-inline{display:inline !important}.mdf-d-sm-inline-block{display:inline-block !important}.mdf-d-sm-block{display:block !important}.mdf-d-sm-table{display:table !important}.mdf-d-sm-table-row{display:table-row !important}.mdf-d-sm-table-cell{display:table-cell !important}.mdf-d-sm-flex{display:flex !important}.mdf-d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.mdf-d-md-none{display:none !important}.mdf-d-md-inline{display:inline !important}.mdf-d-md-inline-block{display:inline-block !important}.mdf-d-md-block{display:block !important}.mdf-d-md-table{display:table !important}.mdf-d-md-table-row{display:table-row !important}.mdf-d-md-table-cell{display:table-cell !important}.mdf-d-md-flex{display:flex !important}.mdf-d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.mdf-d-lg-none{display:none !important}.mdf-d-lg-inline{display:inline !important}.mdf-d-lg-inline-block{display:inline-block !important}.mdf-d-lg-block{display:block !important}.mdf-d-lg-table{display:table !important}.mdf-d-lg-table-row{display:table-row !important}.mdf-d-lg-table-cell{display:table-cell !important}.mdf-d-lg-flex{display:flex !important}.mdf-d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.mdf-d-xl-none{display:none !important}.mdf-d-xl-inline{display:inline !important}.mdf-d-xl-inline-block{display:inline-block !important}.mdf-d-xl-block{display:block !important}.mdf-d-xl-table{display:table !important}.mdf-d-xl-table-row{display:table-row !important}.mdf-d-xl-table-cell{display:table-cell !important}.mdf-d-xl-flex{display:flex !important}.mdf-d-xl-inline-flex{display:inline-flex !important}}@media print{.mdf-d-print-none{display:none !important}.mdf-d-print-inline{display:inline !important}.mdf-d-print-inline-block{display:inline-block !important}.mdf-d-print-block{display:block !important}.mdf-d-print-table{display:table !important}.mdf-d-print-table-row{display:table-row !important}.mdf-d-print-table-cell{display:table-cell !important}.mdf-d-print-flex{display:flex !important}.mdf-d-print-inline-flex{display:inline-flex !important}}.mdf-flex-row{flex-direction:row !important}.mdf-flex-column{flex-direction:column !important}.mdf-flex-row-reverse{flex-direction:row-reverse !important}.mdf-flex-column-reverse{flex-direction:column-reverse !important}.mdf-flex-wrap{flex-wrap:wrap !important}.mdf-flex-nowrap{flex-wrap:nowrap !important}.mdf-flex-wrap-reverse{flex-wrap:wrap-reverse !important}.mdf-flex-fill{flex:1 1 auto !important}.mdf-flex-grow-0{flex-grow:0 !important}.mdf-flex-grow-1{flex-grow:1 !important}.mdf-flex-shrink-0{flex-shrink:0 !important}.mdf-flex-shrink-1{flex-shrink:1 !important}.mdf-justify-content-start{justify-content:flex-start !important}.mdf-justify-content-end{justify-content:flex-end !important}.mdf-justify-content-center{justify-content:center !important}.mdf-justify-content-between{justify-content:space-between !important}.mdf-justify-content-around{justify-content:space-around !important}.mdf-align-items-start{align-items:flex-start !important}.mdf-align-items-end{align-items:flex-end !important}.mdf-align-items-center{align-items:center !important}.mdf-align-items-baseline{align-items:baseline !important}.mdf-align-items-stretch{align-items:stretch !important}.mdf-align-content-start{align-content:flex-start !important}.mdf-align-content-end{align-content:flex-end !important}.mdf-align-content-center{align-content:center !important}.mdf-align-content-between{align-content:space-between !important}.mdf-align-content-around{align-content:space-around !important}.mdf-align-content-stretch{align-content:stretch !important}.mdf-align-self-auto{align-self:auto !important}.mdf-align-self-start{align-self:flex-start !important}.mdf-align-self-end{align-self:flex-end !important}.mdf-align-self-center{align-self:center !important}.mdf-align-self-baseline{align-self:baseline !important}.mdf-align-self-stretch{align-self:stretch !important}@media(min-width: 576px){.mdf-flex-sm-row{flex-direction:row !important}.mdf-flex-sm-column{flex-direction:column !important}.mdf-flex-sm-row-reverse{flex-direction:row-reverse !important}.mdf-flex-sm-column-reverse{flex-direction:column-reverse !important}.mdf-flex-sm-wrap{flex-wrap:wrap !important}.mdf-flex-sm-nowrap{flex-wrap:nowrap !important}.mdf-flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.mdf-flex-sm-fill{flex:1 1 auto !important}.mdf-flex-sm-grow-0{flex-grow:0 !important}.mdf-flex-sm-grow-1{flex-grow:1 !important}.mdf-flex-sm-shrink-0{flex-shrink:0 !important}.mdf-flex-sm-shrink-1{flex-shrink:1 !important}.mdf-justify-content-sm-start{justify-content:flex-start !important}.mdf-justify-content-sm-end{justify-content:flex-end !important}.mdf-justify-content-sm-center{justify-content:center !important}.mdf-justify-content-sm-between{justify-content:space-between !important}.mdf-justify-content-sm-around{justify-content:space-around !important}.mdf-align-items-sm-start{align-items:flex-start !important}.mdf-align-items-sm-end{align-items:flex-end !important}.mdf-align-items-sm-center{align-items:center !important}.mdf-align-items-sm-baseline{align-items:baseline !important}.mdf-align-items-sm-stretch{align-items:stretch !important}.mdf-align-content-sm-start{align-content:flex-start !important}.mdf-align-content-sm-end{align-content:flex-end !important}.mdf-align-content-sm-center{align-content:center !important}.mdf-align-content-sm-between{align-content:space-between !important}.mdf-align-content-sm-around{align-content:space-around !important}.mdf-align-content-sm-stretch{align-content:stretch !important}.mdf-align-self-sm-auto{align-self:auto !important}.mdf-align-self-sm-start{align-self:flex-start !important}.mdf-align-self-sm-end{align-self:flex-end !important}.mdf-align-self-sm-center{align-self:center !important}.mdf-align-self-sm-baseline{align-self:baseline !important}.mdf-align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 768px){.mdf-flex-md-row{flex-direction:row !important}.mdf-flex-md-column{flex-direction:column !important}.mdf-flex-md-row-reverse{flex-direction:row-reverse !important}.mdf-flex-md-column-reverse{flex-direction:column-reverse !important}.mdf-flex-md-wrap{flex-wrap:wrap !important}.mdf-flex-md-nowrap{flex-wrap:nowrap !important}.mdf-flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.mdf-flex-md-fill{flex:1 1 auto !important}.mdf-flex-md-grow-0{flex-grow:0 !important}.mdf-flex-md-grow-1{flex-grow:1 !important}.mdf-flex-md-shrink-0{flex-shrink:0 !important}.mdf-flex-md-shrink-1{flex-shrink:1 !important}.mdf-justify-content-md-start{justify-content:flex-start !important}.mdf-justify-content-md-end{justify-content:flex-end !important}.mdf-justify-content-md-center{justify-content:center !important}.mdf-justify-content-md-between{justify-content:space-between !important}.mdf-justify-content-md-around{justify-content:space-around !important}.mdf-align-items-md-start{align-items:flex-start !important}.mdf-align-items-md-end{align-items:flex-end !important}.mdf-align-items-md-center{align-items:center !important}.mdf-align-items-md-baseline{align-items:baseline !important}.mdf-align-items-md-stretch{align-items:stretch !important}.mdf-align-content-md-start{align-content:flex-start !important}.mdf-align-content-md-end{align-content:flex-end !important}.mdf-align-content-md-center{align-content:center !important}.mdf-align-content-md-between{align-content:space-between !important}.mdf-align-content-md-around{align-content:space-around !important}.mdf-align-content-md-stretch{align-content:stretch !important}.mdf-align-self-md-auto{align-self:auto !important}.mdf-align-self-md-start{align-self:flex-start !important}.mdf-align-self-md-end{align-self:flex-end !important}.mdf-align-self-md-center{align-self:center !important}.mdf-align-self-md-baseline{align-self:baseline !important}.mdf-align-self-md-stretch{align-self:stretch !important}}@media(min-width: 992px){.mdf-flex-lg-row{flex-direction:row !important}.mdf-flex-lg-column{flex-direction:column !important}.mdf-flex-lg-row-reverse{flex-direction:row-reverse !important}.mdf-flex-lg-column-reverse{flex-direction:column-reverse !important}.mdf-flex-lg-wrap{flex-wrap:wrap !important}.mdf-flex-lg-nowrap{flex-wrap:nowrap !important}.mdf-flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.mdf-flex-lg-fill{flex:1 1 auto !important}.mdf-flex-lg-grow-0{flex-grow:0 !important}.mdf-flex-lg-grow-1{flex-grow:1 !important}.mdf-flex-lg-shrink-0{flex-shrink:0 !important}.mdf-flex-lg-shrink-1{flex-shrink:1 !important}.mdf-justify-content-lg-start{justify-content:flex-start !important}.mdf-justify-content-lg-end{justify-content:flex-end !important}.mdf-justify-content-lg-center{justify-content:center !important}.mdf-justify-content-lg-between{justify-content:space-between !important}.mdf-justify-content-lg-around{justify-content:space-around !important}.mdf-align-items-lg-start{align-items:flex-start !important}.mdf-align-items-lg-end{align-items:flex-end !important}.mdf-align-items-lg-center{align-items:center !important}.mdf-align-items-lg-baseline{align-items:baseline !important}.mdf-align-items-lg-stretch{align-items:stretch !important}.mdf-align-content-lg-start{align-content:flex-start !important}.mdf-align-content-lg-end{align-content:flex-end !important}.mdf-align-content-lg-center{align-content:center !important}.mdf-align-content-lg-between{align-content:space-between !important}.mdf-align-content-lg-around{align-content:space-around !important}.mdf-align-content-lg-stretch{align-content:stretch !important}.mdf-align-self-lg-auto{align-self:auto !important}.mdf-align-self-lg-start{align-self:flex-start !important}.mdf-align-self-lg-end{align-self:flex-end !important}.mdf-align-self-lg-center{align-self:center !important}.mdf-align-self-lg-baseline{align-self:baseline !important}.mdf-align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1200px){.mdf-flex-xl-row{flex-direction:row !important}.mdf-flex-xl-column{flex-direction:column !important}.mdf-flex-xl-row-reverse{flex-direction:row-reverse !important}.mdf-flex-xl-column-reverse{flex-direction:column-reverse !important}.mdf-flex-xl-wrap{flex-wrap:wrap !important}.mdf-flex-xl-nowrap{flex-wrap:nowrap !important}.mdf-flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.mdf-flex-xl-fill{flex:1 1 auto !important}.mdf-flex-xl-grow-0{flex-grow:0 !important}.mdf-flex-xl-grow-1{flex-grow:1 !important}.mdf-flex-xl-shrink-0{flex-shrink:0 !important}.mdf-flex-xl-shrink-1{flex-shrink:1 !important}.mdf-justify-content-xl-start{justify-content:flex-start !important}.mdf-justify-content-xl-end{justify-content:flex-end !important}.mdf-justify-content-xl-center{justify-content:center !important}.mdf-justify-content-xl-between{justify-content:space-between !important}.mdf-justify-content-xl-around{justify-content:space-around !important}.mdf-align-items-xl-start{align-items:flex-start !important}.mdf-align-items-xl-end{align-items:flex-end !important}.mdf-align-items-xl-center{align-items:center !important}.mdf-align-items-xl-baseline{align-items:baseline !important}.mdf-align-items-xl-stretch{align-items:stretch !important}.mdf-align-content-xl-start{align-content:flex-start !important}.mdf-align-content-xl-end{align-content:flex-end !important}.mdf-align-content-xl-center{align-content:center !important}.mdf-align-content-xl-between{align-content:space-between !important}.mdf-align-content-xl-around{align-content:space-around !important}.mdf-align-content-xl-stretch{align-content:stretch !important}.mdf-align-self-xl-auto{align-self:auto !important}.mdf-align-self-xl-start{align-self:flex-start !important}.mdf-align-self-xl-end{align-self:flex-end !important}.mdf-align-self-xl-center{align-self:center !important}.mdf-align-self-xl-baseline{align-self:baseline !important}.mdf-align-self-xl-stretch{align-self:stretch !important}}.mdf-w-25{width:25% !important}.mdf-w-50{width:50% !important}.mdf-w-75{width:75% !important}.mdf-w-100{width:100% !important}.mdf-w-auto{width:auto !important}.mdf-h-25{height:25% !important}.mdf-h-50{height:50% !important}.mdf-h-75{height:75% !important}.mdf-h-100{height:100% !important}.mdf-h-auto{height:auto !important}.mdf-mw-100{max-width:100% !important}.mdf-mh-100{max-height:100% !important}.mdf-min-vw-100{min-width:100vw !important}.mdf-min-vh-100{min-height:100vh !important}.mdf-vw-100{width:100vw !important}.mdf-vh-100{height:100vh !important}.mdf-m-0{margin:0 !important}.mdf-mt-0,.mdf-my-0{margin-top:0 !important}.mdf-mr-0,.mdf-mx-0{margin-right:0 !important}.mdf-mb-0,.mdf-my-0{margin-bottom:0 !important}.mdf-ml-0,.mdf-mx-0{margin-left:0 !important}.mdf-m-1{margin:.25rem !important}.mdf-mt-1,.mdf-my-1{margin-top:.25rem !important}.mdf-mr-1,.mdf-mx-1{margin-right:.25rem !important}.mdf-mb-1,.mdf-my-1{margin-bottom:.25rem !important}.mdf-ml-1,.mdf-mx-1{margin-left:.25rem !important}.mdf-m-2{margin:.5rem !important}.mdf-mt-2,.mdf-my-2{margin-top:.5rem !important}.mdf-mr-2,.mdf-mx-2{margin-right:.5rem !important}.mdf-mb-2,.mdf-my-2{margin-bottom:.5rem !important}.mdf-ml-2,.mdf-mx-2{margin-left:.5rem !important}.mdf-m-3{margin:1rem !important}.mdf-mt-3,.mdf-my-3{margin-top:1rem !important}.mdf-mr-3,.mdf-mx-3{margin-right:1rem !important}.mdf-mb-3,.mdf-my-3{margin-bottom:1rem !important}.mdf-ml-3,.mdf-mx-3{margin-left:1rem !important}.mdf-m-4{margin:1.5rem !important}.mdf-mt-4,.mdf-my-4{margin-top:1.5rem !important}.mdf-mr-4,.mdf-mx-4{margin-right:1.5rem !important}.mdf-mb-4,.mdf-my-4{margin-bottom:1.5rem !important}.mdf-ml-4,.mdf-mx-4{margin-left:1.5rem !important}.mdf-m-5{margin:3rem !important}.mdf-mt-5,.mdf-my-5{margin-top:3rem !important}.mdf-mr-5,.mdf-mx-5{margin-right:3rem !important}.mdf-mb-5,.mdf-my-5{margin-bottom:3rem !important}.mdf-ml-5,.mdf-mx-5{margin-left:3rem !important}.mdf-p-0{padding:0 !important}.mdf-pt-0,.mdf-py-0{padding-top:0 !important}.mdf-pr-0,.mdf-px-0{padding-right:0 !important}.mdf-pb-0,.mdf-py-0{padding-bottom:0 !important}.mdf-pl-0,.mdf-px-0{padding-left:0 !important}.mdf-p-1{padding:.25rem !important}.mdf-pt-1,.mdf-py-1{padding-top:.25rem !important}.mdf-pr-1,.mdf-px-1{padding-right:.25rem !important}.mdf-pb-1,.mdf-py-1{padding-bottom:.25rem !important}.mdf-pl-1,.mdf-px-1{padding-left:.25rem !important}.mdf-p-2{padding:.5rem !important}.mdf-pt-2,.mdf-py-2{padding-top:.5rem !important}.mdf-pr-2,.mdf-px-2{padding-right:.5rem !important}.mdf-pb-2,.mdf-py-2{padding-bottom:.5rem !important}.mdf-pl-2,.mdf-px-2{padding-left:.5rem !important}.mdf-p-3{padding:1rem !important}.mdf-pt-3,.mdf-py-3{padding-top:1rem !important}.mdf-pr-3,.mdf-px-3{padding-right:1rem !important}.mdf-pb-3,.mdf-py-3{padding-bottom:1rem !important}.mdf-pl-3,.mdf-px-3{padding-left:1rem !important}.mdf-p-4{padding:1.5rem !important}.mdf-pt-4,.mdf-py-4{padding-top:1.5rem !important}.mdf-pr-4,.mdf-px-4{padding-right:1.5rem !important}.mdf-pb-4,.mdf-py-4{padding-bottom:1.5rem !important}.mdf-pl-4,.mdf-px-4{padding-left:1.5rem !important}.mdf-p-5{padding:3rem !important}.mdf-pt-5,.mdf-py-5{padding-top:3rem !important}.mdf-pr-5,.mdf-px-5{padding-right:3rem !important}.mdf-pb-5,.mdf-py-5{padding-bottom:3rem !important}.mdf-pl-5,.mdf-px-5{padding-left:3rem !important}.mdf-m-n1{margin:-0.25rem !important}.mdf-mt-n1,.mdf-my-n1{margin-top:-0.25rem !important}.mdf-mr-n1,.mdf-mx-n1{margin-right:-0.25rem !important}.mdf-mb-n1,.mdf-my-n1{margin-bottom:-0.25rem !important}.mdf-ml-n1,.mdf-mx-n1{margin-left:-0.25rem !important}.mdf-m-n2{margin:-0.5rem !important}.mdf-mt-n2,.mdf-my-n2{margin-top:-0.5rem !important}.mdf-mr-n2,.mdf-mx-n2{margin-right:-0.5rem !important}.mdf-mb-n2,.mdf-my-n2{margin-bottom:-0.5rem !important}.mdf-ml-n2,.mdf-mx-n2{margin-left:-0.5rem !important}.mdf-m-n3{margin:-1rem !important}.mdf-mt-n3,.mdf-my-n3{margin-top:-1rem !important}.mdf-mr-n3,.mdf-mx-n3{margin-right:-1rem !important}.mdf-mb-n3,.mdf-my-n3{margin-bottom:-1rem !important}.mdf-ml-n3,.mdf-mx-n3{margin-left:-1rem !important}.mdf-m-n4{margin:-1.5rem !important}.mdf-mt-n4,.mdf-my-n4{margin-top:-1.5rem !important}.mdf-mr-n4,.mdf-mx-n4{margin-right:-1.5rem !important}.mdf-mb-n4,.mdf-my-n4{margin-bottom:-1.5rem !important}.mdf-ml-n4,.mdf-mx-n4{margin-left:-1.5rem !important}.mdf-m-n5{margin:-3rem !important}.mdf-mt-n5,.mdf-my-n5{margin-top:-3rem !important}.mdf-mr-n5,.mdf-mx-n5{margin-right:-3rem !important}.mdf-mb-n5,.mdf-my-n5{margin-bottom:-3rem !important}.mdf-ml-n5,.mdf-mx-n5{margin-left:-3rem !important}.mdf-m-auto{margin:auto !important}.mdf-mt-auto,.mdf-my-auto{margin-top:auto !important}.mdf-mr-auto,.mdf-mx-auto{margin-right:auto !important}.mdf-mb-auto,.mdf-my-auto{margin-bottom:auto !important}.mdf-ml-auto,.mdf-mx-auto{margin-left:auto !important}@media(min-width: 576px){.mdf-m-sm-0{margin:0 !important}.mdf-mt-sm-0,.mdf-my-sm-0{margin-top:0 !important}.mdf-mr-sm-0,.mdf-mx-sm-0{margin-right:0 !important}.mdf-mb-sm-0,.mdf-my-sm-0{margin-bottom:0 !important}.mdf-ml-sm-0,.mdf-mx-sm-0{margin-left:0 !important}.mdf-m-sm-1{margin:.25rem !important}.mdf-mt-sm-1,.mdf-my-sm-1{margin-top:.25rem !important}.mdf-mr-sm-1,.mdf-mx-sm-1{margin-right:.25rem !important}.mdf-mb-sm-1,.mdf-my-sm-1{margin-bottom:.25rem !important}.mdf-ml-sm-1,.mdf-mx-sm-1{margin-left:.25rem !important}.mdf-m-sm-2{margin:.5rem !important}.mdf-mt-sm-2,.mdf-my-sm-2{margin-top:.5rem !important}.mdf-mr-sm-2,.mdf-mx-sm-2{margin-right:.5rem !important}.mdf-mb-sm-2,.mdf-my-sm-2{margin-bottom:.5rem !important}.mdf-ml-sm-2,.mdf-mx-sm-2{margin-left:.5rem !important}.mdf-m-sm-3{margin:1rem !important}.mdf-mt-sm-3,.mdf-my-sm-3{margin-top:1rem !important}.mdf-mr-sm-3,.mdf-mx-sm-3{margin-right:1rem !important}.mdf-mb-sm-3,.mdf-my-sm-3{margin-bottom:1rem !important}.mdf-ml-sm-3,.mdf-mx-sm-3{margin-left:1rem !important}.mdf-m-sm-4{margin:1.5rem !important}.mdf-mt-sm-4,.mdf-my-sm-4{margin-top:1.5rem !important}.mdf-mr-sm-4,.mdf-mx-sm-4{margin-right:1.5rem !important}.mdf-mb-sm-4,.mdf-my-sm-4{margin-bottom:1.5rem !important}.mdf-ml-sm-4,.mdf-mx-sm-4{margin-left:1.5rem !important}.mdf-m-sm-5{margin:3rem !important}.mdf-mt-sm-5,.mdf-my-sm-5{margin-top:3rem !important}.mdf-mr-sm-5,.mdf-mx-sm-5{margin-right:3rem !important}.mdf-mb-sm-5,.mdf-my-sm-5{margin-bottom:3rem !important}.mdf-ml-sm-5,.mdf-mx-sm-5{margin-left:3rem !important}.mdf-p-sm-0{padding:0 !important}.mdf-pt-sm-0,.mdf-py-sm-0{padding-top:0 !important}.mdf-pr-sm-0,.mdf-px-sm-0{padding-right:0 !important}.mdf-pb-sm-0,.mdf-py-sm-0{padding-bottom:0 !important}.mdf-pl-sm-0,.mdf-px-sm-0{padding-left:0 !important}.mdf-p-sm-1{padding:.25rem !important}.mdf-pt-sm-1,.mdf-py-sm-1{padding-top:.25rem !important}.mdf-pr-sm-1,.mdf-px-sm-1{padding-right:.25rem !important}.mdf-pb-sm-1,.mdf-py-sm-1{padding-bottom:.25rem !important}.mdf-pl-sm-1,.mdf-px-sm-1{padding-left:.25rem !important}.mdf-p-sm-2{padding:.5rem !important}.mdf-pt-sm-2,.mdf-py-sm-2{padding-top:.5rem !important}.mdf-pr-sm-2,.mdf-px-sm-2{padding-right:.5rem !important}.mdf-pb-sm-2,.mdf-py-sm-2{padding-bottom:.5rem !important}.mdf-pl-sm-2,.mdf-px-sm-2{padding-left:.5rem !important}.mdf-p-sm-3{padding:1rem !important}.mdf-pt-sm-3,.mdf-py-sm-3{padding-top:1rem !important}.mdf-pr-sm-3,.mdf-px-sm-3{padding-right:1rem !important}.mdf-pb-sm-3,.mdf-py-sm-3{padding-bottom:1rem !important}.mdf-pl-sm-3,.mdf-px-sm-3{padding-left:1rem !important}.mdf-p-sm-4{padding:1.5rem !important}.mdf-pt-sm-4,.mdf-py-sm-4{padding-top:1.5rem !important}.mdf-pr-sm-4,.mdf-px-sm-4{padding-right:1.5rem !important}.mdf-pb-sm-4,.mdf-py-sm-4{padding-bottom:1.5rem !important}.mdf-pl-sm-4,.mdf-px-sm-4{padding-left:1.5rem !important}.mdf-p-sm-5{padding:3rem !important}.mdf-pt-sm-5,.mdf-py-sm-5{padding-top:3rem !important}.mdf-pr-sm-5,.mdf-px-sm-5{padding-right:3rem !important}.mdf-pb-sm-5,.mdf-py-sm-5{padding-bottom:3rem !important}.mdf-pl-sm-5,.mdf-px-sm-5{padding-left:3rem !important}.mdf-m-sm-n1{margin:-0.25rem !important}.mdf-mt-sm-n1,.mdf-my-sm-n1{margin-top:-0.25rem !important}.mdf-mr-sm-n1,.mdf-mx-sm-n1{margin-right:-0.25rem !important}.mdf-mb-sm-n1,.mdf-my-sm-n1{margin-bottom:-0.25rem !important}.mdf-ml-sm-n1,.mdf-mx-sm-n1{margin-left:-0.25rem !important}.mdf-m-sm-n2{margin:-0.5rem !important}.mdf-mt-sm-n2,.mdf-my-sm-n2{margin-top:-0.5rem !important}.mdf-mr-sm-n2,.mdf-mx-sm-n2{margin-right:-0.5rem !important}.mdf-mb-sm-n2,.mdf-my-sm-n2{margin-bottom:-0.5rem !important}.mdf-ml-sm-n2,.mdf-mx-sm-n2{margin-left:-0.5rem !important}.mdf-m-sm-n3{margin:-1rem !important}.mdf-mt-sm-n3,.mdf-my-sm-n3{margin-top:-1rem !important}.mdf-mr-sm-n3,.mdf-mx-sm-n3{margin-right:-1rem !important}.mdf-mb-sm-n3,.mdf-my-sm-n3{margin-bottom:-1rem !important}.mdf-ml-sm-n3,.mdf-mx-sm-n3{margin-left:-1rem !important}.mdf-m-sm-n4{margin:-1.5rem !important}.mdf-mt-sm-n4,.mdf-my-sm-n4{margin-top:-1.5rem !important}.mdf-mr-sm-n4,.mdf-mx-sm-n4{margin-right:-1.5rem !important}.mdf-mb-sm-n4,.mdf-my-sm-n4{margin-bottom:-1.5rem !important}.mdf-ml-sm-n4,.mdf-mx-sm-n4{margin-left:-1.5rem !important}.mdf-m-sm-n5{margin:-3rem !important}.mdf-mt-sm-n5,.mdf-my-sm-n5{margin-top:-3rem !important}.mdf-mr-sm-n5,.mdf-mx-sm-n5{margin-right:-3rem !important}.mdf-mb-sm-n5,.mdf-my-sm-n5{margin-bottom:-3rem !important}.mdf-ml-sm-n5,.mdf-mx-sm-n5{margin-left:-3rem !important}.mdf-m-sm-auto{margin:auto !important}.mdf-mt-sm-auto,.mdf-my-sm-auto{margin-top:auto !important}.mdf-mr-sm-auto,.mdf-mx-sm-auto{margin-right:auto !important}.mdf-mb-sm-auto,.mdf-my-sm-auto{margin-bottom:auto !important}.mdf-ml-sm-auto,.mdf-mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){.mdf-m-md-0{margin:0 !important}.mdf-mt-md-0,.mdf-my-md-0{margin-top:0 !important}.mdf-mr-md-0,.mdf-mx-md-0{margin-right:0 !important}.mdf-mb-md-0,.mdf-my-md-0{margin-bottom:0 !important}.mdf-ml-md-0,.mdf-mx-md-0{margin-left:0 !important}.mdf-m-md-1{margin:.25rem !important}.mdf-mt-md-1,.mdf-my-md-1{margin-top:.25rem !important}.mdf-mr-md-1,.mdf-mx-md-1{margin-right:.25rem !important}.mdf-mb-md-1,.mdf-my-md-1{margin-bottom:.25rem !important}.mdf-ml-md-1,.mdf-mx-md-1{margin-left:.25rem !important}.mdf-m-md-2{margin:.5rem !important}.mdf-mt-md-2,.mdf-my-md-2{margin-top:.5rem !important}.mdf-mr-md-2,.mdf-mx-md-2{margin-right:.5rem !important}.mdf-mb-md-2,.mdf-my-md-2{margin-bottom:.5rem !important}.mdf-ml-md-2,.mdf-mx-md-2{margin-left:.5rem !important}.mdf-m-md-3{margin:1rem !important}.mdf-mt-md-3,.mdf-my-md-3{margin-top:1rem !important}.mdf-mr-md-3,.mdf-mx-md-3{margin-right:1rem !important}.mdf-mb-md-3,.mdf-my-md-3{margin-bottom:1rem !important}.mdf-ml-md-3,.mdf-mx-md-3{margin-left:1rem !important}.mdf-m-md-4{margin:1.5rem !important}.mdf-mt-md-4,.mdf-my-md-4{margin-top:1.5rem !important}.mdf-mr-md-4,.mdf-mx-md-4{margin-right:1.5rem !important}.mdf-mb-md-4,.mdf-my-md-4{margin-bottom:1.5rem !important}.mdf-ml-md-4,.mdf-mx-md-4{margin-left:1.5rem !important}.mdf-m-md-5{margin:3rem !important}.mdf-mt-md-5,.mdf-my-md-5{margin-top:3rem !important}.mdf-mr-md-5,.mdf-mx-md-5{margin-right:3rem !important}.mdf-mb-md-5,.mdf-my-md-5{margin-bottom:3rem !important}.mdf-ml-md-5,.mdf-mx-md-5{margin-left:3rem !important}.mdf-p-md-0{padding:0 !important}.mdf-pt-md-0,.mdf-py-md-0{padding-top:0 !important}.mdf-pr-md-0,.mdf-px-md-0{padding-right:0 !important}.mdf-pb-md-0,.mdf-py-md-0{padding-bottom:0 !important}.mdf-pl-md-0,.mdf-px-md-0{padding-left:0 !important}.mdf-p-md-1{padding:.25rem !important}.mdf-pt-md-1,.mdf-py-md-1{padding-top:.25rem !important}.mdf-pr-md-1,.mdf-px-md-1{padding-right:.25rem !important}.mdf-pb-md-1,.mdf-py-md-1{padding-bottom:.25rem !important}.mdf-pl-md-1,.mdf-px-md-1{padding-left:.25rem !important}.mdf-p-md-2{padding:.5rem !important}.mdf-pt-md-2,.mdf-py-md-2{padding-top:.5rem !important}.mdf-pr-md-2,.mdf-px-md-2{padding-right:.5rem !important}.mdf-pb-md-2,.mdf-py-md-2{padding-bottom:.5rem !important}.mdf-pl-md-2,.mdf-px-md-2{padding-left:.5rem !important}.mdf-p-md-3{padding:1rem !important}.mdf-pt-md-3,.mdf-py-md-3{padding-top:1rem !important}.mdf-pr-md-3,.mdf-px-md-3{padding-right:1rem !important}.mdf-pb-md-3,.mdf-py-md-3{padding-bottom:1rem !important}.mdf-pl-md-3,.mdf-px-md-3{padding-left:1rem !important}.mdf-p-md-4{padding:1.5rem !important}.mdf-pt-md-4,.mdf-py-md-4{padding-top:1.5rem !important}.mdf-pr-md-4,.mdf-px-md-4{padding-right:1.5rem !important}.mdf-pb-md-4,.mdf-py-md-4{padding-bottom:1.5rem !important}.mdf-pl-md-4,.mdf-px-md-4{padding-left:1.5rem !important}.mdf-p-md-5{padding:3rem !important}.mdf-pt-md-5,.mdf-py-md-5{padding-top:3rem !important}.mdf-pr-md-5,.mdf-px-md-5{padding-right:3rem !important}.mdf-pb-md-5,.mdf-py-md-5{padding-bottom:3rem !important}.mdf-pl-md-5,.mdf-px-md-5{padding-left:3rem !important}.mdf-m-md-n1{margin:-0.25rem !important}.mdf-mt-md-n1,.mdf-my-md-n1{margin-top:-0.25rem !important}.mdf-mr-md-n1,.mdf-mx-md-n1{margin-right:-0.25rem !important}.mdf-mb-md-n1,.mdf-my-md-n1{margin-bottom:-0.25rem !important}.mdf-ml-md-n1,.mdf-mx-md-n1{margin-left:-0.25rem !important}.mdf-m-md-n2{margin:-0.5rem !important}.mdf-mt-md-n2,.mdf-my-md-n2{margin-top:-0.5rem !important}.mdf-mr-md-n2,.mdf-mx-md-n2{margin-right:-0.5rem !important}.mdf-mb-md-n2,.mdf-my-md-n2{margin-bottom:-0.5rem !important}.mdf-ml-md-n2,.mdf-mx-md-n2{margin-left:-0.5rem !important}.mdf-m-md-n3{margin:-1rem !important}.mdf-mt-md-n3,.mdf-my-md-n3{margin-top:-1rem !important}.mdf-mr-md-n3,.mdf-mx-md-n3{margin-right:-1rem !important}.mdf-mb-md-n3,.mdf-my-md-n3{margin-bottom:-1rem !important}.mdf-ml-md-n3,.mdf-mx-md-n3{margin-left:-1rem !important}.mdf-m-md-n4{margin:-1.5rem !important}.mdf-mt-md-n4,.mdf-my-md-n4{margin-top:-1.5rem !important}.mdf-mr-md-n4,.mdf-mx-md-n4{margin-right:-1.5rem !important}.mdf-mb-md-n4,.mdf-my-md-n4{margin-bottom:-1.5rem !important}.mdf-ml-md-n4,.mdf-mx-md-n4{margin-left:-1.5rem !important}.mdf-m-md-n5{margin:-3rem !important}.mdf-mt-md-n5,.mdf-my-md-n5{margin-top:-3rem !important}.mdf-mr-md-n5,.mdf-mx-md-n5{margin-right:-3rem !important}.mdf-mb-md-n5,.mdf-my-md-n5{margin-bottom:-3rem !important}.mdf-ml-md-n5,.mdf-mx-md-n5{margin-left:-3rem !important}.mdf-m-md-auto{margin:auto !important}.mdf-mt-md-auto,.mdf-my-md-auto{margin-top:auto !important}.mdf-mr-md-auto,.mdf-mx-md-auto{margin-right:auto !important}.mdf-mb-md-auto,.mdf-my-md-auto{margin-bottom:auto !important}.mdf-ml-md-auto,.mdf-mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){.mdf-m-lg-0{margin:0 !important}.mdf-mt-lg-0,.mdf-my-lg-0{margin-top:0 !important}.mdf-mr-lg-0,.mdf-mx-lg-0{margin-right:0 !important}.mdf-mb-lg-0,.mdf-my-lg-0{margin-bottom:0 !important}.mdf-ml-lg-0,.mdf-mx-lg-0{margin-left:0 !important}.mdf-m-lg-1{margin:.25rem !important}.mdf-mt-lg-1,.mdf-my-lg-1{margin-top:.25rem !important}.mdf-mr-lg-1,.mdf-mx-lg-1{margin-right:.25rem !important}.mdf-mb-lg-1,.mdf-my-lg-1{margin-bottom:.25rem !important}.mdf-ml-lg-1,.mdf-mx-lg-1{margin-left:.25rem !important}.mdf-m-lg-2{margin:.5rem !important}.mdf-mt-lg-2,.mdf-my-lg-2{margin-top:.5rem !important}.mdf-mr-lg-2,.mdf-mx-lg-2{margin-right:.5rem !important}.mdf-mb-lg-2,.mdf-my-lg-2{margin-bottom:.5rem !important}.mdf-ml-lg-2,.mdf-mx-lg-2{margin-left:.5rem !important}.mdf-m-lg-3{margin:1rem !important}.mdf-mt-lg-3,.mdf-my-lg-3{margin-top:1rem !important}.mdf-mr-lg-3,.mdf-mx-lg-3{margin-right:1rem !important}.mdf-mb-lg-3,.mdf-my-lg-3{margin-bottom:1rem !important}.mdf-ml-lg-3,.mdf-mx-lg-3{margin-left:1rem !important}.mdf-m-lg-4{margin:1.5rem !important}.mdf-mt-lg-4,.mdf-my-lg-4{margin-top:1.5rem !important}.mdf-mr-lg-4,.mdf-mx-lg-4{margin-right:1.5rem !important}.mdf-mb-lg-4,.mdf-my-lg-4{margin-bottom:1.5rem !important}.mdf-ml-lg-4,.mdf-mx-lg-4{margin-left:1.5rem !important}.mdf-m-lg-5{margin:3rem !important}.mdf-mt-lg-5,.mdf-my-lg-5{margin-top:3rem !important}.mdf-mr-lg-5,.mdf-mx-lg-5{margin-right:3rem !important}.mdf-mb-lg-5,.mdf-my-lg-5{margin-bottom:3rem !important}.mdf-ml-lg-5,.mdf-mx-lg-5{margin-left:3rem !important}.mdf-p-lg-0{padding:0 !important}.mdf-pt-lg-0,.mdf-py-lg-0{padding-top:0 !important}.mdf-pr-lg-0,.mdf-px-lg-0{padding-right:0 !important}.mdf-pb-lg-0,.mdf-py-lg-0{padding-bottom:0 !important}.mdf-pl-lg-0,.mdf-px-lg-0{padding-left:0 !important}.mdf-p-lg-1{padding:.25rem !important}.mdf-pt-lg-1,.mdf-py-lg-1{padding-top:.25rem !important}.mdf-pr-lg-1,.mdf-px-lg-1{padding-right:.25rem !important}.mdf-pb-lg-1,.mdf-py-lg-1{padding-bottom:.25rem !important}.mdf-pl-lg-1,.mdf-px-lg-1{padding-left:.25rem !important}.mdf-p-lg-2{padding:.5rem !important}.mdf-pt-lg-2,.mdf-py-lg-2{padding-top:.5rem !important}.mdf-pr-lg-2,.mdf-px-lg-2{padding-right:.5rem !important}.mdf-pb-lg-2,.mdf-py-lg-2{padding-bottom:.5rem !important}.mdf-pl-lg-2,.mdf-px-lg-2{padding-left:.5rem !important}.mdf-p-lg-3{padding:1rem !important}.mdf-pt-lg-3,.mdf-py-lg-3{padding-top:1rem !important}.mdf-pr-lg-3,.mdf-px-lg-3{padding-right:1rem !important}.mdf-pb-lg-3,.mdf-py-lg-3{padding-bottom:1rem !important}.mdf-pl-lg-3,.mdf-px-lg-3{padding-left:1rem !important}.mdf-p-lg-4{padding:1.5rem !important}.mdf-pt-lg-4,.mdf-py-lg-4{padding-top:1.5rem !important}.mdf-pr-lg-4,.mdf-px-lg-4{padding-right:1.5rem !important}.mdf-pb-lg-4,.mdf-py-lg-4{padding-bottom:1.5rem !important}.mdf-pl-lg-4,.mdf-px-lg-4{padding-left:1.5rem !important}.mdf-p-lg-5{padding:3rem !important}.mdf-pt-lg-5,.mdf-py-lg-5{padding-top:3rem !important}.mdf-pr-lg-5,.mdf-px-lg-5{padding-right:3rem !important}.mdf-pb-lg-5,.mdf-py-lg-5{padding-bottom:3rem !important}.mdf-pl-lg-5,.mdf-px-lg-5{padding-left:3rem !important}.mdf-m-lg-n1{margin:-0.25rem !important}.mdf-mt-lg-n1,.mdf-my-lg-n1{margin-top:-0.25rem !important}.mdf-mr-lg-n1,.mdf-mx-lg-n1{margin-right:-0.25rem !important}.mdf-mb-lg-n1,.mdf-my-lg-n1{margin-bottom:-0.25rem !important}.mdf-ml-lg-n1,.mdf-mx-lg-n1{margin-left:-0.25rem !important}.mdf-m-lg-n2{margin:-0.5rem !important}.mdf-mt-lg-n2,.mdf-my-lg-n2{margin-top:-0.5rem !important}.mdf-mr-lg-n2,.mdf-mx-lg-n2{margin-right:-0.5rem !important}.mdf-mb-lg-n2,.mdf-my-lg-n2{margin-bottom:-0.5rem !important}.mdf-ml-lg-n2,.mdf-mx-lg-n2{margin-left:-0.5rem !important}.mdf-m-lg-n3{margin:-1rem !important}.mdf-mt-lg-n3,.mdf-my-lg-n3{margin-top:-1rem !important}.mdf-mr-lg-n3,.mdf-mx-lg-n3{margin-right:-1rem !important}.mdf-mb-lg-n3,.mdf-my-lg-n3{margin-bottom:-1rem !important}.mdf-ml-lg-n3,.mdf-mx-lg-n3{margin-left:-1rem !important}.mdf-m-lg-n4{margin:-1.5rem !important}.mdf-mt-lg-n4,.mdf-my-lg-n4{margin-top:-1.5rem !important}.mdf-mr-lg-n4,.mdf-mx-lg-n4{margin-right:-1.5rem !important}.mdf-mb-lg-n4,.mdf-my-lg-n4{margin-bottom:-1.5rem !important}.mdf-ml-lg-n4,.mdf-mx-lg-n4{margin-left:-1.5rem !important}.mdf-m-lg-n5{margin:-3rem !important}.mdf-mt-lg-n5,.mdf-my-lg-n5{margin-top:-3rem !important}.mdf-mr-lg-n5,.mdf-mx-lg-n5{margin-right:-3rem !important}.mdf-mb-lg-n5,.mdf-my-lg-n5{margin-bottom:-3rem !important}.mdf-ml-lg-n5,.mdf-mx-lg-n5{margin-left:-3rem !important}.mdf-m-lg-auto{margin:auto !important}.mdf-mt-lg-auto,.mdf-my-lg-auto{margin-top:auto !important}.mdf-mr-lg-auto,.mdf-mx-lg-auto{margin-right:auto !important}.mdf-mb-lg-auto,.mdf-my-lg-auto{margin-bottom:auto !important}.mdf-ml-lg-auto,.mdf-mx-lg-auto{margin-left:auto !important}}@media(min-width: 1200px){.mdf-m-xl-0{margin:0 !important}.mdf-mt-xl-0,.mdf-my-xl-0{margin-top:0 !important}.mdf-mr-xl-0,.mdf-mx-xl-0{margin-right:0 !important}.mdf-mb-xl-0,.mdf-my-xl-0{margin-bottom:0 !important}.mdf-ml-xl-0,.mdf-mx-xl-0{margin-left:0 !important}.mdf-m-xl-1{margin:.25rem !important}.mdf-mt-xl-1,.mdf-my-xl-1{margin-top:.25rem !important}.mdf-mr-xl-1,.mdf-mx-xl-1{margin-right:.25rem !important}.mdf-mb-xl-1,.mdf-my-xl-1{margin-bottom:.25rem !important}.mdf-ml-xl-1,.mdf-mx-xl-1{margin-left:.25rem !important}.mdf-m-xl-2{margin:.5rem !important}.mdf-mt-xl-2,.mdf-my-xl-2{margin-top:.5rem !important}.mdf-mr-xl-2,.mdf-mx-xl-2{margin-right:.5rem !important}.mdf-mb-xl-2,.mdf-my-xl-2{margin-bottom:.5rem !important}.mdf-ml-xl-2,.mdf-mx-xl-2{margin-left:.5rem !important}.mdf-m-xl-3{margin:1rem !important}.mdf-mt-xl-3,.mdf-my-xl-3{margin-top:1rem !important}.mdf-mr-xl-3,.mdf-mx-xl-3{margin-right:1rem !important}.mdf-mb-xl-3,.mdf-my-xl-3{margin-bottom:1rem !important}.mdf-ml-xl-3,.mdf-mx-xl-3{margin-left:1rem !important}.mdf-m-xl-4{margin:1.5rem !important}.mdf-mt-xl-4,.mdf-my-xl-4{margin-top:1.5rem !important}.mdf-mr-xl-4,.mdf-mx-xl-4{margin-right:1.5rem !important}.mdf-mb-xl-4,.mdf-my-xl-4{margin-bottom:1.5rem !important}.mdf-ml-xl-4,.mdf-mx-xl-4{margin-left:1.5rem !important}.mdf-m-xl-5{margin:3rem !important}.mdf-mt-xl-5,.mdf-my-xl-5{margin-top:3rem !important}.mdf-mr-xl-5,.mdf-mx-xl-5{margin-right:3rem !important}.mdf-mb-xl-5,.mdf-my-xl-5{margin-bottom:3rem !important}.mdf-ml-xl-5,.mdf-mx-xl-5{margin-left:3rem !important}.mdf-p-xl-0{padding:0 !important}.mdf-pt-xl-0,.mdf-py-xl-0{padding-top:0 !important}.mdf-pr-xl-0,.mdf-px-xl-0{padding-right:0 !important}.mdf-pb-xl-0,.mdf-py-xl-0{padding-bottom:0 !important}.mdf-pl-xl-0,.mdf-px-xl-0{padding-left:0 !important}.mdf-p-xl-1{padding:.25rem !important}.mdf-pt-xl-1,.mdf-py-xl-1{padding-top:.25rem !important}.mdf-pr-xl-1,.mdf-px-xl-1{padding-right:.25rem !important}.mdf-pb-xl-1,.mdf-py-xl-1{padding-bottom:.25rem !important}.mdf-pl-xl-1,.mdf-px-xl-1{padding-left:.25rem !important}.mdf-p-xl-2{padding:.5rem !important}.mdf-pt-xl-2,.mdf-py-xl-2{padding-top:.5rem !important}.mdf-pr-xl-2,.mdf-px-xl-2{padding-right:.5rem !important}.mdf-pb-xl-2,.mdf-py-xl-2{padding-bottom:.5rem !important}.mdf-pl-xl-2,.mdf-px-xl-2{padding-left:.5rem !important}.mdf-p-xl-3{padding:1rem !important}.mdf-pt-xl-3,.mdf-py-xl-3{padding-top:1rem !important}.mdf-pr-xl-3,.mdf-px-xl-3{padding-right:1rem !important}.mdf-pb-xl-3,.mdf-py-xl-3{padding-bottom:1rem !important}.mdf-pl-xl-3,.mdf-px-xl-3{padding-left:1rem !important}.mdf-p-xl-4{padding:1.5rem !important}.mdf-pt-xl-4,.mdf-py-xl-4{padding-top:1.5rem !important}.mdf-pr-xl-4,.mdf-px-xl-4{padding-right:1.5rem !important}.mdf-pb-xl-4,.mdf-py-xl-4{padding-bottom:1.5rem !important}.mdf-pl-xl-4,.mdf-px-xl-4{padding-left:1.5rem !important}.mdf-p-xl-5{padding:3rem !important}.mdf-pt-xl-5,.mdf-py-xl-5{padding-top:3rem !important}.mdf-pr-xl-5,.mdf-px-xl-5{padding-right:3rem !important}.mdf-pb-xl-5,.mdf-py-xl-5{padding-bottom:3rem !important}.mdf-pl-xl-5,.mdf-px-xl-5{padding-left:3rem !important}.mdf-m-xl-n1{margin:-0.25rem !important}.mdf-mt-xl-n1,.mdf-my-xl-n1{margin-top:-0.25rem !important}.mdf-mr-xl-n1,.mdf-mx-xl-n1{margin-right:-0.25rem !important}.mdf-mb-xl-n1,.mdf-my-xl-n1{margin-bottom:-0.25rem !important}.mdf-ml-xl-n1,.mdf-mx-xl-n1{margin-left:-0.25rem !important}.mdf-m-xl-n2{margin:-0.5rem !important}.mdf-mt-xl-n2,.mdf-my-xl-n2{margin-top:-0.5rem !important}.mdf-mr-xl-n2,.mdf-mx-xl-n2{margin-right:-0.5rem !important}.mdf-mb-xl-n2,.mdf-my-xl-n2{margin-bottom:-0.5rem !important}.mdf-ml-xl-n2,.mdf-mx-xl-n2{margin-left:-0.5rem !important}.mdf-m-xl-n3{margin:-1rem !important}.mdf-mt-xl-n3,.mdf-my-xl-n3{margin-top:-1rem !important}.mdf-mr-xl-n3,.mdf-mx-xl-n3{margin-right:-1rem !important}.mdf-mb-xl-n3,.mdf-my-xl-n3{margin-bottom:-1rem !important}.mdf-ml-xl-n3,.mdf-mx-xl-n3{margin-left:-1rem !important}.mdf-m-xl-n4{margin:-1.5rem !important}.mdf-mt-xl-n4,.mdf-my-xl-n4{margin-top:-1.5rem !important}.mdf-mr-xl-n4,.mdf-mx-xl-n4{margin-right:-1.5rem !important}.mdf-mb-xl-n4,.mdf-my-xl-n4{margin-bottom:-1.5rem !important}.mdf-ml-xl-n4,.mdf-mx-xl-n4{margin-left:-1.5rem !important}.mdf-m-xl-n5{margin:-3rem !important}.mdf-mt-xl-n5,.mdf-my-xl-n5{margin-top:-3rem !important}.mdf-mr-xl-n5,.mdf-mx-xl-n5{margin-right:-3rem !important}.mdf-mb-xl-n5,.mdf-my-xl-n5{margin-bottom:-3rem !important}.mdf-ml-xl-n5,.mdf-mx-xl-n5{margin-left:-3rem !important}.mdf-m-xl-auto{margin:auto !important}.mdf-mt-xl-auto,.mdf-my-xl-auto{margin-top:auto !important}.mdf-mr-xl-auto,.mdf-mx-xl-auto{margin-right:auto !important}.mdf-mb-xl-auto,.mdf-my-xl-auto{margin-bottom:auto !important}.mdf-ml-xl-auto,.mdf-mx-xl-auto{margin-left:auto !important}}.mdf.wfnx .left-nav-framework__container,.mdf.wfnx .mdfView,.wfnx .left-nav-framework__container,.wfnx .mdfView{background:var(--content-bg-color)}.wfnx-banner{height:100px;width:100%;display:flex;position:relative;justify-content:center;align-items:center;overflow:hidden}.wfnx-banner .wfnx-banner-container{display:flex;top:0;align-items:center;width:100%;position:absolute;right:-30px;height:100px}.wfnx-banner--success{color:var(--accent-1-darker);background-color:var(--accent-1);font-weight:700}.wfnx-banner--success .wfnx_bannercircle__icon{right:0;top:-30px;height:160px;width:160px;border-radius:160px;display:flex;color:var(--accent-1);justify-content:center;align-items:center;position:absolute;background-color:var(--accent-1-dark)}.wfnx-banner--success .wfnx_bannercircle__icon .fa{font-size:70px}.wfnx-banner--success .wfnx_bannercircle__icon>svg{color:var(--accent-1-dark);fill:var(--accent-1)}.wfnx-banner--warning{color:var(--accent-5-darker);background-color:var(--accent-5);font-weight:700}.wfnx-banner--warning .wfnx_bannercircle__icon{right:0;top:-30px;height:160px;width:160px;border-radius:160px;display:flex;color:var(--accent-5);justify-content:center;align-items:center;position:absolute;background-color:var(--accent-5-light)}.wfnx-banner--warning .wfnx_bannercircle__icon .fa{font-size:70px}.wfnx-banner--warning .wfnx_bannercircle__icon>svg{color:var(--accent-5-light);fill:var(--accent-5)}.wfnx-banner--alert{color:var(--accent-3-light);background-color:var(--accent-3-darker);font-weight:700}.wfnx-banner--alert .wfnx_bannercircle__icon{right:0;top:-30px;height:160px;width:160px;border-radius:160px;display:flex;color:var(--accent-3-darker);justify-content:center;align-items:center;position:absolute;background-color:var(--accent-3-light)}.wfnx-banner--alert .wfnx_bannercircle__icon .fa{font-size:70px}.wfnx-banner--alert .wfnx_bannercircle__icon>svg{color:var(--accent-3-light);fill:var(--accent-3-darker)}.wfnx-banner--info{color:var(--white);background-color:var(--accent-0-dark);font-weight:700}.wfnx-banner--info .wfnx_bannercircle__icon{right:0;top:-30px;height:160px;width:160px;border-radius:160px;display:flex;color:var(--accent-0-dark);justify-content:center;align-items:center;position:absolute;background-color:var(--accent-0)}.wfnx-banner--info .wfnx_bannercircle__icon .fa{font-size:70px}.wfnx-banner--info .wfnx_bannercircle__icon>svg{color:var(--accent-0);fill:var(--accent-0-dark)}.wfnx-banner--defaultIcon,.wfnx-banner--default{color:var(--accent-3-dark);background-color:var(--white);font-weight:700}.wfnx-banner--defaultIcon .wfnx_bannercircle__icon,.wfnx-banner--default .wfnx_bannercircle__icon{right:0;top:-30px;height:160px;width:160px;border-radius:160px;display:flex;color:var(--white);justify-content:center;align-items:center;position:absolute;background-color:var(--neutral)}.wfnx-banner--defaultIcon .wfnx_bannercircle__icon .fa,.wfnx-banner--default .wfnx_bannercircle__icon .fa{font-size:70px}.wfnx-banner--defaultIcon .wfnx_bannercircle__icon>svg,.wfnx-banner--default .wfnx_bannercircle__icon>svg{color:var(--neutral);fill:var(--white)}@media screen and (max-width: 768px){.wfnx-banner{height:145px}.wfnx-banner .wfnx-banner-container{height:145px}}.wfnx .wfnx-big-card .wfnx-big-body-card{background:var(--white);border-radius:0 15px 15px 15px;width:100%;box-shadow:0px 5px 15px 0px rgba(0,0,0,.15)}.wfnx .wfnx-small-card-body{width:100%;margin-left:auto;margin-right:auto;padding-top:15px;padding-bottom:15px}.wfnx .wfnx-collapse-card{background:var(--white);border-radius:20px;box-shadow:0 5px 15px 0 rgba(0,0,0,.15)}.wfnx .wfnx-collapse-card--closed .wfnx-collapse-card__header{border-bottom:none}.wfnx .wfnx-collapse-card--closed .wfnx-collapse-card__body{padding:0}.wfnx .wfnx-collapse-card__body{padding:20px}.wfnx .wfnx-collapse-card__header{display:flex;justify-content:space-between;height:60px;font-size:var(--font-size-medium);font-weight:700;margin:0 20px;align-items:center;border-bottom:1px solid rgba(51,51,51,.4)}.wfnx .wfnx-collapse-card__header--collapsible{color:var(--accent-0-dark)}.wfnx .wfnx-collapse-card__title-container{display:flex;align-items:center}.wfnx .wfnx-collapse-card__title-icon{margin-right:15px}.wfnx .wfnx-collapse-card__collapse-icon{font-size:var(--font-size-larger)}.wfnx .wfnx-collapse-card__collapse-icon:hover{cursor:pointer}.mdf.wfnx .vdl-date-time-picker--lg{width:180px}.mdf.wfnx .vdl-date-time-picker--sm,.mdf.wfnx .vdl-date-time-picker--sm>input{width:130px;height:30px;font-size:var(--font-size-small)}.mdf.wfnx .vdl-date-time-picker--sm .vdl-date-time-picker__select__picker--sm,.mdf.wfnx .vdl-date-time-picker--sm .vdl-date-time-picker--sm .vdl-date-time-picker__select__picker,.mdf.wfnx .vdl-date-time-picker--sm>input .vdl-date-time-picker__select__picker--sm,.mdf.wfnx .vdl-date-time-picker--sm>input .vdl-date-time-picker--sm .vdl-date-time-picker__select__picker{font-size:var(--font-size-base)}.mdf.wfnx .vdl-date-time-picker__select__picker--lg,.mdf.wfnx .vdl-date-time-picker--lg .vdl-date-time-picker__select__picker{font-size:var(--font-size-xlarge)}.wfnx .wfnx-filter{display:flex;position:relative}.wfnx .wfnx-filter .filter-content{width:230px;min-height:100px;color:var(--white);background-color:var(--neutral-dark);padding-bottom:20px;box-shadow:inset 1px 1px 23px 8px rgba(0,0,0,.2);overflow-x:hidden}.wfnx .wfnx-filter .collapse-control-open{position:absolute;left:230px;width:40px;height:40px;background-color:var(--accent-5);border-bottom-right-radius:15px;text-align:center;padding-top:10px;cursor:pointer}.wfnx .wfnx-filter .collapse-control-open i{color:var(--white);font-size:var(--font-size-large)}.wfnx .wfnx-filter .collapse-control-closed{position:absolute;left:0;width:102px;height:40px;background-color:var(--accent-5);border-bottom-right-radius:15px;text-align:center;padding-top:10px;cursor:pointer;text-transform:var(--text-transform)}.wfnx .wfnx-filter .collapse-control-closed i{color:var(--white);font-size:var(--font-size-large);padding-right:10px}.wfnx .wfnx-filter .collapse-control-closed span{color:var(--white);font-size:var(--font-size-base);font-weight:700}.wfnx .wfnx-filter .applied-filters-container{display:flex;position:absolute;top:0;left:290px;width:auto;height:40px}.wfnx .wfnx-filter .applied-filters-container .applied-filter{height:28px;color:var(--black);background-color:var(--neutral-light);border-radius:50px;font-size:var(--font-size-base);font-weight:400;padding-left:10px;padding-right:10px;padding-top:3px;margin-right:5px;white-space:nowrap}.wfnx .wfnx-filter .applied-filters-container .applied-filter i{position:relative;color:var(--neutral-darker);font-size:var(--font-size-large);padding-left:5px;top:1px;cursor:pointer}.wfnx .wfnx-filter .applied-filters-container .remaining-filters{color:var(--accent-0-dark);font-size:var(--font-size-small);font-weight:700;text-transform:var(--text-transform);padding-top:6px;padding-left:5px;white-space:nowrap}.wfnx .wfnx-filter .title-wrapper{display:flex;align-items:center;padding-bottom:12px}.wfnx .wfnx-filter .title-wrapper .title-container{font-size:var(--font-size-h1);font-weight:300;color:var(--white);padding-left:20px;padding-top:30px;text-transform:capitalize}.wfnx .wfnx-filter .title-wrapper .button-container{padding-top:30px;text-align:right;padding-right:20px;flex-grow:1}.wfnx .wfnx-filter .separator{height:2px;border-bottom:1px solid var(--neutral);margin:18px 20px}.wfnx .wfnx-filter .category-container{cursor:pointer;font-size:var(--font-size-large);padding-right:10px}.wfnx .wfnx-filter .category-container .icon{width:20px;display:inline-block;padding-left:30px;padding-right:30px}.wfnx .wfnx-filter .category-container .name{display:inline-block;font-weight:600;text-transform:var(--text-transform)}.wfnx .wfnx-filter ul{list-style:none}.wfnx .wfnx-filter ul li{width:170px;margin-bottom:14px;font-size:var(--font-size-base);font-weight:600;cursor:pointer}.wfnx .wfnx-filter ul li .list-item-content{display:flex}.wfnx .wfnx-filter ul li .list-item-content i{width:22px;font-size:var(--font-size-xlarge);padding-right:30px}.wfnx .wfnx-filter ul li .list-item-content .text{width:140px;padding-top:2px}.wfnx .wfnx-filter li:first-child{padding-top:10px}.wfnx .wfnx-filter.filter-collapsed{display:none}.wfnx .wfnx-filter.filter-expand{display:block}.wfnx .wfnx-titleBar{width:350px;height:40px;background-color:var(--accent-0-darker);display:flex;justify-content:center;align-items:center;border-top-right-radius:50px}.wfnx .wfnx-titleBar .title{color:var(--white);font-size:var(--font-size-large);font-weight:700}.wfnx .wfnx-icon-titleBar-wrapper{position:relative}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle{position:absolute;border:2px solid var(--accent-0-darker);z-index:1;top:0}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle--xs{left:-15px}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle--sm{left:-25px}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle--md{left:-30px}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle--lg{left:-30px;top:-1px}.wfnx .wfnx-icon-titleBar-wrapper .titleBar-circle .titleBar-icon-color{color:var(--accent-0-darker)}.mdf .mdf-leftNav{width:240px;background-color:var(--white);padding-top:20px}.mdf .mdf-leftNav .vdl-left-nav__item:first-child,.mdf .mdf-leftNav .vdl-left-nav__item{border:0;background-color:rgba(0,0,0,0)}.mdf .mdf-leftNav .vdl-left-nav__item:first-child--collapsed,.mdf .mdf-leftNav .vdl-left-nav__item--collapsed{color:rgba(0,0,0,0)}.mdf .mdf-leftNav .vdl-left-nav__item__label:focus-visible .vdl-left-nav__item__expand-icon{fill:var(--white)}.mdf .mdf-leftNav .vdl-left-nav__item__expand-icon{fill:var(--link-color);font-size:var(--font-size-medium);cursor:pointer}.mdf .mdf-leftNav--labelIcon{padding:2px}.mdf .mdf-leftNav .vdl-left-nav__item.vdl-left-nav__item--has-children.vdl-left-nav__item--disabled>label{color:var(--neutral-dark-mid);cursor:not-allowed}.mdf .mdf-leftNav .vdl-left-nav__item.vdl-left-nav__item--has-children>label{font-size:var(--font-size-medium);font-weight:600;color:var(--black);text-transform:capitalize}.mdf .mdf-leftNav .vdl-left-nav__item>.vdl-left-nav__item__label{min-height:40px;display:flex;align-items:center;border-radius:0;border-left:5px solid var(--white);font-size:var(--font-size-base);font-weight:400}.mdf .mdf-leftNav .vdl-left-nav__item--selected .vdl-left-nav__item__label{background-color:var(--neutral-lighter);border-left:5px solid var(--white);color:var(--accent-0-darker);width:calc(100% - 15px)}.mdf .mdf-leftNav .vdl-left-nav__item--selected .vdl-left-nav__item__label--isVisited{border-left:5px solid var(--accent-0-darker)}.mdf .mdf-leftNav .vdl-left-nav__item--selected .selectItemArrow:before,.mdf .mdf-leftNav .vdl-left-nav__item--selected .selectItemArrow:after{height:50%;right:-15px;position:absolute;left:100%;content:""}.mdf .mdf-leftNav .vdl-left-nav__item--selected .selectItemArrow:before{top:0;background:linear-gradient(to right top, var(--accent-0-dark) 50%, transparent 50%)}.mdf .mdf-leftNav .vdl-left-nav__item--selected .selectItemArrow:after{top:50%;background:linear-gradient(to right bottom, var(--accent-0-dark) 50%, transparent 50%)}.mdf .mdf-leftNav .vdl-left-nav__item__scrollbox{padding-top:5px}.mdf .mdf-leftNav .vdl-left-nav__item__scrollbox .vdl-left-nav__item__label{font-size:var(--font-size-base);font-weight:400;color:var(--neutral-darker);text-transform:var(--text-transform);border-left:5px solid var(--white)}.mdf .mdf-leftNav .vdl-left-nav__item__scrollbox .vdl-left-nav__item__label--isVisited{border-left:5px solid var(--accent-0-dark)}.mdf .mdf-leftNav .vdl-left-nav__item__scrollbox .vdl-left-nav__item--disabled .vdl-left-nav__item__label{color:var(--neutral-dark-mid);cursor:not-allowed}.mdf .mdf-leftNav .vdl-left-nav__item__scrollbox .vdl-left-nav__item--disabled .vdl-left-nav__item__label--isVisited{border-left:5px solid var(--neutral-dark)}.mdf .mdf-leftNavContainer{display:flex;position:relative}.mdf .mdf-leftNavContainer .collapse-control{position:absolute;width:30px;height:30px;background-color:var(--white);border-bottom-right-radius:10px;text-align:center;padding-top:5px;cursor:pointer}.mdf .mdf-leftNavContainer .collapse-control i{color:var(--link-color);font-size:var(--font-size-medium)}.mdf .mdf-leftNavContainer .collapse-control--open{left:241px}.mdf .mdf-leftNavContainer .collapse-control--closed{left:0}.mdf .mdf-leftNavContainer .collapse-control:focus{border:2px solid #324fa5;outline:0;z-index:1;border-radius:8px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-leftNavContainer.nav-collapsed{display:none}.mdf .mdf-leftNavContainer.nav-expand{display:block}.wfnx-list-card{display:flex;align-items:center;border-top-left-radius:15px;margin-bottom:25px;background:var(--white);padding:5px 0 5px 40px;border-right:10px solid var(--accent-1-dark);box-shadow:0 5px 15px 0 rgba(0,0,0,.15)}.wfnx-list-card-column{flex:1 1 0%}.wfnx-multi-buttonGroup-wrapper{font-size:var(--font-size-base);font-weight:400;display:flex;align-items:center}.wfnx-multi-buttonGroup-wrapper>*{text-transform:var(--text-transform);background-color:#fff;color:var(--black);border:1px solid var(--accent-0);width:60px;height:30px}.wfnx-multi-buttonGroup-wrapper>*:hover{color:var(--accent-0);cursor:pointer}.wfnx-multi-buttonGroup-wrapper>*:focus{outline:none}.wfnx-multi-buttonGroup-wrapper>*:first-child{border-top-left-radius:1em;border-bottom-left-radius:1em}.wfnx-multi-buttonGroup-wrapper>*:last-child{border-top-right-radius:1em;border-bottom-right-radius:1em}.wfnx-multi-buttonGroup-wrapper>*[aria-disabled=true]{background-color:var(--neutral-disabled);color:var(--neutral-dark);cursor:not-allowed;border:1px solid var(--neutral-dark)}.wfnx-multi-buttonGroup-wrapper>*[aria-disabled=true][aria-selected=true]{background-color:var(--neutral-dark);color:var(--neutral-disabled)}.wfnx-multi-buttonGroup-wrapper>*::-moz-focus-inner{border:0}.wfnx-multi-buttonGroup-wrapper>*:focus{outline:none}.wfnx-multi-buttonGroup-wrapper>*:active{outline:none;box-shadow:none}.wfnx-multi-buttonGroup-wrapper>*[aria-selected=true]{background-color:var(--accent-0-darker);border:1px solid var(--black);color:var(--white)}.wfnx .wfnx-popup-dialog-background{position:fixed;top:0;left:0;bottom:0;right:0;z-index:3000}.wfnx .wfnx-popup-dialog-left{position:absolute;top:50px;right:110px;width:fit-content;height:fit-content;margin:20px;z-index:3001}.wfnx .wfnx-popup-dialog-left .popup-dialog-content{border-bottom-right-radius:15px;border-bottom-left-radius:15px;box-shadow:0 5px 15px 0 rgba(0,0,0,.3);padding:15px;background-color:var(--white)}.wfnx .wfnx-popup-dialog-left .popup-dialog-arrow{position:absolute;top:-15px;right:20px;width:15px;height:15px;border-left:15px solid rgba(0,0,0,0);border-right:15px solid rgba(0,0,0,0);border-bottom:15px solid var(--neutral-lightest)}.wfnx .wfnx-popup-dialog-left .popup-dialog-header{margin-bottom:20px}.wfnx .wfnx-popup-dialog-left .popup-dialog-header .popup-dialog-title{font-size:var(--font-size-h2);font-weight:300;display:inline-block;width:90%}.wfnx .wfnx-popup-dialog-left .popup-dialog-header .popup-dialog-close{font-size:var(--font-size-h2);display:inline-block;width:10%;text-align:right}.wfnx .wfnx-popup-dialog-left .popup-dialog-header .popup-dialog-close i{cursor:pointer}.wfnx .wfnx-popup-dialog{position:absolute;top:20px;left:110px;width:fit-content;height:fit-content;margin:20px;z-index:3001}.wfnx .wfnx-popup-dialog .popup-dialog-content{border-bottom-right-radius:15px;border-bottom-left-radius:15px;box-shadow:0 5px 15px 0 rgba(0,0,0,.3);padding:15px;background-color:var(--white)}.wfnx .wfnx-popup-dialog .popup-dialog-arrow{position:absolute;top:-15px;left:20px;width:15px;height:15px;border-left:15px solid rgba(0,0,0,0);border-right:15px solid rgba(0,0,0,0);border-bottom:15px solid var(--neutral-lightest)}.wfnx .wfnx-popup-dialog .popup-dialog-header{margin-bottom:20px}.wfnx .wfnx-popup-dialog .popup-dialog-header .popup-dialog-title{font-size:var(--font-size-h2);font-weight:300;display:inline-block;width:90%}.wfnx .wfnx-popup-dialog .popup-dialog-header .popup-dialog-close{font-size:var(--font-size-h2);display:inline-block;width:10%;text-align:right}.wfnx .wfnx-popup-dialog .popup-dialog-header .popup-dialog-close i{cursor:pointer}.wfnx .wfnx-small-card{display:inline-block;position:relative;width:260px;border-radius:15px;box-shadow:0 5px 15px 0 rgba(0,0,0,.3);background-color:var(--white);margin:10px;padding-top:15px}.wfnx .wfnx-small-card-items{margin-top:15px;border-bottom-left-radius:15px;border-bottom-right-radius:15px}.wfnx .wfnx-small-card-footer>div:last-child{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.wfnx .wfnx-small-card-header{width:100%}.wfnx .wfnx-small-card-overlay{width:260px;border-radius:15px;display:none}.wfnx .wfnx-small-card-overlay .close-icon{position:absolute;top:-15px;right:-20px;width:40px;height:40px;border-radius:40px;color:var(--white);background-color:var(--black);text-align:center;font-size:var(--font-size-large);padding-top:10px;cursor:pointer}.wfnx .overlay-enter{position:absolute;top:-25px;bottom:0;display:block}.wfnx .overlay-enter-active{top:-50px;bottom:0}.wfnx .overlay-enter-done{position:absolute;top:0;bottom:0;display:block;background-color:red}.wfnx .mdf-snackbar{height:60px;display:flex;align-items:center;border:none;justify-content:center;background-color:var(--neutral-darker);box-shadow:0 -5px 20px 0 rgba(0,0,0,.25)}.wfnx .wfnx-titleBar{width:350px;height:40px;background-color:var(--accent-0-darker);display:flex;justify-content:center;align-items:center;border-top-right-radius:50px}.wfnx .wfnx-titleBar .title{color:var(--white);font-size:var(--font-size-large);font-weight:700}.wfnx .text-left{text-align:left}.wfnx .text-center{text-align:center}.wfnx .text-right{text-align:right}.wfnx .text-justify{text-align:justify}.wfnx .no-wrap{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wfnx .h1{font-size:var(--font-size-h1);font-weight:600}.wfnx .h2{font-size:var(--font-size-h2);font-weight:600}.wfnx .h3{font-size:var(--font-size-large);font-weight:600}.wfnx .h4{font-size:var(--font-size-medium);font-weight:600}.wfnx .h5{font-size:var(--font-size-base);font-weight:600}.wfnx .h6{font-size:var(--font-size-small);font-weight:600;text-transform:uppercase}.wfnx .body{color:var(--black);font-size:var(--font-size-base);font-weight:400}.wfnx .link{font-size:var(--font-size-base);font-weight:400;text-transform:uppercase;color:var(--link-color)}.wfnx .font-weight-light{font-weight:300}.wizard-stepbar{position:absolute;height:100%;margin-left:0}.wizard-stepbar .wizard-step:focus{outline:0;border:none}.wizard-stepbar .icon-hidden{visibility:hidden}.wizard-stepbar .wizard-steps-container{display:flex;justify-content:flex-start;align-items:center;flex-direction:column;background-color:var(--neutral-dark-mid);box-shadow:inset 2px 0 5px -2px rgba(0,0,0,.2);align-self:flex-start;padding-top:26px;padding-bottom:1em;max-width:200px;font-weight:bold;min-width:15em;height:100%}.wizard-stepbar .wizard-steps-container .wizard-step{width:100%;top:5px;min-height:6em;border:none;background:none;position:relative;color:var(--neutral);padding-left:1em}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-step-label-icon-wrapper{display:flex;justify-content:flex-start;align-items:center;position:relative;height:60px}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-step-label{visibility:visible;font-weight:700;margin-left:.5em}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line,.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line-viewless{border-left:2px dashed var(--neutral);height:4em;position:absolute;left:43px;top:calc(100% - 32px);visibility:visible}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line.vertical-line-jumpable,.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line-viewless.vertical-line-jumpable{border-color:var(--accent-0);border-left-style:solid}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line.valid-vertical-line,.wizard-stepbar .wizard-steps-container .wizard-step .wizard-vertical-line-viewless.valid-vertical-line{border-color:var(--accent-0);border-left-style:solid}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step{color:var(--white)}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .wizard-vertical-line{border-color:var(--accent-1)}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .wizard-step-icon{border-color:var(--accent-1);background-color:var(--neutral-dark-mid);color:var(--accent-1)}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .wizard-step-icon:hover{color:var(--accent-0-darker);background-color:var(--accent-1)}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .wizard-step-icon:hover .step-checkmark{color:var(--accent-1)}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .step-checkmark{width:20px;height:20px;border:2px solid var(--accent-1);border-radius:50%;background-color:var(--accent-1);position:absolute;top:2px;left:42px}.wizard-stepbar .wizard-steps-container .wizard-step.valid-step .step-checkmark:before{font-size:15px;align-items:center;display:flex;color:var(--neutral-dark-mid)}.wizard-stepbar .wizard-steps-container .wizard-step.jumpable-step{color:var(--white)}.wizard-stepbar .wizard-steps-container .wizard-step.jumpable-step .wizard-step-icon{border-color:var(--accent-0);background-color:var(--neutral-dark-mid);color:var(--accent-0)}.wizard-stepbar .wizard-steps-container .wizard-step.jumpable-step .wizard-step-icon:hover{color:var(--accent-0-darker);background-color:var(--accent-0)}.wizard-stepbar .wizard-steps-container .wizard-step.jumpable-step .wizard-step-icon:hover .step-checkmark{color:var(--accent-0)}.wizard-stepbar .wizard-steps-container .wizard-step.jumpable-step .step-checkmark{width:20px;height:20px;border-radius:2px solid var(--accent-0);background-color:var(--accent-0);position:absolute;top:2px;left:42px}.wizard-stepbar .wizard-steps-container .wizard-step .delegate-icon:hover{color:var(--accent-0-darker);background-color:var(--accent-0)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step{cursor:default}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-step-arrow{right:-30px;top:0;border-top:30px solid rgba(0,0,0,0);border-bottom:30px solid rgba(0,0,0,0);position:absolute;border-left:30px solid var(--neutral-lighter)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper{position:relative;width:calc(100% + 14px);height:auto;margin-left:-14px;visibility:visible;background-color:var(--neutral-lighter)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step{color:var(--black);font-weight:400;font-size:var(--font-size-small);margin:5px 0;text-align:left;padding-left:.5em}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step:hover{cursor:pointer}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step:first-child{margin:0}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step:last-child{margin-bottom:10px}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step span{width:1em;margin:0 .5em}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step.current-view-in-step{color:var(--accent-3-dark);font-size:var(--font-size-small);font-weight:700}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-views-in-step-wrapper .wizard-view-in-step.disabled-view-in-step{color:var(--neutral)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-step-label-icon-wrapper{background-color:var(--neutral-lighter);visibility:visible;color:var(--accent-3-dark);left:-14px;padding-left:14px;width:calc(100% + 14px)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-vertical-line{left:43px}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-vertical-line-viewless{left:43px;top:calc(100% - 32px)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .wizard-step-icon{border-color:rgba(0,0,0,0);background-color:var(--neutral-lighter);color:var(--accent-3-dark)}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .delegate-icon{border-color:var(--accent-0);background-color:var(--neutral-mid);color:var(--accent-0);left:56px}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .delegate-icon:hover{color:var(--accent-0-darker);background-color:var(--accent-0);position:absolute;left:56px}.wizard-stepbar .wizard-steps-container .wizard-step.current-step .delegated-icon{left:56px}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-step-icon{color:var(--neutral);visibility:visible;font-size:28px;width:52px;height:52px;border:2px solid var(--neutral);border-radius:50%;margin-left:4px;background-color:var(--neutral-dark-mid);text-align:center;line-height:190%;flex-shrink:0}.wizard-stepbar .wizard-steps-container .wizard-step .wizard-step-label{visibility:visible;margin-left:15px}.wizard-stepbar .wizard-steps-container .wizard-step .delegate-icon{font-size:18px;border-radius:50%;border-color:var(--accent-0);background-color:var(--neutral-dark-mid);color:var(--accent-0);position:absolute;top:2px;left:42px;padding:4px;visibility:visible}.wizard-stepbar .wizard-steps-container .wizard-step .delegate-icon:hover{color:var(--accent-0-darker);background-color:var(--accent-0)}.wizard-stepbar .wizard-steps-container .wizard-step .delegated-icon{height:20px;width:20px;font-size:var(--font-size-base);border-radius:50%;border-color:var(--accent-3-dark);background-color:var(--accent-3-dark);color:var(--white);position:absolute;top:2px;left:42px;padding:4px;visibility:visible}.wizard-stepbar .wizard-steps-container .wizard-step .delegate-icon-disabled{font-size:var(--font-size-small);border-radius:50%;border-color:var(--black);background-color:var(--neutral-dark-mid);color:var(--black);position:absolute;top:2px;left:42px;padding:.3em;visibility:visible}.wizard-stepbar .wizard-steps-container.wizard-collapsed{display:none}.wizard-stepbar .wizard-steps-container.wizard-expand{display:block}.wizard-stepbar .collapse-control{display:flex;justify-content:center;align-items:center;cursor:pointer;position:absolute;top:0;left:210px;width:30px;height:30px;background-color:var(--accent-5);border-radius:0 0 10px}.wizard-stepbar .collapse-control i{font-size:var(--font-size-medium);color:var(--white)}.wizard-stepbar .collapse-control--open{left:210px}.wizard-stepbar .collapse-control--closed{left:0}.address-row{margin-left:10px;margin-right:10px;padding:0;margin-bottom:0;display:flex}.address-row .address-item{flex-basis:220px;margin-left:10px}.address-item .autocomplete-address-container .mdf-validated-field{flex:1 1 auto}.address-item-state{display:inline-flex;width:50%}.address-item-postalcode{display:inline-flex;width:47%;margin-left:3%}.address-item-textbox{width:100%}.address-item-expand-textbox{width:calc(100% - 20px)}.autocomplete-address-container{display:flex;align-items:flex-end}.autocomplete-address-expand{color:var(--link-color);font-size:var(--font-size-small);cursor:pointer;position:relative;margin-left:5px;margin-bottom:15px;padding:0px 1px 0px 1px}.autocomplete-address-expand:focus{border:2px solid;border-radius:50%}.mdf.one-ux .ag-theme-adp-33 .ag-indeterminate,.mdf .ag-theme-adp-33 .ag-indeterminate,.vdl .mdf .ag-theme-adp-33 .ag-indeterminate{background-color:var(--sdf-context-input-checkbox-indicator-style-selected-fill-color, #476bc3);border-color:var(--sdf-context-input-checkbox-indicator-style-selected-stroke-top-color, #476bc3)}.mdf.one-ux .ag-theme-adp-33 .ag-cell,.mdf .ag-theme-adp-33 .ag-cell,.vdl .mdf .ag-theme-adp-33 .ag-cell{line-height:var(--line-height-base);padding-top:.625rem;padding-bottom:.625rem}.mdf.one-ux .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height,.mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height,.vdl .mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height{line-height:var(--line-height-base);overflow:hidden}.mdf.one-ux .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper,.mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper,.vdl .mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper{height:unset}.mdf.one-ux .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper .wfn-cell-padding,.mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper .wfn-cell-padding,.vdl .mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.ag-cell-auto-height .ag-cell-wrapper .wfn-cell-padding{padding-top:.625rem}.mdf.one-ux .ag-theme-adp-33 .ag-cell .ag-cell-wrapper>:not(.ag-cell-value):not(.ag-group-value),.mdf .ag-theme-adp-33 .ag-cell .ag-cell-wrapper>:not(.ag-cell-value):not(.ag-group-value),.vdl .mdf .ag-theme-adp-33 .ag-cell .ag-cell-wrapper>:not(.ag-cell-value):not(.ag-group-value){align-items:flex-start;padding-top:.125rem}.mdf.one-ux .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.wfn-cell-status-error,.mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.wfn-cell-status-error,.vdl .mdf .ag-theme-adp-33 .ag-cell.ag-cell-not-inline-editing.wfn-cell-status-error{outline:var(--input-border-invalid);border-radius:var(--input-border-radius);outline-offset:-4px}.mdf.one-ux .ag-theme-adp-33 .ag-cell-inline-editing,.mdf .ag-theme-adp-33 .ag-cell-inline-editing,.vdl .mdf .ag-theme-adp-33 .ag-cell-inline-editing{background-color:var(--white);height:48px;padding-top:0;padding-bottom:0}.mdf.one-ux .ag-theme-adp-33 .ag-header-group-cell-label,.mdf .ag-theme-adp-33 .ag-header-group-cell-label,.vdl .mdf .ag-theme-adp-33 .ag-header-group-cell-label{justify-content:center}.mdf.one-ux .ag-theme-adp-33 .ag-floating-filter,.mdf .ag-theme-adp-33 .ag-floating-filter,.vdl .mdf .ag-theme-adp-33 .ag-floating-filter{display:inline-flex}.mdf.one-ux .ag-theme-adp-33 .ag-header-cell:focus::after,.mdf .ag-theme-adp-33 .ag-header-cell:focus::after,.vdl .mdf .ag-theme-adp-33 .ag-header-cell:focus::after{background-color:rgba(0,0,0,0);border:1px solid;border-color:var(--ag-input-focus-border-color);content:"";display:block;height:calc(100% - 8px);left:4px;pointer-events:none;position:absolute;top:4px;width:calc(100% - 8px)}.mdf.one-ux .ag-theme-adp-33 .ag-header-cell-text,.mdf .ag-theme-adp-33 .ag-header-cell-text,.vdl .mdf .ag-theme-adp-33 .ag-header-cell-text{white-space:inherit}.mdf.one-ux .ag-theme-adp-33 .ag-header-cell-wrap-text .ag-header-cell-comp-wrapper,.mdf .ag-theme-adp-33 .ag-header-cell-wrap-text .ag-header-cell-comp-wrapper,.vdl .mdf .ag-theme-adp-33 .ag-header-cell-wrap-text .ag-header-cell-comp-wrapper{white-space:normal}.mdf.one-ux .ag-theme-adp-33 .ag-cell-label-container,.mdf .ag-theme-adp-33 .ag-cell-label-container,.vdl .mdf .ag-theme-adp-33 .ag-cell-label-container{height:initial;padding:5px 0 5px 0}.mdf.one-ux .ag-theme-adp-33 .ag-header-cell-comp-wrapper,.mdf .ag-theme-adp-33 .ag-header-cell-comp-wrapper,.vdl .mdf .ag-theme-adp-33 .ag-header-cell-comp-wrapper{width:100%;overflow:hidden}.mdf.one-ux .ag-theme-adp-33 .ag-cell-wrap-text,.mdf .ag-theme-adp-33 .ag-cell-wrap-text,.vdl .mdf .ag-theme-adp-33 .ag-cell-wrap-text{word-break:normal}.mdf.one-ux .ag-theme-adp-33.ag-disable-min-height .ag-center-cols-viewport,.mdf .ag-theme-adp-33.ag-disable-min-height .ag-center-cols-viewport,.vdl .mdf .ag-theme-adp-33.ag-disable-min-height .ag-center-cols-viewport{min-height:unset}.mdf.one-ux .ag-theme-adp-33 .ag-center-cols-viewport,.mdf .ag-theme-adp-33 .ag-center-cols-viewport,.vdl .mdf .ag-theme-adp-33 .ag-center-cols-viewport{min-height:72px}.mdf.one-ux .ag-theme-adp-33.ag-wfn-focused:focus,.mdf .ag-theme-adp-33.ag-wfn-focused:focus,.vdl .mdf .ag-theme-adp-33.ag-wfn-focused:focus{outline:0;box-shadow:var(--input-focus)}.mdf .ag-theme-adp-33 .ag-cell-inline-editing,.vdl .mdf .ag-theme-adp-33 .ag-cell-inline-editing{background-color:var(--white);height:48px;padding-top:0;padding-bottom:0}.mdf.one-ux .ag-theme-adp-33.no-stripes,.mdf .ag-theme-adp-33.no-stripes,.vdl .mdf .ag-theme-adp-33.no-stripes{--ag-odd-row-background-color: var(--ag-background-color)}.one-ux-experimental .ag-theme-adp-33 .ag-header{--ag-header-background-color: var(--sdf-color-base-gray-200)}.vdl-alert--animate,.mdf .vdl-alert--animate{animation-name:none !important}.vdl-alert--contentPane{margin-top:10px}.icon-alert-error{color:var(--sdf-context-alert-inline-style-primary-error-icon-color, #c53422)}.icon-alert-info{color:var(--sdf-context-alert-inline-style-primary-info-icon-color, #476bc3)}.icon-alert-neutral{color:var(--sdf-context-alert-inline-style-primary-neutral-icon-color, #544e4a)}.icon-alert-success{color:var(--sdf-context-alert-inline-style-primary-success-icon-color, #407b30)}.icon-alert-warning{color:var(--sdf-context-alert-inline-style-primary-warning-icon-color, #b65700)}.pac-container{z-index:1051}.mdf .vdl-avatar--stretch.vdl-avatar{background-size:100% 100%;background-repeat:no-repeat}.vdl-badge{padding-left:var(--badge-padding-left);padding-right:var(--badge-padding-right);padding-top:var(--badge-padding-top);padding-bottom:var(--badge-padding-bottom);font-size:.75em;margin-right:.75em}.vdl-badge.rounded{border-radius:5px}.vdl-badge--default{color:var(--badge-color);background-color:var(--badge-background)}.vdl-badge--success{color:var(--white);background-color:var(--accent-1-dark)}.vdl-badge--info{color:var(--white);background-color:var(--accent-0-dark)}.vdl-badge--warning{color:var(--black);background-color:var(--accent-5)}.vdl-badge--error{color:var(--white);background-color:var(--accent-6)}.vdl-badge--pending{color:var(--black);background-color:var(--accent-5)}.vdl-badge--start{color:var(--white);background-color:var(--accent-0-dark)}.vdl-badge--attention{color:var(--black);background-color:var(--accent-5)}.vdl-badge--tip{color:var(--white);background-color:var(--accent-0-dark)}.vdl-badge--neutral{color:var(--white);background-color:var(--neutral-dark)}.mdf .vdl-button--primary,.mdf .vdl-button--secondary,.mdf .vdl-button.vdl-button--primary,.mdf .vdl-button.vdl-button--secondary,.vdl-button--primary,.vdl-button--secondary,.vdl-button.vdl-button--primary,.vdl-button.vdl-button--secondary{min-width:auto}.mdf .vdl-button .vdl-button__container,.vdl-button .vdl-button__container{text-decoration:inherit}.vdl-button:not(.vdl-button--icon) .vdl-button__icon{padding-right:3px}.mdf label>.vdl-button.vdl-button--link,.mdf label span.mdf-simple-help-icon-container>.vdl-button.vdl-button--link{padding:0 0 0 5px;margin:0}.mdf div:not([class*=flex])>.vdl-button+sdf-button{margin-left:1rem}.mdf div:not([class*=flex])>sdf-button+.vdl-button{margin-left:1rem}.mdf div:not([class*=flex])>sdf-button+sdf-button{margin-left:1rem}.mdf .mdf-button-compatibility{margin:9px 15px}.mdfBusyIndicatorContainer{position:relative;width:100%;height:100%}.calendar{background-color:var(--white);display:flex;flex-direction:column;padding:0 5px;min-width:240px}.calendar-grid{display:flex;flex-wrap:wrap;flex:1 1 auto}.calendar-grid-select{width:70px;flex:0 33%;display:flex;justify-content:center;cursor:pointer}.calendar-grid-select-item{text-align:center;border:1px solid var(--accent-0-darker);margin:5px;padding:10px;border-radius:50%;justify-content:center;color:var(--accent-0-darker);font-size:var(--font-size-medium);flex:1;display:flex;align-items:center}.calendar-grid-select-item__selected{background-color:var(--accent-0-dark);color:var(--white)}.calendar-grid-select-item__disabled{color:var(--neutral);border-color:var(--neutral);cursor:auto}.calendar-grid-item{flex:1 13%;display:flex;cursor:pointer;align-items:center;flex-direction:column;font-size:var(--font-size-medium);font-weight:600;justify-content:center;margin:1px;height:32px;width:32px;border-radius:50%}.calendar-grid-item .vdl-button--link{font-size:var(--font-size-medium);font-weight:600;color:var(--secondary-text-color);margin:0;display:flex;justify-content:center;align-items:center;width:100%;height:100%;border-radius:50%}.calendar-grid-item .vdl-button[disabled] .vdl-button__container{color:var(--neutral-dark)}.calendar-grid-item:hover:not([disabled]){background-color:var(--accent-0-lightest);color:#324fa5}.calendar-grid-item-day{padding:5px;display:flex;width:100%;justify-content:center}.calendar-grid-item__today{background-color:var(--accent-0-darker);color:var(--white);box-shadow:var(--input-focus)}.calendar-grid-item__today:hover:not([disabled]){background-color:#324fa5;color:var(--white)}.calendar-grid-item__selected{background-color:var(--accent-0-darker);color:var(--white);box-shadow:var(--input-focus)}.calendar-grid-item__selected:hover:not([disabled]){background-color:#324fa5;color:var(--white)}.calendar-grid-item__disabled{color:var(--neutral-dark);cursor:auto}.calendar-grid-item-range{flex:1 13%;display:flex;cursor:pointer;align-items:center;flex-direction:column;font-size:var(--font-size-medium);font-weight:600;justify-content:center;height:32px;width:32px}.calendar-grid-item-range .vdl-button--link{font-size:var(--font-size-medium);font-weight:600;color:var(--secondary-text-color);margin:0;display:flex;justify-content:center;align-items:center;width:100%;height:100%;border-radius:50%}.calendar-grid-item-range .vdl-button[disabled] .vdl-button__container{color:var(--neutral-dark)}.calendar-grid-item-range:hover:not([disabled]){background-color:var(--accent-0-lightest);color:#324fa5}.calendar-header{color:var(--primary-dark);display:flex;font-size:var(--font-size-large);font-weight:400;cursor:pointer;align-items:center}.calendar-header-navbutton .vdl-button--link{cursor:pointer;margin:0;font-size:18px;display:flex;align-content:center}.calendar-header-currentDate{flex:1;display:flex;justify-content:center;gap:.5rem;padding:.5rem .25rem .5rem .25rem}.calendar-header-currentDate-selector>svg{height:1.25em}.calendar-header-currentDate a{color:var(--primary-dark);text-transform:var(--button-text-transform)}.calendar-weekdays{display:flex;margin:10px 0;align-items:center}.calendar-weekdays-item{flex:0 14.28571%;font-size:var(--font-size-small);display:flex;justify-content:center;align-items:center;text-transform:var(--text-transform);font-weight:600}.calendar-weekdays-item__disabled{color:var(--neutral-light);border-color:var(--neutral);cursor:auto}.mdf .mdf-card{min-width:200px;background:var(--neutral-light);border:2px solid var(--neutral-light);margin-bottom:0px}.mdf .mdf-card:hover{border:2px solid var(--accent-0)}.mdf .mdf-card.mdf-card__wrapper__disabled{min-height:200px;background:var(--neutral-light);border:2px solid var(--neutral-light)}.mdf .mdf-card.mdf-card__wrapper__disabled:hover{border:2px solid var(--neutral-light)}.mdf .mdf-card.mdf-card__wrapper__disabled .vdl-card__wrapper{background:var(--neutral-light)}.mdf .mdf-card.mdf-card__disabled__selected{border:2px solid var(--neutral);background:var(--neutral-light);border:2px solid var(--neutral-light)}.mdf .mdf-card.mdf-card__disabled__selected:hover{border:2px solid var(--neutral-light)}.mdf .mdf-card .mdf-card__wrapper{min-height:200px}.mdf .mdf-card .vdl-card__wrapper{border-width:0;position:relative}.mdf .mdf-card .vdl-card__wrapper .check{position:absolute;right:2px;color:var(--white);top:1px}.mdf .mdf-card .vdl-card__wrapper .check-waypoint{position:absolute;right:-1px;color:var(--white);top:-2px}.mdf .mdf-card .vdl-card__wrapper .check__disabled__selected{color:var(--neutral-dark)}.mdf .mdf-card .vdl-card__wrapper .mdf-card-content{margin:5px}.mdf .mdf-card .triangle{width:0;border-top:30px solid var(--neutral-light);border-left:30px solid rgba(0,0,0,0);margin-left:auto}.mdf .mdf-card .triangle:hover{border-top:30px solid var(--accent-0)}.mdf .mdf-card .triangle__disabled{border-top:30px solid var(--neutral-lightest)}.mdf .mdf-card .triangle__disabled:hover{border-top:30px solid var(--neutral-lightest)}.mdf .mdf-card .triangle__selected{border-top:30px solid var(--accent-0-dark)}.mdf .mdf-card .triangle__disabled__selected{border-top:30px solid var(--neutral)}.mdf .mdf-card .triangle__disabled__selected:hover{border-top:30px solid var(--neutral)}.mdf .mdf-card__selected{border:2px solid var(--accent-0-dark)}.mdf .mdf-card-atom .vdl-accordion .vdl-accordion-panel.vdl-accordion-panel--expanded{background-color:inherit}.mdf .mdf-card-atom .vdl-accordion .vdl-accordion-panel.vdl-accordion-panel--expanded .vdl-accordion-collapse--entered{background-color:inherit}.slick-prev,.slick-next{position:absolute;display:block;height:20px;width:20px;line-height:0;font-size:0;cursor:pointer;background:rgba(0,0,0,0);color:rgba(0,0,0,0);top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);padding:0;border:none;outline:none}.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus{outline:none;background:rgba(0,0,0,0);color:rgba(0,0,0,0)}.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before{opacity:1}.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before{opacity:.25}.slick-prev:before,.slick-next:before{font-family:"FontAwesome";font-size:30px;line-height:1;color:#fff;opacity:.75;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-prev{left:-25px}[dir=rtl] .slick-prev{left:auto;right:-25px}.slick-prev:before{content:""}[dir=rtl] .slick-prev:before{content:""}.slick-next{right:-25px}[dir=rtl] .slick-next{left:-25px;right:auto}.slick-next:before{content:""}[dir=rtl] .slick-next:before{content:""}.slick-dotted.slick-slider{margin-bottom:30px}.slick-dots{position:absolute;bottom:-25px;list-style:none;display:block;text-align:center;padding:0;margin:0;width:100%}.slick-dots li{position:relative;display:inline-block;height:20px;width:20px;margin:0 5px;padding:0;cursor:pointer}.slick-dots li button{border:0;background:rgba(0,0,0,0);display:block;height:20px;width:20px;outline:none;line-height:0;font-size:0;color:#000;padding:5px;cursor:pointer}.slick-dots li button:hover,.slick-dots li button:focus{outline:none}.slick-dots li button:hover:before,.slick-dots li button:focus:before{opacity:1}.slick-dots li button:before{position:absolute;top:0;left:0;content:"";width:20px;height:20px;font-family:"FontAwesome";font-size:6px;line-height:20px;text-align:center;color:#000;opacity:.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.slick-dots li.slick-active button:before{color:#000;opacity:.75}.mdf-carousel{padding:10px}.slick-prev:before,.slick-next:before{color:var(--link-color)}.carousel-img{object-fit:cover;font-family:"object-fit: cover;"}.mdf .vdl-button--link.mdf-chat-button,.mdf .vdl-button--link.mdf-chat-button:focus,.mdf .vdl-button--link.mdf-chat-button:hover{color:var(--black);font-size:var(--font-size-base);text-decoration:none;text-transform:none}.mdf .vdl-button--link.mdf-chat-button .vdl-button__container,.mdf .vdl-button--link.mdf-chat-button:focus .vdl-button__container,.mdf .vdl-button--link.mdf-chat-button:hover .vdl-button__container{display:flex;align-items:flex-end}.mdf .vdl-button--link.mdf-chat-button .vdl-button__icon,.mdf .vdl-button--link.mdf-chat-button:focus .vdl-button__icon,.mdf .vdl-button--link.mdf-chat-button:hover .vdl-button__icon{color:var(--accent-1-dark);padding-left:5px}.mdf-chat-button-tooltip{width:260px}.mdf-checkboxSet--horizontal{display:flex}.mdf-checkboxSet--horizontal .mdf-checkbox{margin-right:15px}.mdf .rule-card{margin-bottom:20px}.mdf .rule-container{margin-left:-5px}.mdf .rule-container .rule-row-label{display:flex;align-items:center;justify-content:center;margin-right:30px}@media screen and (max-width: 530px){.mdf .rule-container .rule-row-label{padding-bottom:3px}}.mdf .rule-titleheader{display:flex;flex-wrap:wrap;margin-left:20px;margin-right:25px;margin-bottom:20px;border-bottom:1px solid var(--neutral-mid)}.mdf .rule-titleheader-row{display:flex;align-items:center;justify-content:center}.mdf .rule-titleheader-row-medium{font-size:var(--font-size-medium);font-weight:600;margin-top:10px;margin-bottom:10px;padding-right:20px}.mdf .rule-titleheader-row-subtitle{color:var(--neutral-darker);font-weight:600;padding-left:10px;padding-right:10px}.mdf .rule-titleheader-row-operator{width:80px}.mdf .rule-titleheader-row-end{display:flex;flex:1 1 0%;justify-content:flex-end}.mdf .rule-titleheader-row-divider{border-right:1px solid var(--neutral-mid);margin:10px 0 10px 0}.mdf .rule-header{display:flex;flex-wrap:wrap;margin-left:5px;height:40px;align-items:center}.mdf .rule-header-field{flex:0 0 25%;max-width:25%;padding-right:15px;font-weight:600;color:var(--neutral-darker);text-transform:uppercase;font-size:var(--font-size-small);padding-left:10px}.mdf .rule-header-field:last-child{padding-right:0}.mdf .rule-alert{margin-left:20px;margin-right:25px}@media screen and (max-width: 530px){.mdf .rule-row{flex-direction:column}}@media only screen and (max-width: 530px)and (max-width: 530px){.mdf .rule-row-field{min-width:100%}}@media only screen and (max-width: 530px)and (max-width: 530px)and (max-width: 530px){.mdf .rule-row .removebtn,.mdf .rule-row .join-operator-label{display:flex;justify-content:center}}.mdf .rule-row{display:flex;margin-left:20px;margin-right:25px;margin-bottom:10px}.mdf .rule-row:first-child{margin-top:20px}.mdf .rule-row-field{flex:0 0 27%;max-width:27%;padding-right:15px}.mdf .rule-row-field:last-child{padding-right:0}.mdf .rule-row-field .join-operator-label{flex:0 0 5%;max-width:5%}.mdf .rule-row-field .operator-label{font-size:18px;text-transform:uppercase;font-weight:600;color:var(--neutral)}.mdf .rule-row .operator{flex:0 0 25%;max-width:25%}.mdf .rule-row .join-operator{flex:0 0 10%;max-width:10%;padding-right:0}.mdf .rule-row .removebtn,.mdf .rule-row .join-operator-label{display:flex;flex:0 0 5%;max-width:5%;margin-bottom:10px;align-items:center}.mdf .rule-row .removebtn>button,.mdf .rule-row .join-operator-label>button{padding:5px}.mdf .rule-seperator{margin-left:auto}.mdf .rule-seperator-icon{color:var(--link-color);padding-right:10px}.mdf .rule-bottom{margin-left:20px;margin-bottom:20px}.mdf .rule-operator{display:flex;flex-wrap:wrap;padding:0 0 15px 0;text-transform:var(--text-transform)}.mdf .rule-operator-button .vdl-list__option{text-transform:var(--text-transform)}.mdf .rule-group{margin-bottom:20px}.mdf .rule-group-titleheader{display:flex;flex-wrap:wrap;padding-left:20px;padding-right:25px;border-top-left-radius:5px;border-top-right-radius:5px}.mdf .rule-group-titleheader-row{display:flex;align-items:center;justify-content:center;border-bottom:1px solid var(--neutral-mid)}.mdf .rule-group-titleheader-row-medium{padding-right:20px;font-size:var(--font-size-medium);font-weight:700;margin-top:10px;margin-bottom:10px}.mdf .rule-group-titleheader-row-subtitle{color:var(--neutral-darker);font-weight:600;padding-left:10px;padding-right:10px}.mdf .rule-group-titleheader-row-operator{width:80px}.mdf .rule-group-titleheader-row-end{display:flex;flex:1 1 0%;justify-content:flex-end;border-bottom:1px solid var(--neutral-mid)}.mdf .rule-group-titleheader-row-divider{border-right:1px solid var(--neutral-mid);margin:10px 0 10px 0}.mdf .rule-group-titleheader .vdl-button--link:hover:not([disabled]),.mdf .rule-group-titleheader .vdl-button--link:focus:not([disabled]),.mdf .rule-group-titleheader .vdl-button--link:active:not([disabled]){box-shadow:inset 2px 2px var(--white),inset -2px -2px var(--white);background-color:var(--link-color)}.mdf .rule-group-titleheader .vdl-button--link .vdl-button__container{color:var(--white)}.mdf .rule-group-titleheader .vdl-button--link[disabled] .vdl-button__container{color:var(--neutral-disabled)}.mdf .rule-group-container{padding:15px 15px 0 15px}.mdf .rule-summary-header{border-bottom:1px solid var(--neutral-mid)}.mdf .rule-summary-panel{margin-left:20px;margin-right:20px}.mdf .rule-summary-main{display:flex}.mdf .rule-summary-title{display:flex;flex:0 0 15%;align-self:flex-start}.mdf .rule-summary-title-medium{font-size:var(--font-size-medium);font-weight:600;margin-top:10px;margin-bottom:10px}.mdf .rule-summary-value{flex:0 0 85%}.mdf .rule-summary-value>div{display:flex}.mdf .rule-summary-text{display:flex;margin-top:11px;margin-right:50px}.mdf .rule-summary-operator{display:flex;text-transform:var(--text-transform);margin-top:2px}.mdf .rule-summary-divider{display:flex;text-transform:var(--text-transform)}.mdf .rule-summary-divider-medium{font-size:var(--font-size-medium);font-weight:600;margin-top:10px;margin-bottom:10px}.mdf .rule-summary-divider-line{display:flex;align-items:center;width:100%}.mdf .rule-summary-divider-line-border{border-top:1px solid var(--white);margin-left:10px;width:100%}.mdf .rule-summary-empty{display:flex;padding-left:50px}.mdf .rule-summary-group-value{border-left:1px solid var(--neutral-mid);margin-left:15px;padding-left:15px}.mdf .mdf-custom-wizard,.mdf-custom-wizard{margin:10px 0;display:flex;flex-direction:column;position:relative;padding-bottom:80px}.mdf .mdf-custom-wizard-header,.mdf-custom-wizard-header{color:var(--link-color);font-size:var(--font-size-medium)}.mdf .mdf-custom-wizard-header-prefix,.mdf-custom-wizard-header-prefix{padding-right:10px;font-weight:600}.mdf .mdf-custom-wizard-header-prefix::after,.mdf-custom-wizard-header-prefix::after{content:":"}.mdf .mdf-custom-wizard-header-progress .vdl-progress-bar__bar,.mdf-custom-wizard-header-progress .vdl-progress-bar__bar{background-color:var(--neutral)}.mdf .mdf-custom-wizard-header-progress .vdl-progress-bar__percentage,.mdf-custom-wizard-header-progress .vdl-progress-bar__percentage{height:5px}.mdf .mdf-custom-wizard-steps,.mdf-custom-wizard-steps{margin:0 5px}.mdf .mdf-custom-wizard-step,.mdf-custom-wizard-step{display:flex;flex:1 1 auto;flex-direction:column;align-items:flex-start}.mdf .mdf-custom-wizard-footer,.mdf-custom-wizard-footer{flex:1;display:flex}.mdf .mdf-custom-wizard-footer-navbutton,.mdf-custom-wizard-footer-navbutton{margin-left:5px;margin-right:5px}.mdf .mdf-custom-wizard-footer-navbutton.mdf-pull-left,.mdf-custom-wizard-footer-navbutton.mdf-pull-left{margin-left:0;margin-right:auto}.mdf .mdf-custom-wizard-footer-navbutton.mdf-pull-left i,.mdf-custom-wizard-footer-navbutton.mdf-pull-left i{margin-right:3px}.mdf .mdf-custom-wizard-footer-navbutton.mdf-pull-right,.mdf-custom-wizard-footer-navbutton.mdf-pull-right{margin-left:auto;margin-right:0}.mdf .mdf-custom-wizard-footer-navbutton.mdf-pull-right i,.mdf-custom-wizard-footer-navbutton.mdf-pull-right i{margin-left:3px}@media screen and (max-width: 480px){.mdf .mdf-custom-wizard .mdf .mdf-segmented-wizard-header .mdf-segmented-wizard-header-item-text,.mdf-custom-wizard .mdf .mdf-segmented-wizard-header .mdf-segmented-wizard-header-item-text{font-size:10px}}@media(min-width: 980px){.mdf .mdf-custom-wizard .mdf-snackbar,.mdf-custom-wizard .mdf-snackbar{position:absolute}}.mdfDashboard{display:flex;flex-wrap:nowrap;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.mdf .mdf-draggable .vdl-tile__content{min-height:0}.mdf .flex-start,.flex-start{display:flex;justify-content:flex-start;flex-wrap:wrap;width:100%}.mdf .flex-space-between,.flex-space-between{display:flex;justify-content:space-between;flex-wrap:wrap;width:100%}.mdf .bottom-padding,.bottom-padding{padding-bottom:5px}.mdf .flex-1-col,.flex-2-col{width:100%}.mdf .flex-2-cols,.flex-2-cols{width:49%}.mdf .flex-3-cols,.flex-3-cols{width:32%}.mdf .flex-4-cols,.flex-4-cols{width:24%}.mdf .flex-5-cols,.flex-5-cols{width:19%}.mdf .flex-6-cols,.flex-6-cols{width:16%}.mdf .flex-7-cols,.flex-7-cols{width:14%}.mdf .flex-8-cols,.flex-8-cols{width:12%}.mdf .flex-9-cols,.flex-9-cols{width:10%}.mdf .flex-10-cols,.flex-10-cols{width:9%}.mdf .flex-11-cols,.flex-11-cols{width:8%}.mdf .flex-12-cols,.flex-12-cols{width:7%}.status-ring .bg-container{width:100%;height:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.status-ring .bg-container>*{width:100%;height:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral);top:-34px}.vdl-status-ring--sm-neutral>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral>.status-badge{width:15px;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral);display:none}.vdl-status-ring--sm-neutral>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral);display:none}.vdl-status-ring--sm-neutral>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--sm-neutral .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--sm-neutral .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);display:none !important}.vdl-status-ring--sm-neutral .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral);top:-5px}.vdl-status-ring--smd-neutral>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral>.status-badge{width:15px;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--smd-neutral>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--smd-neutral>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--smd-neutral .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--smd-neutral .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:10px}.vdl-status-ring--smd-neutral .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral);top:-5px}.vdl-status-ring--md-neutral>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--md-neutral>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--md-neutral>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--md-neutral .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--md-neutral .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--md-neutral .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:10px}.vdl-status-ring--md-neutral .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral);top:-1px}.vdl-status-ring--lg-neutral>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--lg-neutral>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--lg-neutral>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--lg-neutral .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--lg-neutral .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:14px}.vdl-status-ring--lg-neutral .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral)}.vdl-status-ring--xl-neutral>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--xl-neutral>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--xl-neutral>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--xl-neutral .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--xl-neutral .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:16px}.vdl-status-ring--xl-neutral .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-lightest{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-lightest:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-lightest);top:-34px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-lightest);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest);display:none}.vdl-status-ring--sm-neutral-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-lightest);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest);display:none}.vdl-status-ring--sm-neutral-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-lightest .vdl-status-ring-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--sm-neutral-lightest .vdl-status-badge-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--sm-neutral-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lightest)}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lightest);display:none !important}.vdl-status-ring--sm-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral-lightest{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-lightest:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-lightest);top:-5px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--smd-neutral-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-lightest>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--smd-neutral-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-lightest .vdl-status-ring-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--smd-neutral-lightest .vdl-status-badge-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--smd-neutral-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lightest)}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lightest);font-size:10px}.vdl-status-ring--smd-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral-lightest{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-lightest:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-lightest);top:-5px}.vdl-status-ring--md-neutral-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-lightest>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--md-neutral-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-lightest>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-lightest>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--md-neutral-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-lightest>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-lightest .vdl-status-ring-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--md-neutral-lightest .vdl-status-badge-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--md-neutral-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lightest)}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lightest);font-size:10px}.vdl-status-ring--md-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral-lightest{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-lightest:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-lightest);top:-1px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-lightest>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--lg-neutral-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-lightest>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-lightest>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--lg-neutral-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-lightest>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-lightest .vdl-status-ring-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--lg-neutral-lightest .vdl-status-badge-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--lg-neutral-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lightest)}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lightest);font-size:14px}.vdl-status-ring--lg-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral-lightest{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-lightest:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-lightest>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-lightest>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-lightest>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-lightest .vdl-status-ring-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest .vdl-status-badge-bg-color{background-color:var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lightest)}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lightest);font-size:16px}.vdl-status-ring--xl-neutral-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-lighter{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-lighter:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-lighter);top:-34px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-lighter);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter);display:none}.vdl-status-ring--sm-neutral-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-lighter);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter);display:none}.vdl-status-ring--sm-neutral-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-lighter .vdl-status-ring-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--sm-neutral-lighter .vdl-status-badge-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--sm-neutral-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lighter)}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lighter);display:none !important}.vdl-status-ring--sm-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral-lighter{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-lighter:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-lighter);top:-5px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--smd-neutral-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-lighter>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--smd-neutral-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-lighter .vdl-status-ring-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--smd-neutral-lighter .vdl-status-badge-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--smd-neutral-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lighter)}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lighter);font-size:10px}.vdl-status-ring--smd-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral-lighter{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-lighter:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-lighter);top:-5px}.vdl-status-ring--md-neutral-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-lighter>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--md-neutral-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-lighter>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-lighter>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--md-neutral-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-lighter>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-lighter .vdl-status-ring-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--md-neutral-lighter .vdl-status-badge-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--md-neutral-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lighter)}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lighter);font-size:10px}.vdl-status-ring--md-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral-lighter{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-lighter:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-lighter);top:-1px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-lighter>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--lg-neutral-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-lighter>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-lighter>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--lg-neutral-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-lighter>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-lighter .vdl-status-ring-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--lg-neutral-lighter .vdl-status-badge-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--lg-neutral-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lighter)}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lighter);font-size:14px}.vdl-status-ring--lg-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral-lighter{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-lighter:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-lighter>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-lighter>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-lighter>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-lighter .vdl-status-ring-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter .vdl-status-badge-bg-color{background-color:var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-lighter)}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-lighter);font-size:16px}.vdl-status-ring--xl-neutral-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-light);top:-34px}.vdl-status-ring--sm-neutral-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-light>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light);display:none}.vdl-status-ring--sm-neutral-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light);display:none}.vdl-status-ring--sm-neutral-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-light .vdl-status-ring-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--sm-neutral-light .vdl-status-badge-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--sm-neutral-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-light)}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-light);display:none !important}.vdl-status-ring--sm-neutral-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-light);top:-5px}.vdl-status-ring--smd-neutral-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-light>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--smd-neutral-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--smd-neutral-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-light .vdl-status-ring-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--smd-neutral-light .vdl-status-badge-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--smd-neutral-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-light)}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-light);font-size:10px}.vdl-status-ring--smd-neutral-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-light);top:-5px}.vdl-status-ring--md-neutral-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--md-neutral-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--md-neutral-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-light .vdl-status-ring-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--md-neutral-light .vdl-status-badge-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--md-neutral-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-light)}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-light);font-size:10px}.vdl-status-ring--md-neutral-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-light);top:-1px}.vdl-status-ring--lg-neutral-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--lg-neutral-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--lg-neutral-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-light .vdl-status-ring-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--lg-neutral-light .vdl-status-badge-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--lg-neutral-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-light)}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-light);font-size:14px}.vdl-status-ring--lg-neutral-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-light)}.vdl-status-ring--xl-neutral-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--xl-neutral-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-light)}.vdl-status-ring--xl-neutral-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-light .vdl-status-ring-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--xl-neutral-light .vdl-status-badge-bg-color{background-color:var(--neutral-light)}.vdl-status-ring--xl-neutral-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-light)}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-light);font-size:16px}.vdl-status-ring--xl-neutral-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-mid{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-mid:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-mid:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-mid>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-mid);top:-34px}.vdl-status-ring--sm-neutral-mid>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-mid>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-mid>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-mid>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-mid>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-mid>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-mid>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-mid);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-mid);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid);display:none}.vdl-status-ring--sm-neutral-mid>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-mid>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-mid>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-mid>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-mid);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-mid);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid);display:none}.vdl-status-ring--sm-neutral-mid>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-mid>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-mid>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-mid .vdl-status-ring-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--sm-neutral-mid .vdl-status-badge-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--sm-neutral-mid .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-mid);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-mid)}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-mid);display:none !important}.vdl-status-ring--sm-neutral-mid .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral-mid{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-mid:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-mid:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-mid>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-mid);top:-5px}.vdl-status-ring--smd-neutral-mid>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-mid>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-mid>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-mid>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-mid>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-mid>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-mid>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-mid);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--smd-neutral-mid>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-mid>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-mid>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-mid>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-mid);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--smd-neutral-mid>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-mid>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-mid>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-mid .vdl-status-ring-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--smd-neutral-mid .vdl-status-badge-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--smd-neutral-mid .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-mid);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-mid)}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-mid);font-size:10px}.vdl-status-ring--smd-neutral-mid .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral-mid{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-mid:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-mid:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-mid>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-mid);top:-5px}.vdl-status-ring--md-neutral-mid>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-mid>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-mid>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-mid>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-mid>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-mid>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-mid>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-mid);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--md-neutral-mid>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-mid>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-mid>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-mid>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-mid);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--md-neutral-mid>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-mid>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-mid>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-mid .vdl-status-ring-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--md-neutral-mid .vdl-status-badge-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--md-neutral-mid .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-mid);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-mid)}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-mid);font-size:10px}.vdl-status-ring--md-neutral-mid .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral-mid{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-mid:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-mid:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-mid>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-mid);top:-1px}.vdl-status-ring--lg-neutral-mid>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-mid>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-mid>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-mid>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-mid>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-mid>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-mid>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-mid);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--lg-neutral-mid>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-mid>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-mid>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-mid>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-mid);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--lg-neutral-mid>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-mid>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-mid>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-mid .vdl-status-ring-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--lg-neutral-mid .vdl-status-badge-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--lg-neutral-mid .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-mid);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-mid)}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-mid);font-size:14px}.vdl-status-ring--lg-neutral-mid .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral-mid{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-mid:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-mid:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-mid>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-mid>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-mid>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-mid>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-mid>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-mid>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-mid>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-mid);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-mid>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-mid>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-mid>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-mid);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-mid>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-mid>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-mid .vdl-status-ring-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid .vdl-status-badge-bg-color{background-color:var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-mid);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-mid)}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-mid);font-size:16px}.vdl-status-ring--xl-neutral-mid .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral);top:-34px}.vdl-status-ring--sm-neutral-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-base>.status-badge{width:15px;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral);display:none}.vdl-status-ring--sm-neutral-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral);display:none}.vdl-status-ring--sm-neutral-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-base .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--sm-neutral-base .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--sm-neutral-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);display:none !important}.vdl-status-ring--sm-neutral-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-neutral-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral);top:-5px}.vdl-status-ring--smd-neutral-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-base>.status-badge{width:15px;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--smd-neutral-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--smd-neutral-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-base .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--smd-neutral-base .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--smd-neutral-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:10px}.vdl-status-ring--smd-neutral-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-neutral-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral);top:-5px}.vdl-status-ring--md-neutral-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--md-neutral-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--md-neutral-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-base .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--md-neutral-base .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--md-neutral-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:10px}.vdl-status-ring--md-neutral-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-neutral-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral);top:-1px}.vdl-status-ring--lg-neutral-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--lg-neutral-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--lg-neutral-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-base .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--lg-neutral-base .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--lg-neutral-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:14px}.vdl-status-ring--lg-neutral-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-neutral-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral)}.vdl-status-ring--xl-neutral-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--xl-neutral-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral)}.vdl-status-ring--xl-neutral-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-base .vdl-status-ring-bg-color{background-color:var(--neutral)}.vdl-status-ring--xl-neutral-base .vdl-status-badge-bg-color{background-color:var(--neutral)}.vdl-status-ring--xl-neutral-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral)}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral);font-size:16px}.vdl-status-ring--xl-neutral-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-neutral-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-dark);top:-34px}.vdl-status-ring--sm-neutral-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-dark>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark);display:none}.vdl-status-ring--sm-neutral-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark);display:none}.vdl-status-ring--sm-neutral-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-dark .vdl-status-ring-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--sm-neutral-dark .vdl-status-badge-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--sm-neutral-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-dark)}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-dark);display:none !important}.vdl-status-ring--sm-neutral-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-neutral-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-dark);top:-5px}.vdl-status-ring--smd-neutral-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-dark>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--smd-neutral-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--smd-neutral-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-dark .vdl-status-ring-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--smd-neutral-dark .vdl-status-badge-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--smd-neutral-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-dark)}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-dark);font-size:10px}.vdl-status-ring--smd-neutral-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-neutral-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-dark);top:-5px}.vdl-status-ring--md-neutral-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--md-neutral-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--md-neutral-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-dark .vdl-status-ring-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--md-neutral-dark .vdl-status-badge-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--md-neutral-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-dark)}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-dark);font-size:10px}.vdl-status-ring--md-neutral-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-neutral-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-dark);top:-1px}.vdl-status-ring--lg-neutral-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--lg-neutral-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--lg-neutral-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-dark .vdl-status-ring-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--lg-neutral-dark .vdl-status-badge-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--lg-neutral-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-dark)}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-dark);font-size:14px}.vdl-status-ring--lg-neutral-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-neutral-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-dark .vdl-status-ring-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark .vdl-status-badge-bg-color{background-color:var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-dark)}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-dark);font-size:16px}.vdl-status-ring--xl-neutral-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-neutral-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-neutral-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-neutral-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-neutral-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--neutral-darker);top:-34px}.vdl-status-ring--sm-neutral-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-neutral-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-neutral-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-neutral-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-neutral-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-neutral-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-neutral-darker>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker);display:none}.vdl-status-ring--sm-neutral-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker);display:none}.vdl-status-ring--sm-neutral-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-neutral-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-neutral-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-neutral-darker .vdl-status-ring-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--sm-neutral-darker .vdl-status-badge-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--sm-neutral-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-darker)}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-darker);display:none !important}.vdl-status-ring--sm-neutral-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-neutral-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-neutral-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-neutral-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-neutral-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--neutral-darker);top:-5px}.vdl-status-ring--smd-neutral-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-neutral-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-neutral-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-neutral-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-neutral-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-neutral-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-neutral-darker>.status-badge{width:15px;height:15px;border:2px solid var(--neutral-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--smd-neutral-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--neutral-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--smd-neutral-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-neutral-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-neutral-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-neutral-darker .vdl-status-ring-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--smd-neutral-darker .vdl-status-badge-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--smd-neutral-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-darker)}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-darker);font-size:10px}.vdl-status-ring--smd-neutral-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-neutral-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-neutral-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-neutral-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-neutral-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--neutral-darker);top:-5px}.vdl-status-ring--md-neutral-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-neutral-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-neutral-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-neutral-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-neutral-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-neutral-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-neutral-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--neutral-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--md-neutral-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--neutral-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--md-neutral-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-neutral-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-neutral-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-neutral-darker .vdl-status-ring-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--md-neutral-darker .vdl-status-badge-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--md-neutral-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-darker)}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-darker);font-size:10px}.vdl-status-ring--md-neutral-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-neutral-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-neutral-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-neutral-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-neutral-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--neutral-darker);top:-1px}.vdl-status-ring--lg-neutral-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-neutral-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-neutral-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-neutral-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-neutral-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-neutral-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-neutral-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--neutral-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--lg-neutral-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--neutral-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--lg-neutral-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-neutral-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-neutral-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-neutral-darker .vdl-status-ring-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--lg-neutral-darker .vdl-status-badge-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--lg-neutral-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-darker)}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-darker);font-size:14px}.vdl-status-ring--lg-neutral-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-neutral-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-neutral-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-neutral-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-neutral-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-neutral-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-neutral-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-neutral-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-neutral-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-neutral-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-neutral-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--neutral-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--neutral-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-neutral-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-neutral-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-neutral-darker .vdl-status-ring-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker .vdl-status-badge-bg-color{background-color:var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--neutral-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--neutral-darker)}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--neutral-darker);font-size:16px}.vdl-status-ring--xl-neutral-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-0{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0);top:-34px}.vdl-status-ring--sm-accent-0>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0);display:none}.vdl-status-ring--sm-accent-0>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0);display:none}.vdl-status-ring--sm-accent-0>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0 .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--sm-accent-0 .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--sm-accent-0 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);display:none !important}.vdl-status-ring--sm-accent-0 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-0{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0);top:-5px}.vdl-status-ring--smd-accent-0>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--smd-accent-0>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--smd-accent-0>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0 .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--smd-accent-0 .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--smd-accent-0 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:10px}.vdl-status-ring--smd-accent-0 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-0{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0);top:-5px}.vdl-status-ring--md-accent-0>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--md-accent-0>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--md-accent-0>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0 .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--md-accent-0 .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--md-accent-0 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:10px}.vdl-status-ring--md-accent-0 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-0{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0);top:-1px}.vdl-status-ring--lg-accent-0>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--lg-accent-0>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--lg-accent-0>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0 .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--lg-accent-0 .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--lg-accent-0 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:14px}.vdl-status-ring--lg-accent-0 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-0{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0)}.vdl-status-ring--xl-accent-0>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--xl-accent-0>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--xl-accent-0>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0 .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--xl-accent-0 .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--xl-accent-0 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:16px}.vdl-status-ring--xl-accent-0 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-0-lightest{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-lightest:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0-lightest);top:-34px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-lightest);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest);display:none}.vdl-status-ring--sm-accent-0-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-lightest);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest);display:none}.vdl-status-ring--sm-accent-0-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-lightest .vdl-status-ring-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--sm-accent-0-lightest .vdl-status-badge-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--sm-accent-0-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lightest)}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lightest);display:none !important}.vdl-status-ring--sm-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-0-lightest{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-lightest:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0-lightest);top:-5px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--smd-accent-0-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-lightest>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--smd-accent-0-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-lightest .vdl-status-ring-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--smd-accent-0-lightest .vdl-status-badge-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--smd-accent-0-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lightest)}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lightest);font-size:10px}.vdl-status-ring--smd-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-0-lightest{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-lightest:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0-lightest);top:-5px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-lightest>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--md-accent-0-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-lightest>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-lightest>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--md-accent-0-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-lightest>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-lightest .vdl-status-ring-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--md-accent-0-lightest .vdl-status-badge-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--md-accent-0-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lightest)}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lightest);font-size:10px}.vdl-status-ring--md-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-0-lightest{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-lightest:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0-lightest);top:-1px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-lightest>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--lg-accent-0-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-lightest>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-lightest>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--lg-accent-0-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-lightest>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-lightest .vdl-status-ring-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--lg-accent-0-lightest .vdl-status-badge-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--lg-accent-0-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lightest)}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lightest);font-size:14px}.vdl-status-ring--lg-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-0-lightest{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-lightest:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-lightest>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-lightest>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-lightest>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-lightest .vdl-status-ring-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest .vdl-status-badge-bg-color{background-color:var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lightest)}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lightest);font-size:16px}.vdl-status-ring--xl-accent-0-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-0-lighter{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-lighter:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0-lighter);top:-34px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-lighter);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter);display:none}.vdl-status-ring--sm-accent-0-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-lighter);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter);display:none}.vdl-status-ring--sm-accent-0-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-lighter .vdl-status-ring-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--sm-accent-0-lighter .vdl-status-badge-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--sm-accent-0-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lighter)}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lighter);display:none !important}.vdl-status-ring--sm-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-0-lighter{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-lighter:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0-lighter);top:-5px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--smd-accent-0-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-lighter>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--smd-accent-0-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-lighter .vdl-status-ring-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--smd-accent-0-lighter .vdl-status-badge-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--smd-accent-0-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lighter)}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lighter);font-size:10px}.vdl-status-ring--smd-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-0-lighter{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-lighter:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0-lighter);top:-5px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-lighter>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--md-accent-0-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-lighter>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-lighter>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--md-accent-0-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-lighter>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-lighter .vdl-status-ring-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--md-accent-0-lighter .vdl-status-badge-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--md-accent-0-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lighter)}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lighter);font-size:10px}.vdl-status-ring--md-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-0-lighter{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-lighter:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0-lighter);top:-1px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-lighter>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--lg-accent-0-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-lighter>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-lighter>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--lg-accent-0-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-lighter>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-lighter .vdl-status-ring-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--lg-accent-0-lighter .vdl-status-badge-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--lg-accent-0-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lighter)}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lighter);font-size:14px}.vdl-status-ring--lg-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-0-lighter{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-lighter:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-lighter>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-lighter>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-lighter>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-lighter .vdl-status-ring-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter .vdl-status-badge-bg-color{background-color:var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-lighter)}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-lighter);font-size:16px}.vdl-status-ring--xl-accent-0-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-0-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0-light);top:-34px}.vdl-status-ring--sm-accent-0-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light);display:none}.vdl-status-ring--sm-accent-0-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light);display:none}.vdl-status-ring--sm-accent-0-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-light .vdl-status-ring-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--sm-accent-0-light .vdl-status-badge-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--sm-accent-0-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-light)}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-light);display:none !important}.vdl-status-ring--sm-accent-0-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-0-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0-light);top:-5px}.vdl-status-ring--smd-accent-0-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--smd-accent-0-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--smd-accent-0-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-light .vdl-status-ring-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--smd-accent-0-light .vdl-status-badge-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--smd-accent-0-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-light)}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-light);font-size:10px}.vdl-status-ring--smd-accent-0-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-0-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0-light);top:-5px}.vdl-status-ring--md-accent-0-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--md-accent-0-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--md-accent-0-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-light .vdl-status-ring-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--md-accent-0-light .vdl-status-badge-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--md-accent-0-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-light)}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-light);font-size:10px}.vdl-status-ring--md-accent-0-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-0-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0-light);top:-1px}.vdl-status-ring--lg-accent-0-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--lg-accent-0-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--lg-accent-0-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-light .vdl-status-ring-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--lg-accent-0-light .vdl-status-badge-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--lg-accent-0-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-light)}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-light);font-size:14px}.vdl-status-ring--lg-accent-0-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-0-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-light .vdl-status-ring-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light .vdl-status-badge-bg-color{background-color:var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-light)}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-light);font-size:16px}.vdl-status-ring--xl-accent-0-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-0-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0);top:-34px}.vdl-status-ring--sm-accent-0-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0);display:none}.vdl-status-ring--sm-accent-0-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0);display:none}.vdl-status-ring--sm-accent-0-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-base .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--sm-accent-0-base .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--sm-accent-0-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);display:none !important}.vdl-status-ring--sm-accent-0-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-0-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0);top:-5px}.vdl-status-ring--smd-accent-0-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--smd-accent-0-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--smd-accent-0-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-base .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--smd-accent-0-base .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--smd-accent-0-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:10px}.vdl-status-ring--smd-accent-0-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-0-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0);top:-5px}.vdl-status-ring--md-accent-0-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--md-accent-0-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--md-accent-0-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-base .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--md-accent-0-base .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--md-accent-0-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:10px}.vdl-status-ring--md-accent-0-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-0-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0);top:-1px}.vdl-status-ring--lg-accent-0-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--lg-accent-0-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--lg-accent-0-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-base .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--lg-accent-0-base .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--lg-accent-0-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:14px}.vdl-status-ring--lg-accent-0-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-0-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0)}.vdl-status-ring--xl-accent-0-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--xl-accent-0-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0)}.vdl-status-ring--xl-accent-0-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-base .vdl-status-ring-bg-color{background-color:var(--accent-0)}.vdl-status-ring--xl-accent-0-base .vdl-status-badge-bg-color{background-color:var(--accent-0)}.vdl-status-ring--xl-accent-0-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0)}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0);font-size:16px}.vdl-status-ring--xl-accent-0-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-0-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0-dark);top:-34px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark);display:none}.vdl-status-ring--sm-accent-0-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark);display:none}.vdl-status-ring--sm-accent-0-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-dark .vdl-status-ring-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--sm-accent-0-dark .vdl-status-badge-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--sm-accent-0-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-dark)}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-dark);display:none !important}.vdl-status-ring--sm-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-0-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0-dark);top:-5px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--smd-accent-0-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--smd-accent-0-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-dark .vdl-status-ring-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--smd-accent-0-dark .vdl-status-badge-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--smd-accent-0-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-dark)}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-dark);font-size:10px}.vdl-status-ring--smd-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-0-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0-dark);top:-5px}.vdl-status-ring--md-accent-0-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--md-accent-0-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--md-accent-0-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-dark .vdl-status-ring-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--md-accent-0-dark .vdl-status-badge-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--md-accent-0-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-dark)}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-dark);font-size:10px}.vdl-status-ring--md-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-0-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0-dark);top:-1px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--lg-accent-0-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--lg-accent-0-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-dark .vdl-status-ring-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--lg-accent-0-dark .vdl-status-badge-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--lg-accent-0-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-dark)}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-dark);font-size:14px}.vdl-status-ring--lg-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-0-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-dark .vdl-status-ring-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark .vdl-status-badge-bg-color{background-color:var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-dark)}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-dark);font-size:16px}.vdl-status-ring--xl-accent-0-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-0-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-0-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-0-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-0-darker);top:-34px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-0-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-0-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-0-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker);display:none}.vdl-status-ring--sm-accent-0-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker);display:none}.vdl-status-ring--sm-accent-0-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-0-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-0-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-0-darker .vdl-status-ring-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--sm-accent-0-darker .vdl-status-badge-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--sm-accent-0-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-darker)}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-darker);display:none !important}.vdl-status-ring--sm-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-0-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-0-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-0-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-0-darker);top:-5px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-0-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-0-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-0-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-0-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--smd-accent-0-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-0-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--smd-accent-0-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-0-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-0-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-0-darker .vdl-status-ring-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--smd-accent-0-darker .vdl-status-badge-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--smd-accent-0-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-darker)}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-darker);font-size:10px}.vdl-status-ring--smd-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-0-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-0-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-0-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-0-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-0-darker);top:-5px}.vdl-status-ring--md-accent-0-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-0-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-0-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-0-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-0-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-0-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-0-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-0-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--md-accent-0-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-0-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--md-accent-0-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-0-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-0-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-0-darker .vdl-status-ring-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--md-accent-0-darker .vdl-status-badge-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--md-accent-0-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-darker)}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-darker);font-size:10px}.vdl-status-ring--md-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-0-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-0-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-0-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-0-darker);top:-1px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-0-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-0-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-0-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-0-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--lg-accent-0-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-0-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--lg-accent-0-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-0-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-0-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-0-darker .vdl-status-ring-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--lg-accent-0-darker .vdl-status-badge-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--lg-accent-0-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-darker)}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-darker);font-size:14px}.vdl-status-ring--lg-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-0-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-0-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-0-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-0-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-0-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-0-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-0-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-0-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-0-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-0-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-0-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-0-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-0-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-0-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-0-darker .vdl-status-ring-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker .vdl-status-badge-bg-color{background-color:var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-0-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-0-darker)}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-0-darker);font-size:16px}.vdl-status-ring--xl-accent-0-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-1{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1);top:-34px}.vdl-status-ring--sm-accent-1>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1);display:none}.vdl-status-ring--sm-accent-1>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1);display:none}.vdl-status-ring--sm-accent-1>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1 .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--sm-accent-1 .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--sm-accent-1 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);display:none !important}.vdl-status-ring--sm-accent-1 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-1{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1);top:-5px}.vdl-status-ring--smd-accent-1>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--smd-accent-1>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--smd-accent-1>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1 .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--smd-accent-1 .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--smd-accent-1 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:10px}.vdl-status-ring--smd-accent-1 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-1{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1);top:-5px}.vdl-status-ring--md-accent-1>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--md-accent-1>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--md-accent-1>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1 .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--md-accent-1 .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--md-accent-1 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:10px}.vdl-status-ring--md-accent-1 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-1{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1);top:-1px}.vdl-status-ring--lg-accent-1>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--lg-accent-1>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--lg-accent-1>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1 .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--lg-accent-1 .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--lg-accent-1 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:14px}.vdl-status-ring--lg-accent-1 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-1{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1)}.vdl-status-ring--xl-accent-1>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--xl-accent-1>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--xl-accent-1>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1 .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--xl-accent-1 .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--xl-accent-1 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:16px}.vdl-status-ring--xl-accent-1 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-1-lightest{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-lightest:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1-lightest);top:-34px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-lightest);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest);display:none}.vdl-status-ring--sm-accent-1-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-lightest);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest);display:none}.vdl-status-ring--sm-accent-1-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-lightest .vdl-status-ring-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--sm-accent-1-lightest .vdl-status-badge-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--sm-accent-1-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lightest)}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lightest);display:none !important}.vdl-status-ring--sm-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-1-lightest{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-lightest:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1-lightest);top:-5px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--smd-accent-1-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-lightest>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--smd-accent-1-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-lightest .vdl-status-ring-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--smd-accent-1-lightest .vdl-status-badge-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--smd-accent-1-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lightest)}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lightest);font-size:10px}.vdl-status-ring--smd-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-1-lightest{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-lightest:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1-lightest);top:-5px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-lightest>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--md-accent-1-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-lightest>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-lightest>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--md-accent-1-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-lightest>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-lightest .vdl-status-ring-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--md-accent-1-lightest .vdl-status-badge-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--md-accent-1-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lightest)}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lightest);font-size:10px}.vdl-status-ring--md-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-1-lightest{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-lightest:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1-lightest);top:-1px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-lightest>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--lg-accent-1-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-lightest>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-lightest>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--lg-accent-1-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-lightest>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-lightest .vdl-status-ring-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--lg-accent-1-lightest .vdl-status-badge-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--lg-accent-1-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lightest)}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lightest);font-size:14px}.vdl-status-ring--lg-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-1-lightest{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-lightest:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-lightest>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-lightest>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-lightest>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-lightest .vdl-status-ring-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest .vdl-status-badge-bg-color{background-color:var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lightest)}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lightest);font-size:16px}.vdl-status-ring--xl-accent-1-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-1-lighter{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-lighter:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1-lighter);top:-34px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-lighter);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter);display:none}.vdl-status-ring--sm-accent-1-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-lighter);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter);display:none}.vdl-status-ring--sm-accent-1-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-lighter .vdl-status-ring-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--sm-accent-1-lighter .vdl-status-badge-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--sm-accent-1-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lighter)}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lighter);display:none !important}.vdl-status-ring--sm-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-1-lighter{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-lighter:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1-lighter);top:-5px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--smd-accent-1-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-lighter>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--smd-accent-1-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-lighter .vdl-status-ring-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--smd-accent-1-lighter .vdl-status-badge-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--smd-accent-1-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lighter)}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lighter);font-size:10px}.vdl-status-ring--smd-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-1-lighter{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-lighter:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1-lighter);top:-5px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-lighter>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--md-accent-1-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-lighter>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-lighter>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--md-accent-1-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-lighter>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-lighter .vdl-status-ring-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--md-accent-1-lighter .vdl-status-badge-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--md-accent-1-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lighter)}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lighter);font-size:10px}.vdl-status-ring--md-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-1-lighter{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-lighter:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1-lighter);top:-1px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-lighter>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--lg-accent-1-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-lighter>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-lighter>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--lg-accent-1-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-lighter>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-lighter .vdl-status-ring-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--lg-accent-1-lighter .vdl-status-badge-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--lg-accent-1-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lighter)}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lighter);font-size:14px}.vdl-status-ring--lg-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-1-lighter{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-lighter:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-lighter>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-lighter>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-lighter>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-lighter .vdl-status-ring-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter .vdl-status-badge-bg-color{background-color:var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-lighter)}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-lighter);font-size:16px}.vdl-status-ring--xl-accent-1-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-1-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1-light);top:-34px}.vdl-status-ring--sm-accent-1-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light);display:none}.vdl-status-ring--sm-accent-1-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light);display:none}.vdl-status-ring--sm-accent-1-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-light .vdl-status-ring-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--sm-accent-1-light .vdl-status-badge-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--sm-accent-1-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-light)}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-light);display:none !important}.vdl-status-ring--sm-accent-1-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-1-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1-light);top:-5px}.vdl-status-ring--smd-accent-1-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--smd-accent-1-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--smd-accent-1-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-light .vdl-status-ring-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--smd-accent-1-light .vdl-status-badge-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--smd-accent-1-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-light)}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-light);font-size:10px}.vdl-status-ring--smd-accent-1-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-1-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1-light);top:-5px}.vdl-status-ring--md-accent-1-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--md-accent-1-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--md-accent-1-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-light .vdl-status-ring-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--md-accent-1-light .vdl-status-badge-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--md-accent-1-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-light)}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-light);font-size:10px}.vdl-status-ring--md-accent-1-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-1-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1-light);top:-1px}.vdl-status-ring--lg-accent-1-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--lg-accent-1-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--lg-accent-1-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-light .vdl-status-ring-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--lg-accent-1-light .vdl-status-badge-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--lg-accent-1-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-light)}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-light);font-size:14px}.vdl-status-ring--lg-accent-1-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-1-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-light .vdl-status-ring-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light .vdl-status-badge-bg-color{background-color:var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-light)}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-light);font-size:16px}.vdl-status-ring--xl-accent-1-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-1-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1);top:-34px}.vdl-status-ring--sm-accent-1-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1);display:none}.vdl-status-ring--sm-accent-1-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1);display:none}.vdl-status-ring--sm-accent-1-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-base .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--sm-accent-1-base .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--sm-accent-1-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);display:none !important}.vdl-status-ring--sm-accent-1-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-1-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1);top:-5px}.vdl-status-ring--smd-accent-1-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--smd-accent-1-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--smd-accent-1-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-base .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--smd-accent-1-base .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--smd-accent-1-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:10px}.vdl-status-ring--smd-accent-1-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-1-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1);top:-5px}.vdl-status-ring--md-accent-1-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--md-accent-1-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--md-accent-1-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-base .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--md-accent-1-base .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--md-accent-1-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:10px}.vdl-status-ring--md-accent-1-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-1-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1);top:-1px}.vdl-status-ring--lg-accent-1-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--lg-accent-1-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--lg-accent-1-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-base .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--lg-accent-1-base .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--lg-accent-1-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:14px}.vdl-status-ring--lg-accent-1-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-1-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1)}.vdl-status-ring--xl-accent-1-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--xl-accent-1-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1)}.vdl-status-ring--xl-accent-1-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-base .vdl-status-ring-bg-color{background-color:var(--accent-1)}.vdl-status-ring--xl-accent-1-base .vdl-status-badge-bg-color{background-color:var(--accent-1)}.vdl-status-ring--xl-accent-1-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1)}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1);font-size:16px}.vdl-status-ring--xl-accent-1-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-1-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1-dark);top:-34px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark);display:none}.vdl-status-ring--sm-accent-1-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark);display:none}.vdl-status-ring--sm-accent-1-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-dark .vdl-status-ring-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--sm-accent-1-dark .vdl-status-badge-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--sm-accent-1-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-dark)}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-dark);display:none !important}.vdl-status-ring--sm-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-1-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1-dark);top:-5px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--smd-accent-1-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--smd-accent-1-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-dark .vdl-status-ring-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--smd-accent-1-dark .vdl-status-badge-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--smd-accent-1-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-dark)}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-dark);font-size:10px}.vdl-status-ring--smd-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-1-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1-dark);top:-5px}.vdl-status-ring--md-accent-1-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--md-accent-1-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--md-accent-1-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-dark .vdl-status-ring-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--md-accent-1-dark .vdl-status-badge-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--md-accent-1-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-dark)}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-dark);font-size:10px}.vdl-status-ring--md-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-1-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1-dark);top:-1px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--lg-accent-1-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--lg-accent-1-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-dark .vdl-status-ring-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--lg-accent-1-dark .vdl-status-badge-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--lg-accent-1-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-dark)}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-dark);font-size:14px}.vdl-status-ring--lg-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-1-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-dark .vdl-status-ring-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark .vdl-status-badge-bg-color{background-color:var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-dark)}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-dark);font-size:16px}.vdl-status-ring--xl-accent-1-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-1-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-1-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-1-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-1-darker);top:-34px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-1-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-1-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-1-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker);display:none}.vdl-status-ring--sm-accent-1-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker);display:none}.vdl-status-ring--sm-accent-1-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-1-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-1-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-1-darker .vdl-status-ring-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--sm-accent-1-darker .vdl-status-badge-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--sm-accent-1-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-darker)}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-darker);display:none !important}.vdl-status-ring--sm-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-1-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-1-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-1-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-1-darker);top:-5px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-1-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-1-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-1-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-1-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--smd-accent-1-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-1-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--smd-accent-1-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-1-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-1-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-1-darker .vdl-status-ring-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--smd-accent-1-darker .vdl-status-badge-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--smd-accent-1-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-darker)}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-darker);font-size:10px}.vdl-status-ring--smd-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-1-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-1-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-1-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-1-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-1-darker);top:-5px}.vdl-status-ring--md-accent-1-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-1-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-1-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-1-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-1-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-1-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-1-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-1-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--md-accent-1-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-1-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--md-accent-1-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-1-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-1-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-1-darker .vdl-status-ring-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--md-accent-1-darker .vdl-status-badge-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--md-accent-1-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-darker)}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-darker);font-size:10px}.vdl-status-ring--md-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-1-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-1-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-1-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-1-darker);top:-1px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-1-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-1-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-1-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-1-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--lg-accent-1-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-1-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--lg-accent-1-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-1-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-1-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-1-darker .vdl-status-ring-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--lg-accent-1-darker .vdl-status-badge-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--lg-accent-1-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-darker)}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-darker);font-size:14px}.vdl-status-ring--lg-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-1-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-1-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-1-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-1-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-1-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-1-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-1-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-1-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-1-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-1-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-1-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-1-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-1-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-1-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-1-darker .vdl-status-ring-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker .vdl-status-badge-bg-color{background-color:var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-1-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-1-darker)}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-1-darker);font-size:16px}.vdl-status-ring--xl-accent-1-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-2{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-2:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-2:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-2>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-2);top:-34px}.vdl-status-ring--sm-accent-2>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-2>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-2>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-2>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-2>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-2>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-2>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2);display:none}.vdl-status-ring--sm-accent-2>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2);display:none}.vdl-status-ring--sm-accent-2>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2 .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--sm-accent-2 .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--sm-accent-2 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);display:none !important}.vdl-status-ring--sm-accent-2 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-2{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-2:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-2:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-2>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-2);top:-5px}.vdl-status-ring--smd-accent-2>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-2>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-2>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-2>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-2>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-2>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-2>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--smd-accent-2>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--smd-accent-2>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2 .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--smd-accent-2 .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--smd-accent-2 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:10px}.vdl-status-ring--smd-accent-2 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-2{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-2:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-2:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-2>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-2);top:-5px}.vdl-status-ring--md-accent-2>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-2>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-2>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-2>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-2>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-2>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-2>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-2);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--md-accent-2>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-2);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--md-accent-2>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2 .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--md-accent-2 .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--md-accent-2 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:10px}.vdl-status-ring--md-accent-2 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-2{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-2:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-2:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-2>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-2);top:-1px}.vdl-status-ring--lg-accent-2>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-2>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-2>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-2>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-2>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-2>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-2>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-2);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--lg-accent-2>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-2);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--lg-accent-2>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2 .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--lg-accent-2 .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--lg-accent-2 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:14px}.vdl-status-ring--lg-accent-2 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-2{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-2:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-2:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-2>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-2)}.vdl-status-ring--xl-accent-2>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-2>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-2>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-2>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-2>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-2>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-2>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--xl-accent-2>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--xl-accent-2>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2 .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--xl-accent-2 .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--xl-accent-2 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:16px}.vdl-status-ring--xl-accent-2 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-2-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-2-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-2-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-2-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-2-light);top:-34px}.vdl-status-ring--sm-accent-2-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-2-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-2-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-2-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-2-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-2-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-2-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light);display:none}.vdl-status-ring--sm-accent-2-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light);display:none}.vdl-status-ring--sm-accent-2-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-light .vdl-status-ring-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--sm-accent-2-light .vdl-status-badge-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--sm-accent-2-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-light)}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-light);display:none !important}.vdl-status-ring--sm-accent-2-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-2-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-2-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-2-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-2-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-2-light);top:-5px}.vdl-status-ring--smd-accent-2-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-2-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-2-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-2-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-2-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-2-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-2-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--smd-accent-2-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--smd-accent-2-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-light .vdl-status-ring-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--smd-accent-2-light .vdl-status-badge-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--smd-accent-2-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-light)}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-light);font-size:10px}.vdl-status-ring--smd-accent-2-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-2-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-2-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-2-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-2-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-2-light);top:-5px}.vdl-status-ring--md-accent-2-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-2-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-2-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-2-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-2-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-2-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-2-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-2-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--md-accent-2-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-2-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--md-accent-2-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-light .vdl-status-ring-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--md-accent-2-light .vdl-status-badge-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--md-accent-2-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-light)}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-light);font-size:10px}.vdl-status-ring--md-accent-2-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-2-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-2-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-2-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-2-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-2-light);top:-1px}.vdl-status-ring--lg-accent-2-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-2-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-2-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-2-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-2-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-2-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-2-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-2-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--lg-accent-2-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-2-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--lg-accent-2-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-light .vdl-status-ring-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--lg-accent-2-light .vdl-status-badge-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--lg-accent-2-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-light)}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-light);font-size:14px}.vdl-status-ring--lg-accent-2-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-2-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-2-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-2-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-2-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-2-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-2-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-2-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-2-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-2-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-2-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-light .vdl-status-ring-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light .vdl-status-badge-bg-color{background-color:var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-light)}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-light);font-size:16px}.vdl-status-ring--xl-accent-2-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-2-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-2-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-2-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-2-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-2);top:-34px}.vdl-status-ring--sm-accent-2-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-2-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-2-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-2-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-2-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-2-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-2-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2);display:none}.vdl-status-ring--sm-accent-2-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2);display:none}.vdl-status-ring--sm-accent-2-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-base .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--sm-accent-2-base .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--sm-accent-2-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);display:none !important}.vdl-status-ring--sm-accent-2-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-2-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-2-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-2-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-2-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-2);top:-5px}.vdl-status-ring--smd-accent-2-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-2-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-2-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-2-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-2-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-2-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-2-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--smd-accent-2-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--smd-accent-2-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-base .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--smd-accent-2-base .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--smd-accent-2-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:10px}.vdl-status-ring--smd-accent-2-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-2-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-2-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-2-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-2-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-2);top:-5px}.vdl-status-ring--md-accent-2-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-2-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-2-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-2-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-2-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-2-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-2-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-2);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--md-accent-2-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-2);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--md-accent-2-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-base .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--md-accent-2-base .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--md-accent-2-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:10px}.vdl-status-ring--md-accent-2-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-2-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-2-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-2-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-2-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-2);top:-1px}.vdl-status-ring--lg-accent-2-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-2-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-2-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-2-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-2-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-2-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-2-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-2);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--lg-accent-2-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-2);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--lg-accent-2-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-base .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--lg-accent-2-base .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--lg-accent-2-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:14px}.vdl-status-ring--lg-accent-2-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-2-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-2-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-2-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-2-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-2)}.vdl-status-ring--xl-accent-2-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-2-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-2-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-2-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-2-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-2-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-2-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--xl-accent-2-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2)}.vdl-status-ring--xl-accent-2-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-base .vdl-status-ring-bg-color{background-color:var(--accent-2)}.vdl-status-ring--xl-accent-2-base .vdl-status-badge-bg-color{background-color:var(--accent-2)}.vdl-status-ring--xl-accent-2-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2)}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2);font-size:16px}.vdl-status-ring--xl-accent-2-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-2-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-2-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-2-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-2-dark);top:-34px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-2-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-2-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-2-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark);display:none}.vdl-status-ring--sm-accent-2-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark);display:none}.vdl-status-ring--sm-accent-2-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-dark .vdl-status-ring-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--sm-accent-2-dark .vdl-status-badge-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--sm-accent-2-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-dark)}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-dark);display:none !important}.vdl-status-ring--sm-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-2-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-2-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-2-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-2-dark);top:-5px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-2-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-2-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-2-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--smd-accent-2-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--smd-accent-2-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-dark .vdl-status-ring-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--smd-accent-2-dark .vdl-status-badge-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--smd-accent-2-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-dark)}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-dark);font-size:10px}.vdl-status-ring--smd-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-2-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-2-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-2-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-2-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-2-dark);top:-5px}.vdl-status-ring--md-accent-2-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-2-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-2-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-2-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-2-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-2-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-2-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-2-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--md-accent-2-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-2-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--md-accent-2-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-dark .vdl-status-ring-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--md-accent-2-dark .vdl-status-badge-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--md-accent-2-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-dark)}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-dark);font-size:10px}.vdl-status-ring--md-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-2-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-2-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-2-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-2-dark);top:-1px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-2-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-2-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-2-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-2-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--lg-accent-2-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-2-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--lg-accent-2-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-dark .vdl-status-ring-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--lg-accent-2-dark .vdl-status-badge-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--lg-accent-2-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-dark)}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-dark);font-size:14px}.vdl-status-ring--lg-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-2-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-2-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-2-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-2-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-2-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-2-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-2-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-2-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-2-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-2-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-dark .vdl-status-ring-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark .vdl-status-badge-bg-color{background-color:var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-dark)}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-dark);font-size:16px}.vdl-status-ring--xl-accent-2-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-2-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-2-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-2-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-2-darker);top:-34px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-2-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-2-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-2-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker);display:none}.vdl-status-ring--sm-accent-2-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker);display:none}.vdl-status-ring--sm-accent-2-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-2-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-2-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-2-darker .vdl-status-ring-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--sm-accent-2-darker .vdl-status-badge-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--sm-accent-2-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-darker)}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-darker);display:none !important}.vdl-status-ring--sm-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-2-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-2-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-2-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-2-darker);top:-5px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-2-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-2-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-2-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-2-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--smd-accent-2-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-2-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--smd-accent-2-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-2-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-2-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-2-darker .vdl-status-ring-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--smd-accent-2-darker .vdl-status-badge-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--smd-accent-2-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-darker)}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-darker);font-size:10px}.vdl-status-ring--smd-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-2-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-2-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-2-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-2-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-2-darker);top:-5px}.vdl-status-ring--md-accent-2-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-2-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-2-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-2-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-2-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-2-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-2-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-2-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--md-accent-2-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-2-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--md-accent-2-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-2-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-2-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-2-darker .vdl-status-ring-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--md-accent-2-darker .vdl-status-badge-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--md-accent-2-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-darker)}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-darker);font-size:10px}.vdl-status-ring--md-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-2-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-2-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-2-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-2-darker);top:-1px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-2-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-2-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-2-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-2-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--lg-accent-2-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-2-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--lg-accent-2-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-2-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-2-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-2-darker .vdl-status-ring-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--lg-accent-2-darker .vdl-status-badge-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--lg-accent-2-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-darker)}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-darker);font-size:14px}.vdl-status-ring--lg-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-2-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-2-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-2-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-2-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-2-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-2-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-2-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-2-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-2-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-2-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-2-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-2-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-2-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-2-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-2-darker .vdl-status-ring-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker .vdl-status-badge-bg-color{background-color:var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-2-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-2-darker)}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-2-darker);font-size:16px}.vdl-status-ring--xl-accent-2-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-3{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-3:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-3:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-3>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-3);top:-34px}.vdl-status-ring--sm-accent-3>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-3>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-3>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-3>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-3>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-3>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-3>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3);display:none}.vdl-status-ring--sm-accent-3>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3);display:none}.vdl-status-ring--sm-accent-3>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3 .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--sm-accent-3 .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--sm-accent-3 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);display:none !important}.vdl-status-ring--sm-accent-3 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-3{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-3:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-3:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-3>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-3);top:-5px}.vdl-status-ring--smd-accent-3>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-3>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-3>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-3>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-3>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-3>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-3>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--smd-accent-3>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--smd-accent-3>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3 .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--smd-accent-3 .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--smd-accent-3 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:10px}.vdl-status-ring--smd-accent-3 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-3{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-3:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-3:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-3>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-3);top:-5px}.vdl-status-ring--md-accent-3>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-3>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-3>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-3>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-3>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-3>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-3>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-3);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--md-accent-3>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-3);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--md-accent-3>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3 .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--md-accent-3 .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--md-accent-3 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:10px}.vdl-status-ring--md-accent-3 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-3{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-3:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-3:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-3>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-3);top:-1px}.vdl-status-ring--lg-accent-3>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-3>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-3>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-3>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-3>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-3>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-3>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-3);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--lg-accent-3>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-3);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--lg-accent-3>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3 .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--lg-accent-3 .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--lg-accent-3 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:14px}.vdl-status-ring--lg-accent-3 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-3{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-3:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-3:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-3>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-3)}.vdl-status-ring--xl-accent-3>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-3>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-3>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-3>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-3>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-3>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-3>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--xl-accent-3>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--xl-accent-3>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3 .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--xl-accent-3 .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--xl-accent-3 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:16px}.vdl-status-ring--xl-accent-3 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-3-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-3-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-3-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-3-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-3-light);top:-34px}.vdl-status-ring--sm-accent-3-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-3-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-3-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-3-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-3-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-3-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-3-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light);display:none}.vdl-status-ring--sm-accent-3-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light);display:none}.vdl-status-ring--sm-accent-3-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-light .vdl-status-ring-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--sm-accent-3-light .vdl-status-badge-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--sm-accent-3-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-light)}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-light);display:none !important}.vdl-status-ring--sm-accent-3-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-3-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-3-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-3-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-3-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-3-light);top:-5px}.vdl-status-ring--smd-accent-3-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-3-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-3-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-3-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-3-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-3-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-3-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--smd-accent-3-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--smd-accent-3-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-light .vdl-status-ring-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--smd-accent-3-light .vdl-status-badge-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--smd-accent-3-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-light)}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-light);font-size:10px}.vdl-status-ring--smd-accent-3-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-3-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-3-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-3-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-3-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-3-light);top:-5px}.vdl-status-ring--md-accent-3-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-3-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-3-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-3-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-3-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-3-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-3-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-3-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--md-accent-3-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-3-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--md-accent-3-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-light .vdl-status-ring-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--md-accent-3-light .vdl-status-badge-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--md-accent-3-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-light)}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-light);font-size:10px}.vdl-status-ring--md-accent-3-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-3-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-3-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-3-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-3-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-3-light);top:-1px}.vdl-status-ring--lg-accent-3-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-3-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-3-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-3-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-3-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-3-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-3-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-3-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--lg-accent-3-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-3-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--lg-accent-3-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-light .vdl-status-ring-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--lg-accent-3-light .vdl-status-badge-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--lg-accent-3-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-light)}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-light);font-size:14px}.vdl-status-ring--lg-accent-3-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-3-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-3-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-3-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-3-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-3-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-3-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-3-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-3-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-3-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-3-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-light .vdl-status-ring-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light .vdl-status-badge-bg-color{background-color:var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-light)}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-light);font-size:16px}.vdl-status-ring--xl-accent-3-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-3-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-3-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-3-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-3-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-3);top:-34px}.vdl-status-ring--sm-accent-3-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-3-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-3-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-3-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-3-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-3-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-3-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3);display:none}.vdl-status-ring--sm-accent-3-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3);display:none}.vdl-status-ring--sm-accent-3-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-base .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--sm-accent-3-base .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--sm-accent-3-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);display:none !important}.vdl-status-ring--sm-accent-3-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-3-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-3-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-3-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-3-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-3);top:-5px}.vdl-status-ring--smd-accent-3-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-3-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-3-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-3-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-3-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-3-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-3-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--smd-accent-3-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--smd-accent-3-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-base .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--smd-accent-3-base .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--smd-accent-3-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:10px}.vdl-status-ring--smd-accent-3-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-3-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-3-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-3-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-3-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-3);top:-5px}.vdl-status-ring--md-accent-3-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-3-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-3-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-3-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-3-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-3-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-3-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-3);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--md-accent-3-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-3);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--md-accent-3-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-base .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--md-accent-3-base .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--md-accent-3-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:10px}.vdl-status-ring--md-accent-3-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-3-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-3-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-3-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-3-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-3);top:-1px}.vdl-status-ring--lg-accent-3-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-3-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-3-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-3-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-3-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-3-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-3-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-3);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--lg-accent-3-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-3);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--lg-accent-3-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-base .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--lg-accent-3-base .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--lg-accent-3-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:14px}.vdl-status-ring--lg-accent-3-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-3-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-3-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-3-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-3-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-3)}.vdl-status-ring--xl-accent-3-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-3-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-3-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-3-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-3-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-3-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-3-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--xl-accent-3-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3)}.vdl-status-ring--xl-accent-3-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-base .vdl-status-ring-bg-color{background-color:var(--accent-3)}.vdl-status-ring--xl-accent-3-base .vdl-status-badge-bg-color{background-color:var(--accent-3)}.vdl-status-ring--xl-accent-3-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3)}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3);font-size:16px}.vdl-status-ring--xl-accent-3-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-3-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-3-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-3-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-3-dark);top:-34px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-3-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-3-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-3-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark);display:none}.vdl-status-ring--sm-accent-3-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark);display:none}.vdl-status-ring--sm-accent-3-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-dark .vdl-status-ring-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--sm-accent-3-dark .vdl-status-badge-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--sm-accent-3-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-dark)}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-dark);display:none !important}.vdl-status-ring--sm-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-3-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-3-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-3-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-3-dark);top:-5px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-3-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-3-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-3-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--smd-accent-3-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--smd-accent-3-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-dark .vdl-status-ring-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--smd-accent-3-dark .vdl-status-badge-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--smd-accent-3-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-dark)}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-dark);font-size:10px}.vdl-status-ring--smd-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-3-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-3-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-3-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-3-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-3-dark);top:-5px}.vdl-status-ring--md-accent-3-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-3-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-3-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-3-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-3-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-3-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-3-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-3-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--md-accent-3-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-3-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--md-accent-3-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-dark .vdl-status-ring-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--md-accent-3-dark .vdl-status-badge-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--md-accent-3-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-dark)}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-dark);font-size:10px}.vdl-status-ring--md-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-3-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-3-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-3-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-3-dark);top:-1px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-3-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-3-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-3-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-3-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--lg-accent-3-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-3-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--lg-accent-3-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-dark .vdl-status-ring-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--lg-accent-3-dark .vdl-status-badge-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--lg-accent-3-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-dark)}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-dark);font-size:14px}.vdl-status-ring--lg-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-3-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-3-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-3-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-3-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-3-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-3-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-3-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-3-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-3-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-3-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-dark .vdl-status-ring-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark .vdl-status-badge-bg-color{background-color:var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-dark)}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-dark);font-size:16px}.vdl-status-ring--xl-accent-3-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-3-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-3-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-3-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-3-darker);top:-34px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-3-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-3-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-3-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker);display:none}.vdl-status-ring--sm-accent-3-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker);display:none}.vdl-status-ring--sm-accent-3-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-3-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-3-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-3-darker .vdl-status-ring-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--sm-accent-3-darker .vdl-status-badge-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--sm-accent-3-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-darker)}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-darker);display:none !important}.vdl-status-ring--sm-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-3-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-3-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-3-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-3-darker);top:-5px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-3-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-3-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-3-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-3-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--smd-accent-3-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-3-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--smd-accent-3-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-3-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-3-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-3-darker .vdl-status-ring-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--smd-accent-3-darker .vdl-status-badge-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--smd-accent-3-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-darker)}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-darker);font-size:10px}.vdl-status-ring--smd-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-3-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-3-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-3-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-3-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-3-darker);top:-5px}.vdl-status-ring--md-accent-3-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-3-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-3-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-3-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-3-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-3-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-3-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-3-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--md-accent-3-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-3-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--md-accent-3-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-3-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-3-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-3-darker .vdl-status-ring-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--md-accent-3-darker .vdl-status-badge-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--md-accent-3-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-darker)}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-darker);font-size:10px}.vdl-status-ring--md-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-3-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-3-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-3-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-3-darker);top:-1px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-3-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-3-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-3-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-3-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--lg-accent-3-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-3-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--lg-accent-3-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-3-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-3-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-3-darker .vdl-status-ring-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--lg-accent-3-darker .vdl-status-badge-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--lg-accent-3-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-darker)}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-darker);font-size:14px}.vdl-status-ring--lg-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-3-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-3-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-3-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-3-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-3-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-3-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-3-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-3-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-3-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-3-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-3-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-3-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-3-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-3-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-3-darker .vdl-status-ring-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker .vdl-status-badge-bg-color{background-color:var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-3-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-3-darker)}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-3-darker);font-size:16px}.vdl-status-ring--xl-accent-3-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-4{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-4:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-4:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-4>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-4);top:-34px}.vdl-status-ring--sm-accent-4>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-4>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-4>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-4>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-4>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-4>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-4>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4);display:none}.vdl-status-ring--sm-accent-4>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4);display:none}.vdl-status-ring--sm-accent-4>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4 .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--sm-accent-4 .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--sm-accent-4 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);display:none !important}.vdl-status-ring--sm-accent-4 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-4{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-4:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-4:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-4>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-4);top:-5px}.vdl-status-ring--smd-accent-4>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-4>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-4>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-4>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-4>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-4>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-4>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--smd-accent-4>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--smd-accent-4>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4 .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--smd-accent-4 .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--smd-accent-4 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:10px}.vdl-status-ring--smd-accent-4 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-4{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-4:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-4:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-4>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-4);top:-5px}.vdl-status-ring--md-accent-4>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-4>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-4>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-4>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-4>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-4>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-4>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-4);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--md-accent-4>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-4);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--md-accent-4>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4 .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--md-accent-4 .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--md-accent-4 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:10px}.vdl-status-ring--md-accent-4 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-4{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-4:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-4:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-4>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-4);top:-1px}.vdl-status-ring--lg-accent-4>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-4>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-4>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-4>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-4>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-4>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-4>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-4);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--lg-accent-4>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-4);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--lg-accent-4>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4 .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--lg-accent-4 .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--lg-accent-4 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:14px}.vdl-status-ring--lg-accent-4 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-4{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-4:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-4:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-4>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-4)}.vdl-status-ring--xl-accent-4>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-4>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-4>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-4>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-4>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-4>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-4>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--xl-accent-4>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--xl-accent-4>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4 .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--xl-accent-4 .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--xl-accent-4 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:16px}.vdl-status-ring--xl-accent-4 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-4-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-4-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-4-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-4-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-4-light);top:-34px}.vdl-status-ring--sm-accent-4-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-4-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-4-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-4-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-4-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-4-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-4-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light);display:none}.vdl-status-ring--sm-accent-4-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light);display:none}.vdl-status-ring--sm-accent-4-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-light .vdl-status-ring-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--sm-accent-4-light .vdl-status-badge-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--sm-accent-4-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-light)}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-light);display:none !important}.vdl-status-ring--sm-accent-4-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-4-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-4-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-4-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-4-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-4-light);top:-5px}.vdl-status-ring--smd-accent-4-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-4-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-4-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-4-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-4-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-4-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-4-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--smd-accent-4-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--smd-accent-4-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-light .vdl-status-ring-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--smd-accent-4-light .vdl-status-badge-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--smd-accent-4-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-light)}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-light);font-size:10px}.vdl-status-ring--smd-accent-4-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-4-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-4-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-4-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-4-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-4-light);top:-5px}.vdl-status-ring--md-accent-4-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-4-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-4-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-4-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-4-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-4-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-4-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-4-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--md-accent-4-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-4-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--md-accent-4-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-light .vdl-status-ring-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--md-accent-4-light .vdl-status-badge-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--md-accent-4-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-light)}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-light);font-size:10px}.vdl-status-ring--md-accent-4-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-4-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-4-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-4-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-4-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-4-light);top:-1px}.vdl-status-ring--lg-accent-4-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-4-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-4-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-4-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-4-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-4-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-4-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-4-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--lg-accent-4-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-4-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--lg-accent-4-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-light .vdl-status-ring-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--lg-accent-4-light .vdl-status-badge-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--lg-accent-4-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-light)}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-light);font-size:14px}.vdl-status-ring--lg-accent-4-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-4-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-4-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-4-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-4-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-4-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-4-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-4-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-4-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-4-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-4-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-light .vdl-status-ring-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light .vdl-status-badge-bg-color{background-color:var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-light)}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-light);font-size:16px}.vdl-status-ring--xl-accent-4-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-4-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-4-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-4-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-4-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-4);top:-34px}.vdl-status-ring--sm-accent-4-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-4-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-4-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-4-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-4-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-4-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-4-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4);display:none}.vdl-status-ring--sm-accent-4-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4);display:none}.vdl-status-ring--sm-accent-4-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-base .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--sm-accent-4-base .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--sm-accent-4-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);display:none !important}.vdl-status-ring--sm-accent-4-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-4-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-4-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-4-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-4-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-4);top:-5px}.vdl-status-ring--smd-accent-4-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-4-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-4-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-4-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-4-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-4-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-4-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--smd-accent-4-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--smd-accent-4-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-base .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--smd-accent-4-base .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--smd-accent-4-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:10px}.vdl-status-ring--smd-accent-4-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-4-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-4-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-4-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-4-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-4);top:-5px}.vdl-status-ring--md-accent-4-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-4-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-4-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-4-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-4-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-4-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-4-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-4);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--md-accent-4-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-4);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--md-accent-4-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-base .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--md-accent-4-base .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--md-accent-4-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:10px}.vdl-status-ring--md-accent-4-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-4-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-4-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-4-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-4-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-4);top:-1px}.vdl-status-ring--lg-accent-4-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-4-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-4-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-4-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-4-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-4-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-4-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-4);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--lg-accent-4-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-4);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--lg-accent-4-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-base .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--lg-accent-4-base .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--lg-accent-4-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:14px}.vdl-status-ring--lg-accent-4-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-4-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-4-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-4-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-4-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-4)}.vdl-status-ring--xl-accent-4-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-4-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-4-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-4-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-4-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-4-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-4-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--xl-accent-4-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4)}.vdl-status-ring--xl-accent-4-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-base .vdl-status-ring-bg-color{background-color:var(--accent-4)}.vdl-status-ring--xl-accent-4-base .vdl-status-badge-bg-color{background-color:var(--accent-4)}.vdl-status-ring--xl-accent-4-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4)}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4);font-size:16px}.vdl-status-ring--xl-accent-4-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-4-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-4-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-4-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-4-dark);top:-34px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-4-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-4-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-4-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark);display:none}.vdl-status-ring--sm-accent-4-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark);display:none}.vdl-status-ring--sm-accent-4-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-dark .vdl-status-ring-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--sm-accent-4-dark .vdl-status-badge-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--sm-accent-4-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-dark)}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-dark);display:none !important}.vdl-status-ring--sm-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-4-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-4-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-4-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-4-dark);top:-5px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-4-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-4-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-4-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--smd-accent-4-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--smd-accent-4-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-dark .vdl-status-ring-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--smd-accent-4-dark .vdl-status-badge-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--smd-accent-4-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-dark)}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-dark);font-size:10px}.vdl-status-ring--smd-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-4-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-4-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-4-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-4-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-4-dark);top:-5px}.vdl-status-ring--md-accent-4-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-4-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-4-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-4-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-4-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-4-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-4-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-4-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--md-accent-4-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-4-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--md-accent-4-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-dark .vdl-status-ring-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--md-accent-4-dark .vdl-status-badge-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--md-accent-4-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-dark)}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-dark);font-size:10px}.vdl-status-ring--md-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-4-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-4-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-4-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-4-dark);top:-1px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-4-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-4-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-4-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-4-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--lg-accent-4-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-4-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--lg-accent-4-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-dark .vdl-status-ring-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--lg-accent-4-dark .vdl-status-badge-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--lg-accent-4-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-dark)}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-dark);font-size:14px}.vdl-status-ring--lg-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-4-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-4-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-4-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-4-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-4-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-4-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-4-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-4-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-4-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-4-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-dark .vdl-status-ring-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark .vdl-status-badge-bg-color{background-color:var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-dark)}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-dark);font-size:16px}.vdl-status-ring--xl-accent-4-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-4-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-4-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-4-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-4-darker);top:-34px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-4-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-4-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-4-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker);display:none}.vdl-status-ring--sm-accent-4-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker);display:none}.vdl-status-ring--sm-accent-4-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-4-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-4-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-4-darker .vdl-status-ring-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--sm-accent-4-darker .vdl-status-badge-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--sm-accent-4-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-darker)}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-darker);display:none !important}.vdl-status-ring--sm-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-4-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-4-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-4-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-4-darker);top:-5px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-4-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-4-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-4-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-4-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--smd-accent-4-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-4-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--smd-accent-4-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-4-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-4-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-4-darker .vdl-status-ring-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--smd-accent-4-darker .vdl-status-badge-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--smd-accent-4-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-darker)}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-darker);font-size:10px}.vdl-status-ring--smd-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-4-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-4-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-4-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-4-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-4-darker);top:-5px}.vdl-status-ring--md-accent-4-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-4-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-4-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-4-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-4-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-4-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-4-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-4-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--md-accent-4-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-4-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--md-accent-4-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-4-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-4-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-4-darker .vdl-status-ring-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--md-accent-4-darker .vdl-status-badge-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--md-accent-4-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-darker)}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-darker);font-size:10px}.vdl-status-ring--md-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-4-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-4-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-4-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-4-darker);top:-1px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-4-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-4-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-4-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-4-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--lg-accent-4-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-4-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--lg-accent-4-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-4-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-4-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-4-darker .vdl-status-ring-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--lg-accent-4-darker .vdl-status-badge-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--lg-accent-4-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-darker)}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-darker);font-size:14px}.vdl-status-ring--lg-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-4-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-4-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-4-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-4-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-4-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-4-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-4-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-4-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-4-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-4-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-4-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-4-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-4-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-4-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-4-darker .vdl-status-ring-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker .vdl-status-badge-bg-color{background-color:var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-4-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-4-darker)}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-4-darker);font-size:16px}.vdl-status-ring--xl-accent-4-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-5{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5);top:-34px}.vdl-status-ring--sm-accent-5>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5);display:none}.vdl-status-ring--sm-accent-5>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5);display:none}.vdl-status-ring--sm-accent-5>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5 .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--sm-accent-5 .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--sm-accent-5 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);display:none !important}.vdl-status-ring--sm-accent-5 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5);top:-5px}.vdl-status-ring--smd-accent-5>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--smd-accent-5>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--smd-accent-5>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5 .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--smd-accent-5 .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--smd-accent-5 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:10px}.vdl-status-ring--smd-accent-5 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5);top:-5px}.vdl-status-ring--md-accent-5>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--md-accent-5>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--md-accent-5>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5 .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--md-accent-5 .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--md-accent-5 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:10px}.vdl-status-ring--md-accent-5 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5);top:-1px}.vdl-status-ring--lg-accent-5>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--lg-accent-5>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--lg-accent-5>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5 .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--lg-accent-5 .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--lg-accent-5 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:14px}.vdl-status-ring--lg-accent-5 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5)}.vdl-status-ring--xl-accent-5>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--xl-accent-5>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--xl-accent-5>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5 .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--xl-accent-5 .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--xl-accent-5 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:16px}.vdl-status-ring--xl-accent-5 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-lightest{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-lightest:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5-lightest);top:-34px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-lightest);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest);display:none}.vdl-status-ring--sm-accent-5-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-lightest);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest);display:none}.vdl-status-ring--sm-accent-5-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-lightest .vdl-status-ring-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--sm-accent-5-lightest .vdl-status-badge-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--sm-accent-5-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lightest)}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lightest);display:none !important}.vdl-status-ring--sm-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5-lightest{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-lightest:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5-lightest);top:-5px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--smd-accent-5-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-lightest>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--smd-accent-5-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-lightest .vdl-status-ring-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--smd-accent-5-lightest .vdl-status-badge-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--smd-accent-5-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lightest)}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lightest);font-size:10px}.vdl-status-ring--smd-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5-lightest{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-lightest:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5-lightest);top:-5px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-lightest>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--md-accent-5-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-lightest>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-lightest>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--md-accent-5-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-lightest>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-lightest .vdl-status-ring-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--md-accent-5-lightest .vdl-status-badge-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--md-accent-5-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lightest)}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lightest);font-size:10px}.vdl-status-ring--md-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5-lightest{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-lightest:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5-lightest);top:-1px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-lightest>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--lg-accent-5-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-lightest>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-lightest>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--lg-accent-5-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-lightest>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-lightest .vdl-status-ring-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--lg-accent-5-lightest .vdl-status-badge-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--lg-accent-5-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lightest)}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lightest);font-size:14px}.vdl-status-ring--lg-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5-lightest{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-lightest:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-lightest>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-lightest>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-lightest>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-lightest .vdl-status-ring-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest .vdl-status-badge-bg-color{background-color:var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lightest)}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lightest);font-size:16px}.vdl-status-ring--xl-accent-5-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-lighter{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-lighter:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5-lighter);top:-34px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-lighter);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter);display:none}.vdl-status-ring--sm-accent-5-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-lighter);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter);display:none}.vdl-status-ring--sm-accent-5-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-lighter .vdl-status-ring-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--sm-accent-5-lighter .vdl-status-badge-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--sm-accent-5-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lighter)}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lighter);display:none !important}.vdl-status-ring--sm-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5-lighter{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-lighter:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5-lighter);top:-5px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--smd-accent-5-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-lighter>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--smd-accent-5-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-lighter .vdl-status-ring-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--smd-accent-5-lighter .vdl-status-badge-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--smd-accent-5-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lighter)}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lighter);font-size:10px}.vdl-status-ring--smd-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5-lighter{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-lighter:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5-lighter);top:-5px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-lighter>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--md-accent-5-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-lighter>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-lighter>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--md-accent-5-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-lighter>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-lighter .vdl-status-ring-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--md-accent-5-lighter .vdl-status-badge-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--md-accent-5-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lighter)}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lighter);font-size:10px}.vdl-status-ring--md-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5-lighter{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-lighter:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5-lighter);top:-1px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-lighter>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--lg-accent-5-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-lighter>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-lighter>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--lg-accent-5-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-lighter>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-lighter .vdl-status-ring-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--lg-accent-5-lighter .vdl-status-badge-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--lg-accent-5-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lighter)}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lighter);font-size:14px}.vdl-status-ring--lg-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5-lighter{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-lighter:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-lighter>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-lighter>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-lighter>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-lighter .vdl-status-ring-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter .vdl-status-badge-bg-color{background-color:var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-lighter)}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-lighter);font-size:16px}.vdl-status-ring--xl-accent-5-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5-light);top:-34px}.vdl-status-ring--sm-accent-5-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light);display:none}.vdl-status-ring--sm-accent-5-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light);display:none}.vdl-status-ring--sm-accent-5-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-light .vdl-status-ring-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--sm-accent-5-light .vdl-status-badge-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--sm-accent-5-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-light)}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-light);display:none !important}.vdl-status-ring--sm-accent-5-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5-light);top:-5px}.vdl-status-ring--smd-accent-5-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--smd-accent-5-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--smd-accent-5-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-light .vdl-status-ring-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--smd-accent-5-light .vdl-status-badge-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--smd-accent-5-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-light)}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-light);font-size:10px}.vdl-status-ring--smd-accent-5-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5-light);top:-5px}.vdl-status-ring--md-accent-5-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--md-accent-5-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--md-accent-5-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-light .vdl-status-ring-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--md-accent-5-light .vdl-status-badge-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--md-accent-5-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-light)}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-light);font-size:10px}.vdl-status-ring--md-accent-5-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5-light);top:-1px}.vdl-status-ring--lg-accent-5-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--lg-accent-5-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--lg-accent-5-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-light .vdl-status-ring-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--lg-accent-5-light .vdl-status-badge-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--lg-accent-5-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-light)}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-light);font-size:14px}.vdl-status-ring--lg-accent-5-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-light .vdl-status-ring-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light .vdl-status-badge-bg-color{background-color:var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-light)}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-light);font-size:16px}.vdl-status-ring--xl-accent-5-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5);top:-34px}.vdl-status-ring--sm-accent-5-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5);display:none}.vdl-status-ring--sm-accent-5-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5);display:none}.vdl-status-ring--sm-accent-5-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-base .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--sm-accent-5-base .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--sm-accent-5-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);display:none !important}.vdl-status-ring--sm-accent-5-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5);top:-5px}.vdl-status-ring--smd-accent-5-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--smd-accent-5-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--smd-accent-5-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-base .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--smd-accent-5-base .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--smd-accent-5-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:10px}.vdl-status-ring--smd-accent-5-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5);top:-5px}.vdl-status-ring--md-accent-5-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--md-accent-5-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--md-accent-5-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-base .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--md-accent-5-base .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--md-accent-5-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:10px}.vdl-status-ring--md-accent-5-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5);top:-1px}.vdl-status-ring--lg-accent-5-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--lg-accent-5-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--lg-accent-5-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-base .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--lg-accent-5-base .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--lg-accent-5-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:14px}.vdl-status-ring--lg-accent-5-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5)}.vdl-status-ring--xl-accent-5-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--xl-accent-5-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5)}.vdl-status-ring--xl-accent-5-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-base .vdl-status-ring-bg-color{background-color:var(--accent-5)}.vdl-status-ring--xl-accent-5-base .vdl-status-badge-bg-color{background-color:var(--accent-5)}.vdl-status-ring--xl-accent-5-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5)}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5);font-size:16px}.vdl-status-ring--xl-accent-5-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5-dark);top:-34px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark);display:none}.vdl-status-ring--sm-accent-5-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark);display:none}.vdl-status-ring--sm-accent-5-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-dark .vdl-status-ring-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--sm-accent-5-dark .vdl-status-badge-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--sm-accent-5-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-dark)}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-dark);display:none !important}.vdl-status-ring--sm-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-5-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5-dark);top:-5px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--smd-accent-5-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--smd-accent-5-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-dark .vdl-status-ring-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--smd-accent-5-dark .vdl-status-badge-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--smd-accent-5-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-dark)}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-dark);font-size:10px}.vdl-status-ring--smd-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-5-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5-dark);top:-5px}.vdl-status-ring--md-accent-5-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--md-accent-5-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--md-accent-5-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-dark .vdl-status-ring-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--md-accent-5-dark .vdl-status-badge-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--md-accent-5-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-dark)}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-dark);font-size:10px}.vdl-status-ring--md-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-5-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5-dark);top:-1px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--lg-accent-5-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--lg-accent-5-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-dark .vdl-status-ring-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--lg-accent-5-dark .vdl-status-badge-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--lg-accent-5-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-dark)}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-dark);font-size:14px}.vdl-status-ring--lg-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-5-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-dark .vdl-status-ring-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark .vdl-status-badge-bg-color{background-color:var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-dark)}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-dark);font-size:16px}.vdl-status-ring--xl-accent-5-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-5-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-5-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-5-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-5-darker);top:-34px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-5-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-5-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-5-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker);display:none}.vdl-status-ring--sm-accent-5-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker);display:none}.vdl-status-ring--sm-accent-5-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-5-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-5-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-5-darker .vdl-status-ring-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--sm-accent-5-darker .vdl-status-badge-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--sm-accent-5-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-darker)}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-darker);display:none !important}.vdl-status-ring--sm-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-5-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-5-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-5-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-5-darker);top:-5px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-5-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-5-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-5-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-5-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--smd-accent-5-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-5-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--smd-accent-5-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-5-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-5-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-5-darker .vdl-status-ring-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--smd-accent-5-darker .vdl-status-badge-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--smd-accent-5-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-darker)}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-darker);font-size:10px}.vdl-status-ring--smd-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-5-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-5-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-5-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-5-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-5-darker);top:-5px}.vdl-status-ring--md-accent-5-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-5-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-5-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-5-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-5-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-5-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-5-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-5-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--md-accent-5-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-5-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--md-accent-5-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-5-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-5-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-5-darker .vdl-status-ring-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--md-accent-5-darker .vdl-status-badge-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--md-accent-5-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-darker)}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-darker);font-size:10px}.vdl-status-ring--md-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-5-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-5-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-5-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-5-darker);top:-1px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-5-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-5-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-5-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-5-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--lg-accent-5-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-5-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--lg-accent-5-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-5-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-5-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-5-darker .vdl-status-ring-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--lg-accent-5-darker .vdl-status-badge-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--lg-accent-5-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-darker)}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-darker);font-size:14px}.vdl-status-ring--lg-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-5-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-5-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-5-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-5-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-5-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-5-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-5-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-5-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-5-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-5-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-5-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-5-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-5-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-5-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-5-darker .vdl-status-ring-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker .vdl-status-badge-bg-color{background-color:var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-5-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-5-darker)}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-5-darker);font-size:16px}.vdl-status-ring--xl-accent-5-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-6{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6);top:-34px}.vdl-status-ring--sm-accent-6>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6);display:none}.vdl-status-ring--sm-accent-6>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6);display:none}.vdl-status-ring--sm-accent-6>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6 .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--sm-accent-6 .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--sm-accent-6 .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);display:none !important}.vdl-status-ring--sm-accent-6 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-6{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6);top:-5px}.vdl-status-ring--smd-accent-6>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--smd-accent-6>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--smd-accent-6>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6 .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--smd-accent-6 .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--smd-accent-6 .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:10px}.vdl-status-ring--smd-accent-6 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-6{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6);top:-5px}.vdl-status-ring--md-accent-6>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--md-accent-6>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--md-accent-6>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6 .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--md-accent-6 .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--md-accent-6 .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:10px}.vdl-status-ring--md-accent-6 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-6{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6);top:-1px}.vdl-status-ring--lg-accent-6>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--lg-accent-6>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--lg-accent-6>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6 .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--lg-accent-6 .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--lg-accent-6 .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:14px}.vdl-status-ring--lg-accent-6 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-6{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6)}.vdl-status-ring--xl-accent-6>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--xl-accent-6>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--xl-accent-6>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6 .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--xl-accent-6 .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--xl-accent-6 .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:16px}.vdl-status-ring--xl-accent-6 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-6-lightest{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6-lightest:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6-lightest);top:-34px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-lightest);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest);display:none}.vdl-status-ring--sm-accent-6-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-lightest);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest);display:none}.vdl-status-ring--sm-accent-6-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-lightest .vdl-status-ring-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--sm-accent-6-lightest .vdl-status-badge-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--sm-accent-6-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lightest)}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lightest);display:none !important}.vdl-status-ring--sm-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-6-lightest{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6-lightest:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6-lightest);top:-5px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6-lightest>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--smd-accent-6-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-lightest>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-lightest>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-lightest);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--smd-accent-6-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-lightest>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-lightest .vdl-status-ring-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--smd-accent-6-lightest .vdl-status-badge-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--smd-accent-6-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lightest)}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lightest);font-size:10px}.vdl-status-ring--smd-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-6-lightest{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6-lightest:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6-lightest);top:-5px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6-lightest>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--md-accent-6-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-lightest>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-lightest>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6-lightest);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--md-accent-6-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-lightest>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-lightest .vdl-status-ring-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--md-accent-6-lightest .vdl-status-badge-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--md-accent-6-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lightest)}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lightest);font-size:10px}.vdl-status-ring--md-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-6-lightest{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6-lightest:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6-lightest);top:-1px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6-lightest>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--lg-accent-6-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-lightest>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-lightest>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-lightest>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6-lightest);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--lg-accent-6-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-lightest>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-lightest .vdl-status-ring-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--lg-accent-6-lightest .vdl-status-badge-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--lg-accent-6-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lightest)}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lightest);font-size:14px}.vdl-status-ring--lg-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-6-lightest{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6-lightest:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6-lightest:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6-lightest>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6-lightest>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-lightest>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-lightest>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-lightest>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-lightest);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-lightest>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-lightest>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-lightest .vdl-status-ring-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest .vdl-status-badge-bg-color{background-color:var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lightest);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lightest)}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lightest);font-size:16px}.vdl-status-ring--xl-accent-6-lightest .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-6-lighter{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6-lighter:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6-lighter);top:-34px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-lighter);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter);display:none}.vdl-status-ring--sm-accent-6-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-lighter);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter);display:none}.vdl-status-ring--sm-accent-6-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-lighter .vdl-status-ring-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--sm-accent-6-lighter .vdl-status-badge-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--sm-accent-6-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lighter)}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lighter);display:none !important}.vdl-status-ring--sm-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-6-lighter{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6-lighter:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6-lighter);top:-5px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6-lighter>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--smd-accent-6-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-lighter>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-lighter>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-lighter);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--smd-accent-6-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-lighter>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-lighter .vdl-status-ring-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--smd-accent-6-lighter .vdl-status-badge-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--smd-accent-6-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lighter)}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lighter);font-size:10px}.vdl-status-ring--smd-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-6-lighter{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6-lighter:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6-lighter);top:-5px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6-lighter>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--md-accent-6-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-lighter>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-lighter>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6-lighter);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--md-accent-6-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-lighter>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-lighter .vdl-status-ring-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--md-accent-6-lighter .vdl-status-badge-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--md-accent-6-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lighter)}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lighter);font-size:10px}.vdl-status-ring--md-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-6-lighter{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6-lighter:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6-lighter);top:-1px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6-lighter>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--lg-accent-6-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-lighter>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-lighter>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-lighter>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6-lighter);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--lg-accent-6-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-lighter>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-lighter .vdl-status-ring-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--lg-accent-6-lighter .vdl-status-badge-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--lg-accent-6-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lighter)}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lighter);font-size:14px}.vdl-status-ring--lg-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-6-lighter{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6-lighter:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6-lighter:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6-lighter>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6-lighter>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-lighter>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-lighter>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-lighter>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-lighter);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-lighter>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-lighter>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-lighter .vdl-status-ring-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter .vdl-status-badge-bg-color{background-color:var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-lighter);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-lighter)}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-lighter);font-size:16px}.vdl-status-ring--xl-accent-6-lighter .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-6-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6-light);top:-34px}.vdl-status-ring--sm-accent-6-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light);display:none}.vdl-status-ring--sm-accent-6-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light);display:none}.vdl-status-ring--sm-accent-6-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-light .vdl-status-ring-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--sm-accent-6-light .vdl-status-badge-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--sm-accent-6-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-light)}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-light);display:none !important}.vdl-status-ring--sm-accent-6-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-6-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6-light);top:-5px}.vdl-status-ring--smd-accent-6-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--smd-accent-6-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--smd-accent-6-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-light .vdl-status-ring-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--smd-accent-6-light .vdl-status-badge-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--smd-accent-6-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-light)}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-light);font-size:10px}.vdl-status-ring--smd-accent-6-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-6-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6-light);top:-5px}.vdl-status-ring--md-accent-6-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--md-accent-6-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--md-accent-6-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-light .vdl-status-ring-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--md-accent-6-light .vdl-status-badge-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--md-accent-6-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-light)}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-light);font-size:10px}.vdl-status-ring--md-accent-6-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-6-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6-light);top:-1px}.vdl-status-ring--lg-accent-6-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--lg-accent-6-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--lg-accent-6-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-light .vdl-status-ring-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--lg-accent-6-light .vdl-status-badge-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--lg-accent-6-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-light)}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-light);font-size:14px}.vdl-status-ring--lg-accent-6-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-6-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-light .vdl-status-ring-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light .vdl-status-badge-bg-color{background-color:var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-light)}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-light);font-size:16px}.vdl-status-ring--xl-accent-6-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-6-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6);top:-34px}.vdl-status-ring--sm-accent-6-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6);display:none}.vdl-status-ring--sm-accent-6-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6);display:none}.vdl-status-ring--sm-accent-6-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-base .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--sm-accent-6-base .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--sm-accent-6-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);display:none !important}.vdl-status-ring--sm-accent-6-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-6-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6);top:-5px}.vdl-status-ring--smd-accent-6-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--smd-accent-6-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--smd-accent-6-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-base .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--smd-accent-6-base .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--smd-accent-6-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:10px}.vdl-status-ring--smd-accent-6-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-6-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6);top:-5px}.vdl-status-ring--md-accent-6-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--md-accent-6-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--md-accent-6-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-base .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--md-accent-6-base .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--md-accent-6-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:10px}.vdl-status-ring--md-accent-6-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-6-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6);top:-1px}.vdl-status-ring--lg-accent-6-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--lg-accent-6-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--lg-accent-6-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-base .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--lg-accent-6-base .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--lg-accent-6-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:14px}.vdl-status-ring--lg-accent-6-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-6-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6)}.vdl-status-ring--xl-accent-6-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--xl-accent-6-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6)}.vdl-status-ring--xl-accent-6-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-base .vdl-status-ring-bg-color{background-color:var(--accent-6)}.vdl-status-ring--xl-accent-6-base .vdl-status-badge-bg-color{background-color:var(--accent-6)}.vdl-status-ring--xl-accent-6-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6)}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6);font-size:16px}.vdl-status-ring--xl-accent-6-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-6-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-6-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-6-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-6-dark);top:-34px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-6-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-6-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-6-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark);display:none}.vdl-status-ring--sm-accent-6-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark);display:none}.vdl-status-ring--sm-accent-6-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-6-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-6-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-6-dark .vdl-status-ring-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--sm-accent-6-dark .vdl-status-badge-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--sm-accent-6-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-dark)}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-dark);display:none !important}.vdl-status-ring--sm-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-6-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-6-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-6-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-6-dark);top:-5px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-6-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-6-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-6-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-6-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--smd-accent-6-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-6-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--smd-accent-6-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-6-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-6-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-6-dark .vdl-status-ring-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--smd-accent-6-dark .vdl-status-badge-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--smd-accent-6-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-dark)}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-dark);font-size:10px}.vdl-status-ring--smd-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-6-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-6-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-6-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-6-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-6-dark);top:-5px}.vdl-status-ring--md-accent-6-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-6-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-6-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-6-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-6-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-6-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-6-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-6-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--md-accent-6-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-6-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--md-accent-6-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-6-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-6-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-6-dark .vdl-status-ring-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--md-accent-6-dark .vdl-status-badge-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--md-accent-6-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-dark)}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-dark);font-size:10px}.vdl-status-ring--md-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-6-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-6-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-6-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-6-dark);top:-1px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-6-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-6-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-6-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-6-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--lg-accent-6-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-6-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--lg-accent-6-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-6-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-6-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-6-dark .vdl-status-ring-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--lg-accent-6-dark .vdl-status-badge-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--lg-accent-6-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-dark)}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-dark);font-size:14px}.vdl-status-ring--lg-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-6-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-6-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-6-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-6-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-6-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-6-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-6-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-6-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-6-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-6-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-6-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-6-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-6-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-6-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-6-dark .vdl-status-ring-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark .vdl-status-badge-bg-color{background-color:var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-6-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-6-dark)}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-6-dark);font-size:16px}.vdl-status-ring--xl-accent-6-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-7{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-7:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-7:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-7>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-7);top:-34px}.vdl-status-ring--sm-accent-7>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-7>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-7>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-7>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-7>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-7>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-7>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7);display:none}.vdl-status-ring--sm-accent-7>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7);display:none}.vdl-status-ring--sm-accent-7>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7 .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--sm-accent-7 .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--sm-accent-7 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);display:none !important}.vdl-status-ring--sm-accent-7 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-7{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-7:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-7:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-7>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-7);top:-5px}.vdl-status-ring--smd-accent-7>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-7>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-7>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-7>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-7>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-7>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-7>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--smd-accent-7>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--smd-accent-7>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7 .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--smd-accent-7 .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--smd-accent-7 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:10px}.vdl-status-ring--smd-accent-7 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-7{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-7:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-7:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-7>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-7);top:-5px}.vdl-status-ring--md-accent-7>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-7>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-7>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-7>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-7>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-7>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-7>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-7);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--md-accent-7>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-7);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--md-accent-7>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7 .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--md-accent-7 .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--md-accent-7 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:10px}.vdl-status-ring--md-accent-7 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-7{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-7:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-7:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-7>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-7);top:-1px}.vdl-status-ring--lg-accent-7>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-7>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-7>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-7>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-7>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-7>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-7>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-7);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--lg-accent-7>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-7);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--lg-accent-7>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7 .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--lg-accent-7 .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--lg-accent-7 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:14px}.vdl-status-ring--lg-accent-7 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-7{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-7:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-7:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-7>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-7)}.vdl-status-ring--xl-accent-7>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-7>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-7>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-7>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-7>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-7>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-7>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--xl-accent-7>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--xl-accent-7>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7 .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--xl-accent-7 .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--xl-accent-7 .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:16px}.vdl-status-ring--xl-accent-7 .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-7-light{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-7-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-7-light:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-7-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-7-light);top:-34px}.vdl-status-ring--sm-accent-7-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-7-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-7-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-7-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-7-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-7-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-7-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-light);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light);display:none}.vdl-status-ring--sm-accent-7-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-light);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light);display:none}.vdl-status-ring--sm-accent-7-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-light .vdl-status-ring-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--sm-accent-7-light .vdl-status-badge-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--sm-accent-7-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-light)}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-light);display:none !important}.vdl-status-ring--sm-accent-7-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-7-light{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-7-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-7-light:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-7-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-7-light);top:-5px}.vdl-status-ring--smd-accent-7-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-7-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-7-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-7-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-7-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-7-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-7-light>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--smd-accent-7-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-light>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-light>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-light>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-light);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--smd-accent-7-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-light>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-light .vdl-status-ring-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--smd-accent-7-light .vdl-status-badge-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--smd-accent-7-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-light)}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-light);font-size:10px}.vdl-status-ring--smd-accent-7-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-7-light{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-7-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-7-light:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-7-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-7-light);top:-5px}.vdl-status-ring--md-accent-7-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-7-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-7-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-7-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-7-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-7-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-7-light>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-7-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--md-accent-7-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-light>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-light>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-light>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-7-light);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--md-accent-7-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-light>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-light .vdl-status-ring-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--md-accent-7-light .vdl-status-badge-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--md-accent-7-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-light)}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-light);font-size:10px}.vdl-status-ring--md-accent-7-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-7-light{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-7-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-7-light:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-7-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-7-light);top:-1px}.vdl-status-ring--lg-accent-7-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-7-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-7-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-7-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-7-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-7-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-7-light>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-7-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--lg-accent-7-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-light>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-light>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-light>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-7-light);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--lg-accent-7-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-light>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-light .vdl-status-ring-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--lg-accent-7-light .vdl-status-badge-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--lg-accent-7-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-light)}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-light);font-size:14px}.vdl-status-ring--lg-accent-7-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-7-light{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-7-light:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-7-light:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-7-light>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-7-light>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-7-light>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-7-light>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-7-light>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-7-light>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-7-light>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-light>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-light>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-light>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-light);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-light>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-light>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-light .vdl-status-ring-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light .vdl-status-badge-bg-color{background-color:var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-light);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-light)}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-light);font-size:16px}.vdl-status-ring--xl-accent-7-light .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-7-base{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-7-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-7-base:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-7-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-7);top:-34px}.vdl-status-ring--sm-accent-7-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-7-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-7-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-7-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-7-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-7-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-7-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7);display:none}.vdl-status-ring--sm-accent-7-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7);display:none}.vdl-status-ring--sm-accent-7-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-base .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--sm-accent-7-base .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--sm-accent-7-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);display:none !important}.vdl-status-ring--sm-accent-7-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-accent-7-base{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-7-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-7-base:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-7-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-7);top:-5px}.vdl-status-ring--smd-accent-7-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-7-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-7-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-7-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-7-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-7-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-7-base>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--smd-accent-7-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-base>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-base>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-base>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--smd-accent-7-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-base>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-base .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--smd-accent-7-base .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--smd-accent-7-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:10px}.vdl-status-ring--smd-accent-7-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-accent-7-base{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-7-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-7-base:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-7-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-7);top:-5px}.vdl-status-ring--md-accent-7-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-7-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-7-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-7-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-7-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-7-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-7-base>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-7);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--md-accent-7-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-base>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-base>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-base>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-7);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--md-accent-7-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-base>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-base .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--md-accent-7-base .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--md-accent-7-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:10px}.vdl-status-ring--md-accent-7-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-accent-7-base{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-7-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-7-base:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-7-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-7);top:-1px}.vdl-status-ring--lg-accent-7-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-7-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-7-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-7-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-7-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-7-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-7-base>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-7);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--lg-accent-7-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-base>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-base>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-base>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-7);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--lg-accent-7-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-base>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-base .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--lg-accent-7-base .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--lg-accent-7-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:14px}.vdl-status-ring--lg-accent-7-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-accent-7-base{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-7-base:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-7-base:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-7-base>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-7)}.vdl-status-ring--xl-accent-7-base>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-7-base>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-7-base>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-7-base>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-7-base>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-7-base>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-7-base>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--xl-accent-7-base>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-base>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-base>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-base>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7)}.vdl-status-ring--xl-accent-7-base>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-base>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-base>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-base .vdl-status-ring-bg-color{background-color:var(--accent-7)}.vdl-status-ring--xl-accent-7-base .vdl-status-badge-bg-color{background-color:var(--accent-7)}.vdl-status-ring--xl-accent-7-base .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7)}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7);font-size:16px}.vdl-status-ring--xl-accent-7-base .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-accent-7-dark{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-7-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-7-dark:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-7-dark);top:-34px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-7-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-7-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-7-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-dark);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark);display:none}.vdl-status-ring--sm-accent-7-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-dark);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark);display:none}.vdl-status-ring--sm-accent-7-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-dark .vdl-status-ring-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--sm-accent-7-dark .vdl-status-badge-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--sm-accent-7-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-dark)}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-dark);display:none !important}.vdl-status-ring--sm-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-7-dark{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-7-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-7-dark:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-7-dark);top:-5px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-7-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-7-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-7-dark>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--smd-accent-7-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-dark>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-dark>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-dark>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-dark);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--smd-accent-7-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-dark>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-dark .vdl-status-ring-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--smd-accent-7-dark .vdl-status-badge-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--smd-accent-7-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-dark)}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-dark);font-size:10px}.vdl-status-ring--smd-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-7-dark{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-7-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-7-dark:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-7-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-7-dark);top:-5px}.vdl-status-ring--md-accent-7-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-7-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-7-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-7-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-7-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-7-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-7-dark>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-7-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--md-accent-7-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-dark>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-dark>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-dark>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-7-dark);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--md-accent-7-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-dark>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-dark .vdl-status-ring-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--md-accent-7-dark .vdl-status-badge-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--md-accent-7-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-dark)}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-dark);font-size:10px}.vdl-status-ring--md-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-7-dark{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-7-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-7-dark:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-7-dark);top:-1px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-7-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-7-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-7-dark>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-7-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--lg-accent-7-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-dark>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-dark>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-dark>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-7-dark);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--lg-accent-7-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-dark>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-dark .vdl-status-ring-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--lg-accent-7-dark .vdl-status-badge-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--lg-accent-7-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-dark)}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-dark);font-size:14px}.vdl-status-ring--lg-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-7-dark{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-7-dark:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-7-dark:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-7-dark>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-7-dark>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-7-dark>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-7-dark>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-7-dark>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-7-dark>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-7-dark>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-dark>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-dark>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-dark>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-dark);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-dark>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-dark>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-dark .vdl-status-ring-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark .vdl-status-badge-bg-color{background-color:var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-dark);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-dark)}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-dark);font-size:16px}.vdl-status-ring--xl-accent-7-dark .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-accent-7-darker{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-accent-7-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-accent-7-darker:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--accent-7-darker);top:-34px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-accent-7-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-accent-7-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-accent-7-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-darker);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker);display:none}.vdl-status-ring--sm-accent-7-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-darker);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker);display:none}.vdl-status-ring--sm-accent-7-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-accent-7-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-accent-7-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-accent-7-darker .vdl-status-ring-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--sm-accent-7-darker .vdl-status-badge-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--sm-accent-7-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-darker)}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-darker);display:none !important}.vdl-status-ring--sm-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-accent-7-darker{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-accent-7-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-accent-7-darker:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--accent-7-darker);top:-5px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-accent-7-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-accent-7-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-accent-7-darker>.status-badge{width:15px;height:15px;border:2px solid var(--accent-7-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--smd-accent-7-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-darker>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-darker>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-darker>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--accent-7-darker);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--smd-accent-7-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-accent-7-darker>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-accent-7-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-accent-7-darker .vdl-status-ring-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--smd-accent-7-darker .vdl-status-badge-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--smd-accent-7-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-darker)}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-darker);font-size:10px}.vdl-status-ring--smd-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-accent-7-darker{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-accent-7-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-accent-7-darker:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-accent-7-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--accent-7-darker);top:-5px}.vdl-status-ring--md-accent-7-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-accent-7-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-accent-7-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-accent-7-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-accent-7-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-accent-7-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-accent-7-darker>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--accent-7-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--md-accent-7-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-darker>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-darker>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-darker>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--accent-7-darker);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--md-accent-7-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-accent-7-darker>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-accent-7-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-accent-7-darker .vdl-status-ring-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--md-accent-7-darker .vdl-status-badge-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--md-accent-7-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-darker)}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-darker);font-size:10px}.vdl-status-ring--md-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-accent-7-darker{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-accent-7-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-accent-7-darker:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--accent-7-darker);top:-1px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-accent-7-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-accent-7-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-accent-7-darker>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--accent-7-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--lg-accent-7-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-darker>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-darker>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-darker>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--accent-7-darker);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--lg-accent-7-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-accent-7-darker>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-accent-7-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-accent-7-darker .vdl-status-ring-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--lg-accent-7-darker .vdl-status-badge-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--lg-accent-7-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-darker)}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-darker);font-size:14px}.vdl-status-ring--lg-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-accent-7-darker{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-accent-7-darker:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-accent-7-darker:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-accent-7-darker>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-accent-7-darker>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-accent-7-darker>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-accent-7-darker>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-accent-7-darker>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-accent-7-darker>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-accent-7-darker>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--accent-7-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-darker>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-darker>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-darker>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--accent-7-darker);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-accent-7-darker>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-accent-7-darker>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-accent-7-darker .vdl-status-ring-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker .vdl-status-badge-bg-color{background-color:var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--accent-7-darker);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--accent-7-darker)}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--accent-7-darker);font-size:16px}.vdl-status-ring--xl-accent-7-darker .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--sm-white{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-white:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-white:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-white>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--white);top:-34px}.vdl-status-ring--sm-white>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-white>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-white>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-white>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-white>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-white>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-white>.status-badge{width:15px;height:15px;border:2px solid var(--white);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--white);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--white);display:none}.vdl-status-ring--sm-white>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-white>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-white>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-white>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--white);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--white);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--white);display:none}.vdl-status-ring--sm-white>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-white>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-white>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-white .vdl-status-ring-bg-color{background-color:var(--white)}.vdl-status-ring--sm-white .vdl-status-badge-bg-color{background-color:var(--white)}.vdl-status-ring--sm-white .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--sm-white .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-white .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-white .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-white .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--white)}.vdl-status-ring--sm-white .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--white);display:none !important}.vdl-status-ring--sm-white .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--smd-white{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-white:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-white:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-white>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--white);top:-5px}.vdl-status-ring--smd-white>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-white>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-white>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-white>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-white>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-white>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-white>.status-badge{width:15px;height:15px;border:2px solid var(--white);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--smd-white>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-white>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-white>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-white>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--white);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--smd-white>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-white>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-white>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-white .vdl-status-ring-bg-color{background-color:var(--white)}.vdl-status-ring--smd-white .vdl-status-badge-bg-color{background-color:var(--white)}.vdl-status-ring--smd-white .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--smd-white .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-white .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-white .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-white .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--white)}.vdl-status-ring--smd-white .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--white);font-size:10px}.vdl-status-ring--smd-white .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--md-white{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-white:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-white:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-white>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--white);top:-5px}.vdl-status-ring--md-white>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-white>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-white>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-white>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-white>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-white>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-white>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--white);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--md-white>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-white>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-white>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-white>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--white);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--md-white>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-white>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-white>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-white .vdl-status-ring-bg-color{background-color:var(--white)}.vdl-status-ring--md-white .vdl-status-badge-bg-color{background-color:var(--white)}.vdl-status-ring--md-white .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--md-white .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-white .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-white .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-white .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--white)}.vdl-status-ring--md-white .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--white);font-size:10px}.vdl-status-ring--md-white .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--lg-white{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-white:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-white:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-white>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--white);top:-1px}.vdl-status-ring--lg-white>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-white>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-white>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-white>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-white>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-white>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-white>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--white);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--lg-white>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-white>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-white>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-white>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--white);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--lg-white>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-white>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-white>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-white .vdl-status-ring-bg-color{background-color:var(--white)}.vdl-status-ring--lg-white .vdl-status-badge-bg-color{background-color:var(--white)}.vdl-status-ring--lg-white .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--lg-white .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-white .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-white .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-white .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--white)}.vdl-status-ring--lg-white .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--white);font-size:14px}.vdl-status-ring--lg-white .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--xl-white{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-white:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-white:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-white>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--white)}.vdl-status-ring--xl-white>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-white>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-white>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-white>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-white>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-white>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-white>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--white);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--xl-white>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-white>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-white>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-white>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--white);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--white)}.vdl-status-ring--xl-white>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-white>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-white>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-white .vdl-status-ring-bg-color{background-color:var(--white)}.vdl-status-ring--xl-white .vdl-status-badge-bg-color{background-color:var(--white)}.vdl-status-ring--xl-white .vdl-status-badge-bg-color>.status-badge-content{color:var(--black)}.vdl-status-ring--xl-white .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-white .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-white .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-white .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--white)}.vdl-status-ring--xl-white .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--white);font-size:16px}.vdl-status-ring--xl-white .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--black)}.vdl-status-ring--sm-black{border:2px solid rgba(0,0,0,0);max-width:40px;max-height:40px}.vdl-status-ring--sm-black:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--sm-black:focus{max-width:50px;max-height:45px}.vdl-status-ring--sm-black>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:40px;height:40px;border:2px solid var(--black);top:-34px}.vdl-status-ring--sm-black>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--sm-black>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--sm-black>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--sm-black>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--sm-black>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--sm-black>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--sm-black>.status-badge{width:15px;height:15px;border:2px solid var(--black);top:-17px;left:26px;width:30px;left:90px;height:30px;border:2.5px solid var(--black);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--black);display:none}.vdl-status-ring--sm-black>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-black>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-black>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-black>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--black);top:-17px;left:26px;width:auto;left:60px;height:30px;border:2.5px solid var(--black);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--black);display:none}.vdl-status-ring--sm-black>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--sm-black>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--sm-black>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--sm-black .vdl-status-ring-bg-color{background-color:var(--black)}.vdl-status-ring--sm-black .vdl-status-badge-bg-color{background-color:var(--black)}.vdl-status-ring--sm-black .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--sm-black .vdl-badge-circle-stack{display:none !important;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--sm-black .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--black);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none !important}.vdl-status-ring--sm-black .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;display:none}.vdl-status-ring--sm-black .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--black)}.vdl-status-ring--sm-black .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--black);display:none !important}.vdl-status-ring--sm-black .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--smd-black{border:2px solid rgba(0,0,0,0);max-width:48px;max-height:48px}.vdl-status-ring--smd-black:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--smd-black:focus{max-width:60px;max-height:52px}.vdl-status-ring--smd-black>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:48px;height:48px;border:3px solid var(--black);top:-5px}.vdl-status-ring--smd-black>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--smd-black>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--smd-black>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--smd-black>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--smd-black>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--smd-black>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--smd-black>.status-badge{width:15px;height:15px;border:2px solid var(--black);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--smd-black>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-black>.status-badge .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-black>.status-badge .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-black>.status-badge-flexible{padding:0 4px;width:auto;height:15px;border:2px solid var(--black);top:-17px;left:26px;display:inline-block;border-radius:7.5px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--smd-black>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--smd-black>.status-badge-flexible .status-badge-content>*{font-size:6px}.vdl-status-ring--smd-black>.status-badge-flexible .status-badge-content>.truncate-text{max-width:48px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--smd-black .vdl-status-ring-bg-color{background-color:var(--black)}.vdl-status-ring--smd-black .vdl-status-badge-bg-color{background-color:var(--black)}.vdl-status-ring--smd-black .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--smd-black .vdl-badge-circle-stack{width:24px;height:24px;line-height:24px;font-size:24px;top:-23px;left:29px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--smd-black .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--black);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--smd-black .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:20px}.vdl-status-ring--smd-black .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--black)}.vdl-status-ring--smd-black .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--black);font-size:10px}.vdl-status-ring--smd-black .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--md-black{border:2px solid rgba(0,0,0,0);max-width:70px;max-height:70px}.vdl-status-ring--md-black:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--md-black:focus{max-width:150px;max-height:73px}.vdl-status-ring--md-black>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:70px;height:70px;border:3px solid var(--black);top:-5px}.vdl-status-ring--md-black>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--md-black>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--md-black>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--md-black>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--md-black>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--md-black>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--md-black>.status-badge{width:22px;left:48px;height:22px;border:2px solid var(--black);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--md-black>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-black>.status-badge .status-badge-content>*{font-size:10px}.vdl-status-ring--md-black>.status-badge .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-black>.status-badge-flexible{padding:0 4px;width:auto;left:30px;height:22px;border:2px solid var(--black);top:-23px;display:inline-block;border-radius:11px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--md-black>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--md-black>.status-badge-flexible .status-badge-content>*{font-size:10px}.vdl-status-ring--md-black>.status-badge-flexible .status-badge-content>.truncate-text{max-width:70px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--md-black .vdl-status-ring-bg-color{background-color:var(--black)}.vdl-status-ring--md-black .vdl-status-badge-bg-color{background-color:var(--black)}.vdl-status-ring--md-black .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--md-black .vdl-badge-circle-stack{width:28px;height:28px;line-height:28px;font-size:28px;top:-27px;left:45px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--md-black .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--black);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:28px}.vdl-status-ring--md-black .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:22px}.vdl-status-ring--md-black .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--black)}.vdl-status-ring--md-black .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--black);font-size:10px}.vdl-status-ring--md-black .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--lg-black{border:2px solid rgba(0,0,0,0);max-width:100px;max-height:100px}.vdl-status-ring--lg-black:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--lg-black:focus{max-width:120px;max-height:104px}.vdl-status-ring--lg-black>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:100px;height:100px;border:3px solid var(--black);top:-1px}.vdl-status-ring--lg-black>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--lg-black>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--lg-black>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--lg-black>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--lg-black>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--lg-black>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--lg-black>.status-badge{width:25px;height:25px;left:71px;border:2px solid var(--black);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--lg-black>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-black>.status-badge .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-black>.status-badge .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-black>.status-badge-flexible{padding:0 4px;width:auto;height:auto;left:50px;border:2px solid var(--black);top:-28px;display:inline-block;border-radius:12.5px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--lg-black>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--lg-black>.status-badge-flexible .status-badge-content>*{font-size:11px}.vdl-status-ring--lg-black>.status-badge-flexible .status-badge-content>.truncate-text{max-width:100px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--lg-black .vdl-status-ring-bg-color{background-color:var(--black)}.vdl-status-ring--lg-black .vdl-status-badge-bg-color{background-color:var(--black)}.vdl-status-ring--lg-black .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--lg-black .vdl-badge-circle-stack{width:30px;height:30px;line-height:30px;font-size:30px;left:70px;top:-32px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--lg-black .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--black);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--lg-black .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:24px}.vdl-status-ring--lg-black .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--black)}.vdl-status-ring--lg-black .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--black);font-size:14px}.vdl-status-ring--lg-black .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-status-ring--xl-black{border:2px solid rgba(0,0,0,0);max-width:125px;max-height:125px}.vdl-status-ring--xl-black:focus{border:2px solid #324fa5;border-radius:50%;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.vdl-status-ring--xl-black:focus{max-width:250px;max-height:130px}.vdl-status-ring--xl-black>.status-ring-container>.status-ring{border-radius:50%;overflow:hidden;display:flex;flex-direction:column;align-content:center;justify-content:center;text-align:center;width:125px;height:125px;border:3px solid var(--black)}.vdl-status-ring--xl-black>.status-ring-container>.status-ring>*{width:100%;height:100%}.vdl-status-ring--xl-black>.status-ring-container img{object-fit:cover;width:100%;height:125px}.vdl-status-ring--xl-black>.status-ring-container .font-size-xl{font-size:48px}.vdl-status-ring--xl-black>.status-ring-container .font-size-lg{font-size:32px}.vdl-status-ring--xl-black>.status-ring-container .text-size-lg{font-size:28px}.vdl-status-ring--xl-black>.status-ring-container .expanded-rings>*:last-child{margin-left:70px}.vdl-status-ring--xl-black>.status-badge{width:30px;left:90px;height:30px;border:2.5px solid var(--black);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--xl-black>.status-badge .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-black>.status-badge .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-black>.status-badge .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-black>.status-badge-flexible{padding:0 4px;width:auto;left:60px;height:30px;border:2.5px solid var(--black);top:-34px;display:inline-block;border-radius:15px;background-color:var(--white);position:relative;z-index:1;color:var(--black)}.vdl-status-ring--xl-black>.status-badge-flexible .status-badge-content{font-weight:600;text-align:center;height:100%;width:100%;display:flex;flex-direction:column;align-content:center;justify-content:center}.vdl-status-ring--xl-black>.status-badge-flexible .status-badge-content>*{font-size:14px}.vdl-status-ring--xl-black>.status-badge-flexible .status-badge-content>.truncate-text{max-width:125px;width:inherit;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.vdl-status-ring--xl-black .vdl-status-ring-bg-color{background-color:var(--black)}.vdl-status-ring--xl-black .vdl-status-badge-bg-color{background-color:var(--black)}.vdl-status-ring--xl-black .vdl-status-badge-bg-color>.status-badge-content{color:var(--white)}.vdl-status-ring--xl-black .vdl-badge-circle-stack{width:36px;height:36px;line-height:36px;font-size:36px;left:85px;top:-35px;position:relative;display:inline-block;vertical-align:middle}.vdl-status-ring--xl-black .vdl-badge-circle-stack>.vdl-badge-circle-background{color:var(--black);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:36px}.vdl-status-ring--xl-black .vdl-badge-circle-stack>.vdl-badge-circle-foreground{color:var(--white);text-align:center;line-height:inherit;position:absolute;left:0;width:100%;height:100%;font-size:30px}.vdl-status-ring--xl-black .vdl-badge-circle-stack>.vdl-badge-foreground-filled{color:var(--black)}.vdl-status-ring--xl-black .vdl-badge-circle-stack>.vdl-badge-icon{line-height:inherit;position:absolute;left:0;width:100%;text-align:center;color:var(--black);font-size:16px}.vdl-status-ring--xl-black .vdl-badge-circle-stack>.vdl-badge-font-color{color:var(--white)}.vdl-date-range-desktop-popup.vdl-popup__content{width:300px}.vdl-date-range-desktop-calender{display:flex;flex-wrap:wrap}.vdl-date-range-picker-footer{padding:5px;border-top:1px solid var(--neutral-light);background-color:var(--neutral-lightest);display:flex}.vdl-date-range-picker-footer .vdl-button--link{margin:0}.vdl-date-range-picker-footer-left{flex:1;text-align:left}.vdl-date-range-picker-footer .vdl-date-time-picker__select__picker{text-transform:var(--text-transform)}.vdl-date-range-picker-footer .vdl-date-time-picker__select__picker--lg{font-size:var(--font-size-medium)}.vdl-date-range-picker-footer .vdl-date-time-picker__select__picker--sm{font-size:var(--font-size-small)}.vdl-date-range-picker-calendar .calendar-header{cursor:default}.vdl-date-range-picker-calendar .calendar-header .calendar-header-currentDate-selector{pointer-events:none}.vdl-date-range-picker-calendar .calendar-grid-item{margin:0}.vdl-date-range-picker-calendar .calendar-grid-item__selected{background-color:var(--accent-0-light);border:1px solid var(--accent-0-dark);box-shadow:none;color:var(--black)}.vdl-date-range-picker-calendar .calendar-grid-item__selected:hover{background-color:var(--accent-0-lightest)}.vdl-date-range-picker-calendar .calendar-grid-item__range__selected{background-color:var(--toggle-switch-checked)}.vdl-date-range-picker-calendar-first .calendar-header .calendar-header-navbutton:last-child{display:none}.vdl-date-range-picker-calendar-second .calendar-header .calendar-header-navbutton:first-child{display:none}@media screen and (min-width: 768px){.vdl-date-range-desktop-popup.vdl-popup__content{width:480px}.vdl-date-range-desktop-calender{flex-wrap:nowrap}.vdl-date-range-picker-footer{width:480px}}.mdf .dateTimePicker .mdf-mobile-picker__input{-webkit-appearance:none;color:rgba(0,0,0,0) !important;position:relative;border-radius:0;width:100%;height:34px}.mdf .dateTimePicker .mdf-mobile-picker__input::before{position:absolute;content:attr(data-date);display:inline-block;color:#000}.mdf .dateTimePicker .mdf-mobile-picker__input::-webkit-datetime-edit,.mdf .dateTimePicker .mdf-mobile-picker__input::-webkit-inner-spin-button,.mdf .dateTimePicker .mdf-mobile-picker__input::-webkit-calendar-picker-indicator,.mdf .dateTimePicker .mdf-mobile-picker__input::-webkit-clear-button{display:none}.mdf .dateTimePicker .vdl-popup--dropup{margin-bottom:0}.vdl-date-time-picker{margin-bottom:5px}.vdl-date-time-picker .vdl-date-time-picker__select__picker{border:2px solid rgba(0,0,0,0)}.vdl-date-time-picker .vdl-date-time-picker__select__picker:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;margin-top:2px;border-width:1px}.vdl-date-picker-footer{padding:5px;border-top:1px solid var(--neutral-light);display:flex;justify-content:center}.vdl-date-picker-footer .vdl-button--link{margin:0}.vdl-date-picker-footer .vdl-date-time-picker__select__picker{text-transform:var(--text-transform)}.vdl-date-picker-footer .vdl-date-time-picker__select__picker--lg{font-size:var(--font-size-medium)}.vdl-date-picker-footer .vdl-date-time-picker__select__picker--sm{font-size:var(--font-size-small)}.one-ux .vdl-date-time-picker .vdl-date-time-picker__select{bottom:0}.one-ux .vdl-date-time-picker .vdl-date-time-picker__select__picker{font-size:var(--font-size-base)}.one-ux .vdl-date-time-picker .vdl-date-time-picker__input:-ms-input-placeholder{font-style:normal}.one-ux .vdl-date-time-picker .vdl-date-time-picker__input::placeholder{font-style:normal}[synerg-theme=one] .mdf .vdl-date-time-picker.dateTimePicker .vdl-date-time-picker__select .vdl-date-time-picker__select__picker:before{content:none;color:var(--link-color)}@media screen and (max-width: 480px){.mdf .vdl-date-time-picker input{border:var(--input-border);border-radius:var(--input-border-radius);height:var(--form-input-height);background-color:var(--white)}.mdf .vdl-date-time-picker-disabled{background-color:var(--neutral-disabled);color:var(--input-color-disabled);cursor:not-allowed}}.mdf-mobile-dropdownlist__input-container{padding:0 !important}.mdf-mobile-dropdownlist__input-container::after{content:"";font:normal normal normal 14px FontAwesome;right:11px;top:10px;font-weight:100;position:absolute;pointer-events:none}.mdf-mobile-dropdownlist__input-container.mdf-mobile-dropdownlist--disabled{background-color:var(--neutral)}.mdf-mobile-dropdownlist__input-container.mdf-mobile-dropdownlist--disabled select{background-color:var(--neutral)}.mdf-mobile-dropdownlist__input-container select{-webkit-appearance:none;-moz-appearance:none;width:100%;background-color:var(--white);border:0;padding-left:10px}.mdf-mobile-dropdownlist__input-container select::-ms-expand{display:none}.mdf .mdfDropdownbox,.mdfDropdownbox{max-width:200px;font-size:20px}.mdf .vdl-dropdown-list,.vdl-dropdown-list{margin-bottom:5px;overflow:auto;max-height:200px}.mdf .vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content,.vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content{position:relative;display:inline-block;min-width:calc(100% - 10px)}.mdf .vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content>div,.vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content>div{display:inline-block;width:100%}.mdf .vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content .vdl-list,.vdl-dropdown-list.vdl-dropdown-list-nowrap .vdl-popup__content .vdl-list{white-space:nowrap}.mdf .vdl-dropdown-button__icon,.vdl-dropdown-button__icon{font-size:var(--font-size-small) !important}.mdf .Select.is-focused>.Select-control,.Select.is-focused>.Select-control{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .Select .Select-control,.Select .Select-control{border-radius:0}.mdf .Select-menu-outer,.Select-menu-outer{z-index:1050}.mdf-dropdown-container{display:flex;align-items:flex-start;flex-direction:column;width:fit-content}.mdf-dropdown-container.vdl-validation-error .mdf-dropdown-menu{border:var(--input-border-invalid);color:var(--color-status-error)}.mdf-dropdown-container.vdl-validation-error .mdf-dropdown-menu>input::placeholder{color:var(--color-status-error)}.mdf-dropdown-container.vdl-validation-error .mdf-dropdown-menu>.mdf-angle-down{color:var(--color-status-error)}.mdf-dropdown-container .mdf-dropdown-menu{display:flex;width:100%;height:var(--form-input-height);border:var(--input-border);border-radius:var(--input-border-radius);align-items:center;justify-content:flex-start;padding:10px;background-color:var(--white)}.mdf-dropdown-container .mdf-dropdown-menu.mdf-dropdown-menu-placeholder{color:var(--neutral-dark)}.mdf-dropdown-container .mdf-dropdown-menu.mdf-dropdown-menu-error{border:var(--input-border-invalid);color:var(--color-status-error)}.mdf-dropdown-container .mdf-dropdown-menu.mdf-dropdown-menu-error>input::placeholder{color:var(--color-status-error)}.mdf-dropdown-container .mdf-dropdown-menu.mdf-dropdown-menu-error>.mdf-angle-down{color:var(--color-status-error)}.mdf-dropdown-container .mdf-dropdown-menu .mdf-dropdown-menu-value{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding-right:5px}.mdf-dropdown-container .mdf-dropdown-menu input{border:none}.mdf-dropdown-container .mdf-dropdown-menu input::placeholder{font-style:italic;color:var(--neutral-dark)}.mdf-dropdown-container .mdf-dropdown-menu .fa-search{margin-right:5px}.mdf-dropdown-container .mdf-dropdown-menu .mdf-close-icon{color:var(--black);font-size:10px;padding:2px;cursor:pointer}.mdf-dropdown-container .mdf-dropdown-menu .mdf-close-icon.hide-icon{visibility:hidden}.mdf-dropdown-container .mdf-dropdown-menu .mdf-close-icon-waypoint{color:var(--black);font-size:var(--font-size-small);cursor:pointer}.mdf-dropdown-container .mdf-dropdown-menu .mdf-close-icon-waypoint.hide-icon{visibility:hidden}.mdf-dropdown-container .mdf-dropdown-menu .mdf-angle-down{color:var(--neutral-darkest);padding-left:5px;font-size:var(--font-size-small);cursor:pointer}.mdf-dropdown-container .mdf-dropdown-menu .mdf-angle-down-waypoint{color:var(--neutral-darkest);padding-left:4px;cursor:pointer}.mdf-dropdown-container .mdf-dropdown-menu:hover{border-color:var(--dropdown-list-hover)}.mdf-dropdown-container .mdf-dropdown-menu.mdf-dropdown-menu-focused:not(.mdf-dropdown-menu-disabled){border:2px solid #324fa5;outline:0;box-shadow:var(--dropdown-list-focus-box-shadow);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf-dropdown-container .mdf-dropdown-menu-disabled{border-color:var(--dropdown-list-disabled-border);background-color:var(--dropdown-list-disabled-background);cursor:not-allowed}.mdf-dropdown-container .mdf-dropdown-menu-disabled .mdf-dropdown-menu-value{color:var(--dropdown-list-disabled-color);background-color:var(--dropdown-list-disabled-background);cursor:not-allowed}.mdf-dropdown-container .mdf-dropdown-menu-disabled .toggle-style{color:var(--input-color-disabled);cursor:not-allowed}.mdf-dropdown-menu-items-container .input-container{display:flex}.mdf-dropdown-menu-items-container .input-container .mdf-dropdown-close{flex:1}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input{display:flex;height:35px;border:2px solid #324fa5;border-top:0;align-items:center;justify-content:flex-start;padding:10px;background-color:var(--white)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input>input{border:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding-right:5px}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input>.fa-search{margin-right:5px}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input>.mdf-angle-down{color:var(--neutral-darkest);padding-left:5px;font-size:var(--font-size-small);cursor:pointer}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content{background-color:var(--white);border:1px solid var(--neutral-mid)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items{max-height:174px;overflow-y:scroll}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-active-item:not(.mdf-dropdown-menu-selected){border:2px solid var(--accent-0-dark)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-no-items-found{display:flex;align-items:center;justify-content:center;height:29px;margin:auto}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-searching{display:flex;align-items:center;justify-content:flex-start;padding:5px;height:29px;font-style:italic}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-searching div{flex-grow:1}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-searching .fa-spinner{color:var(--link-color)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-single-item{user-select:none;padding:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;height:29px;border:2px solid rgba(0,0,0,0)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-single-item:hover{background-color:var(--list-option-hover-background)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-single-item .mdf-dropdown-menu-active-item{border-color:var(--list-option-focus-border)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-selected{background-color:var(--accent-0-lighter);border:2px solid var(--accent-0-dark)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items>div{display:flex;align-items:center;justify-content:flex-start;user-select:none}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped{display:flex;align-items:center;justify-content:flex-start;flex-direction:column}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped>.mdf-dropdown-menu-grouped-title{background-color:var(--neutral-light);font-weight:600;width:100%;padding:5px;font-size:var(--font-size-small)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped>.mdf-dropdown-menu-grouped-item{width:100%;padding:5px;font-size:var(--font-size-base)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped>.mdf-dropdown-menu-grouped-item .mdf-dropdown-menu-grouped-item-value{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped>.mdf-dropdown-menu-grouped-item .mdf-dropdown-menu-grouped-item-subvalue{color:var(--neutral);font-size:var(--font-size-xsmall);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-grouped>.mdf-dropdown-menu-grouped-item:hover:not(.mdf-dropdown-menu-selected){background-color:var(--accent-0-lighter)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-complex-item{display:flex;flex-direction:column;align-items:flex-start;padding:5px}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-complex-item .mdf-dropdown-menu-complex-item-value{font-size:var(--font-size-base);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-complex-item .mdf-dropdown-menu-complex-item-id{color:var(--neutral-darker);font-size:var(--font-size-xsmall);overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-items .mdf-dropdown-menu-complex-item:hover:not(.mdf-dropdown-menu-selected){background-color:var(--accent-0-lighter)}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-footer{text-align:center;border-top:1px solid #cfcfcf}.mdf-dropdown-menu-items-container .mdf-dropdown-menu-content .mdf-dropdown-menu-footer .link-button{font-size:var(--font-size-base)}.vdl-overlay-container.mdf-dropdown-menu-popup{background-color:rgba(0,0,0,0);border:0px;box-shadow:none}.vdl-overlay-container.mdf-dropdown-menu-popup.vdl-popup--dropup.vdl-popup__content{box-shadow:none}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=top] .mdf-dropdown-menu-items-container{display:flex;flex-direction:column-reverse}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=top] .mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input{border-top:0;border:2px solid rgba(0,0,0,0)}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=top] .mdf-dropdown-menu-items-container .mdf-dropdown-menu-content{box-shadow:0 -6px 12px rgba(0,0,0,.175)}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=bottom] .mdf-dropdown-menu-items-container{display:flex;flex-direction:column}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=bottom] .mdf-dropdown-menu-items-container .mdf-dropdown-menu-search-input{border-bottom:0}.vdl-overlay-container.mdf-dropdown-menu-popup[data-popper-placement^=bottom] .mdf-dropdown-menu-items-container .mdf-dropdown-menu-content{box-shadow:0 6px 12px rgba(0,0,0,.175)}.mdf .ms-container{display:flex;width:100%}.gu-unselectable .mdf~.vdl-dual-select__list-group-item{list-style-type:none;padding:10px 15px}.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-all-right,.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-all-left{font-size:11.2px}.mdf .vdl-dual-select__list-holder .vdl-dual-select__list-group{height:100%;margin:0;cursor:move;cursor:grab;cursor:-moz-grab;cursor:-webkit-grab;outline:none}.mdf .vdl-dual-select__list-holder .vdl-dual-select__list-group.selected.show-sequence{counter-reset:li-count}.mdf .vdl-dual-select__list-holder .vdl-dual-select__list-group.selected.show-sequence>li{counter-increment:li-count}.mdf .vdl-dual-select__list-holder .vdl-dual-select__list-group.selected.show-sequence>li>span::before{content:counter(li-count) ". "}input.search-input{box-sizing:border-box;width:100%;margin-bottom:5px;border-radius:4px;height:30px;background-color:var(--white);border:1px solid var(--neutral-mid);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.mdf .vdl-dual-select .vdl-dual-select__list-holder.vdl-dual-select_validation_error{border:1px solid var(--accent-6)}.inValid__text{color:var(--accent-6)}.mdf .vdl-dual-select .vdl-dual-select__list-holder:focus-within{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-all-right:focus,.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-right:focus,.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-all-left:focus,.mdf .vdl-dual-select .vdl-dual-select__button-overlay .move-left:focus{background-color:var(--accent-0-darkest);outline-offset:2px;outline:1px solid var(--accent-0-darkest)}.mdf .vdl-dual-select .vdl-dual-select__list-group-item:focus{box-shadow:var(--input-focus)}.mdf .vdl-invisible{margin:0;line-height:0}.mdf-editor-wrapper .rdw-option-wrapper{height:32px;min-width:37px}.mdf-editor-pane{border:1px solid #f1f1f1;padding:5px;height:300px !important;background-color:#fff}.rdw-custom-option{display:flex;align-items:center;margin-bottom:6px;position:relative}.public-DraftStyleDefault-block{margin:0}.DraftStyleDefault-block--atomic{margin:0}.mdf-editor-field-name{font-size:14px}.mdf-editor-section-name{font-size:12px}.mdf-placeholder-section{float:right;display:block;margin-bottom:6px;margin-left:6px}.mdf-editor-section{display:inline-block}.mdf-placeholder-label{padding-right:20px;font-size:13px;margin-top:10px}.mdf-placeholder-dropdown{width:250px}.mdf-placeholder{display:inline-block;background-color:var(--accent-5-light);cursor:pointer}.mdf-placeholder-existing{background-color:var(--neutral-light);cursor:pointer;display:inline-block}.placeholder-big .vdl-modal-content{height:430px}.uploadRoot{background-color:var(--white)}.dropTargetStyle{background-color:var(--white);border:2px dashed var(--neutral)}.dropTargetActiveStyle{background-color:var(--neutral-lightest);border:3px dashed var(--accent-0)}.targetZone{text-align:center;cursor:pointer}.dropZoneLabel{color:var(--neutral-darker);font-size:var(--font-size-medium);padding-top:10px}.placeHolderStyle{color:var(--neutral-darker);font-size:var(--font-size-small)}.fileIconClass{font-size:14px;color:var(--neutral-dark)}.uploadButtonStyle{width:100%;margin-top:10px;background-color:var(--neutral-light);border:1px solid var(--neutral);color:var(--link-color);align-self:center}sdf-button.uploadLabelStyle2,.mdf sdf-button.uploadLabelStyle2{margin:0}.uploadLabelStyle{text-transform:var(--button-text-transform);padding:2px;font-weight:600;color:var(--link-color);text-decoration:underline;font-family:var(--font-family-base);cursor:pointer;font-size:var(--font-size-small)}.uploadLabelStyle.vdl-button--link{margin:0}.dropZoneDisabled{padding-top:10px;cursor:not-allowed;color:var(--neutral-dark)}.dropZoneDisabled .fileSizeLabel{color:var(--neutral-dark)}.dropZoneDisabled.vdl-button--link{color:var(--neutral-dark)}.removeIcon{text-transform:var(--text-transform);border:none;background:none;font-size:14px;color:var(--link-color)}.uploadProgress{line-height:.5}.uploadProgress .vdl-progress-bar__bar{border:1px solid var(--neutral-light);margin:0}.uploadProgress .vdl-progress-bar__percentage{height:2px;background-color:var(--accent-1-dark)}.uploadProgress.uploadErrorProgress .vdl-progress-bar__percentage{background-color:var(--accent-6)}.progressLabel{font-style:italic;color:var(--neutral-dark);text-align:left;flex-grow:8;font-size:var(--font-size-small)}.progressLabel.progressLabelError{color:var(--accent-6)}.progressLabelIcon:before{content:"";font-style:normal;font-family:"FontAwesome";display:inline-block;font-size:14px;padding:2px;color:var(--accent-1-dark)}.fileSizeLabel{padding:10px;color:var(--neutral-darker);font-size:var(--font-size-small)}.fileset{margin-top:10px;padding-top:10px;padding-bottom:10px}.hideDiv{display:none}.fileDetails{padding-top:10px;display:flex;align-items:flex-start}.fileName{flex-grow:8;color:var(--neutral-darker);font-size:var(--font-size-base)}.fileSize{float:right;flex-grow:2;align-self:flex-end}.removeButton{font-size:14px;color:var(--link-color);align-self:flex-end}.progress{-webkit-appearance:none;-moz-appearance:none;margin-top:10px;width:100%;height:2px}.mdf-mobile-file-upload{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;background-color:var(--white);border:2px dashed var(--neutral-mid);padding:20px}.mdf-mobile-file-upload .mdf-mobile-file-upload-button-container{display:flex;align-items:center;justify-content:center}.mdf-mobile-file-upload .mdf-mobile-file-upload-message-container{display:flex;align-items:center;justify-content:center;margin-top:20px}.mdf-mobile-file-upload .mdf-mobile-file-upload-failed{color:var(--accent-6)}.mdf-grid-wrapper{display:table;min-width:100%;flex:1 1 auto}.mdf-grid-scroll{overflow:scroll}.mdf-grid-flex{display:flex}.mdf-grid-resizing{flex-grow:0}.mdf-grid-infinite{margin-left:-15px;margin-right:-15px}.mdf-grid-infinite .mdf-grid-row{padding-left:15px;padding-right:15px}.mdf-grid-header{height:40px;align-items:center;border-top:1px solid var(--neutral-mid);border-bottom:1px solid var(--neutral-mid);background-color:initial}.mdf-grid-sticky-header{position:sticky;top:0;z-index:1000}.mdf-grid-subheader{background-color:initial}.mdf-grid-headerCell{font-weight:600;color:var(--neutral-darker);text-transform:var(--text-transform);font-size:var(--grid-header-font-size)}.mdf-grid-headerCell-title{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;vertical-align:middle;max-width:90%}.mdf-grid-headerCell .vdl-checkbox,.mdf-grid-headerCell .vdl-radio{margin:0 !important}.mdf-grid-headerCell .vdl-checkbox>label,.mdf-grid-headerCell .vdl-radio>label{margin:0 !important;font-size:var(--font-size-small);font-weight:600;line-height:16px;padding-left:25px}.mdf-grid-headerCell .vdl-checkbox>label::before,.mdf-grid-headerCell .vdl-radio>label::before{height:16px;width:16px}.mdf-grid-headerCell .vdl-checkbox>label::after,.mdf-grid-headerCell .vdl-radio>label::after{height:6px;width:10px;left:3px;top:4px}.mdf-grid-headerCell.sort-enabled{cursor:pointer;color:var(--link-color)}.mdf-grid-headerCell .sort-arrow{margin-left:.5rem;cursor:pointer;color:var(--link-color);vertical-align:middle}.mdf-grid-headerCell .sort-arrow.fa-sort-down::before{position:relative;top:-4px}.mdf-grid-body{display:flex}.mdf-grid-row{align-items:center;text-overflow:ellipsis;height:auto;min-height:40px;border-bottom:1px solid var(--neutral-mid)}.mdf-grid-row-dragStart{opacity:.4}.mdf-grid-row-dragOver{border:2px dashed}.mdf-grid-row:hover{background-color:var(--accent-0-lightest)}.mdf-grid-row-selected,.mdf-grid-row-selected .mdf-grid-cell{background-color:var(--accent-0-lighter)}.mdf-grid-row-hover,.mdf-grid-row-hover .mdf-grid-cell{background-color:var(--accent-0-lightest)}.mdf-grid-row-hover>div,.mdf-grid-row-hover .mdf-grid-cell>div{background-color:var(--accent-0-lightest)}.mdf-grid-cell{justify-content:flex-start;word-break:break-word}.mdf-grid-cell>div{margin:0 !important}.mdf-grid-cell>div>label{margin:0 !important}.mdf-grid-resizable-column{display:flex;justify-content:space-between}.mdf-grid-resizable-cell:before{font-family:FontAwesome;content:"||";cursor:col-resize;text-align:right;position:absolute;right:0}.mdf-grid-locked-column-min-width{min-width:140px}.mdf-grid-locked-columns{margin-right:10px;flex-grow:1}.mdf-grid-unlocked-columns{margin-left:5px;overflow-x:scroll;z-index:1;border-radius:.000001px}.mdf-grid-noDataMessage{font-weight:400;font-size:var(--font-size-base);color:var(--black);background-color:var(--accent-0-lighter);border-bottom:1px solid var(--neutral-mid);display:flex;justify-content:center;margin-top:10px;padding:10px}.mdf-grid-scroll-pane{height:400px;will-change:scroll-position}.mdf-grid-unlocked-infinite-scroll{overflow-y:scroll}.mdf-grid-unlocked-enable-scroll{overflow-y:scroll}.mdf-grid-window-scroll-container .mdf-grid-scroll-pane{height:auto}body :not(.mdf-grid-window-scroll-container) .mdf-grid-locked-infinite-scroll{overflow:hidden}body :not(.mdf-grid-window-scroll-container) .mdf-grid-locked-enable-scroll{overflow:hidden}.mdf-grid-infinite-grid-container:not(.mdf-grid-window-scroll-container) .mdf-grid-header{position:sticky;top:0;z-index:2;background-color:var(--neutral-lightest)}.mdf-grid-enable-scroll-container:not(.mdf-grid-window-scroll-container) .mdf-grid-header{position:sticky;top:0;z-index:2;background-color:var(--neutral-lightest)}.mdf-grid-window-scroll-container .mdf-grid-set-overflow{overflow-y:hidden}.erd_scroll_detection_container{display:none !important}.mdf .mdf-grid-infinite-grid-container .mdf-grid-unlocked-columns .vdl-col-xs{flex-wrap:wrap}.mdf .mdf-grid-enable-scroll-container .mdf-grid-unlocked-columns .vdl-col-xs{flex-wrap:wrap}.mdf .vdl-row.mdf-grid-row,.mdf .vdl-row.mdf-grid-header{flex-wrap:nowrap}.mdf .vdl-col-xs.mdf-grid-locked-infinite-scroll-IE,.mdf .vdl-col-xs.mdf-grid-unlocked-infinite-scroll-IE{flex-basis:auto}.mdf .vdl-col-xs.mdf-grid-locked-enable-scroll-IE,.mdf .vdl-col-xs.mdf-grid-unlocked-enable-scroll-IE{flex-basis:auto}.mdf .mdf-grid-column-with-set-width{flex:0 0 auto}.mdf .mdf-grid-column-min-width-smaller{min-width:15px}table.sdf-table.borders-rows.spacing-tight.compensation-table{background:rgba(0,0,0,0)}table.sdf-table.borders-rows.spacing-tight.compensation-table thead th{background:rgba(0,0,0,0);text-align:right}table.sdf-table.borders-rows.spacing-tight.compensation-table thead th:first-child{text-align:left}table.sdf-table.borders-rows.spacing-tight.compensation-table tbody td{background:rgba(0,0,0,0);text-align:right}table.sdf-table.borders-rows.spacing-tight.compensation-table tbody td:first-child{text-align:left}table.sdf-table.borders-rows.spacing-tight.compensation-table tfoot td{background:rgba(0,0,0,0);text-align:right}table.sdf-table.borders-rows.spacing-tight.compensation-table tfoot td:first-child{text-align:left}.help-icon{margin-left:10px}.help-icon i{color:var(--link-color);cursor:pointer}.mdf-help-icon .vdl-modal-dialog.md .vdl-modal-content{width:560px;height:460px;background:var(--white)}.journeyItemAccordion{width:90%}.layoutBox{margin-left:0;display:flex;flex-wrap:wrap}.layoutBox.layout-column{flex-direction:column}.layoutBox.horizontal-layout .small-card{height:100%}.layoutBox.layout-row.offsetPadding-0,.layoutBox .layoutItem.offsetPadding-0,.layoutBox .layout-column.offsetPadding-0{padding:0}.layoutBox.layout-row.offsetPadding-5,.layoutBox .layoutItem.offsetPadding-5,.layoutBox .layout-column.offsetPadding-5{padding:2.5px 0}.layoutBox.layout-row.offsetPadding-10,.layoutBox .layoutItem.offsetPadding-10,.layoutBox .layout-column.offsetPadding-10{padding:5px 0}.layoutBox.layout-row.offsetPadding-15,.layoutBox .layoutItem.offsetPadding-15,.layoutBox .layout-column.offsetPadding-15{padding:7.5px 0}.layoutBox.layout-row.offsetPadding-20,.layoutBox .layoutItem.offsetPadding-20,.layoutBox .layout-column.offsetPadding-20{padding:10px 0}.layoutBox.layout-row.gutterWidth-0,.layoutBox .layoutItem.gutterWidth-0,.layoutBox .layout-column.gutterWidth-0{padding:0 0}.layoutBox.layout-row.gutterWidth-5,.layoutBox .layoutItem.gutterWidth-5,.layoutBox .layout-column.gutterWidth-5{padding:2.5px}.layoutBox.layout-row.gutterWidth-10,.layoutBox .layoutItem.gutterWidth-10,.layoutBox .layout-column.gutterWidth-10{padding:5px}.layoutBox.layout-row.gutterWidth-15,.layoutBox .layoutItem.gutterWidth-15,.layoutBox .layout-column.gutterWidth-15{padding:7.5px}.layoutBox.layout-row.gutterWidth-20,.layoutBox .layoutItem.gutterWidth-20,.layoutBox .layout-column.gutterWidth-20{padding:10px}.layoutBox2{margin-left:0;display:flex;flex-wrap:wrap}.layoutBox2.layout-column{flex-direction:column}.layoutBox2.horizontal-layout .small-card2{height:100%}.layoutBox2.layout-row.offsetPadding-0,.layoutBox2 .layoutItem.offsetPadding-0,.layoutBox2 .layout-column.offsetPadding-0{padding:0}.layoutBox2.layout-row.offsetPadding-5,.layoutBox2 .layoutItem.offsetPadding-5,.layoutBox2 .layout-column.offsetPadding-5{padding:.125rem 0}.layoutBox2.layout-row.offsetPadding-10,.layoutBox2 .layoutItem.offsetPadding-10,.layoutBox2 .layout-column.offsetPadding-10{padding:.25rem 0}.layoutBox2.layout-row.offsetPadding-15,.layoutBox2 .layoutItem.offsetPadding-15,.layoutBox2 .layout-column.offsetPadding-15{padding:.5rem 0}.layoutBox2.layout-row.offsetPadding-20,.layoutBox2 .layoutItem.offsetPadding-20,.layoutBox2 .layout-column.offsetPadding-20{padding:.75rem 0}.layoutBox2.layout-row.gutterWidth-0,.layoutBox2 .layoutItem.gutterWidth-0,.layoutBox2 .layout-column.gutterWidth-0{padding:0 0}.layoutBox2.layout-row.gutterWidth-5,.layoutBox2 .layoutItem.gutterWidth-5,.layoutBox2 .layout-column.gutterWidth-5{padding:.125rem}.layoutBox2.layout-row.gutterWidth-10,.layoutBox2 .layoutItem.gutterWidth-10,.layoutBox2 .layout-column.gutterWidth-10{padding:.25rem}.layoutBox2.layout-row.gutterWidth-15,.layoutBox2 .layoutItem.gutterWidth-15,.layoutBox2 .layout-column.gutterWidth-15{padding:.5rem}.layoutBox2.layout-row.gutterWidth-20,.layoutBox2 .layoutItem.gutterWidth-20,.layoutBox2 .layout-column.gutterWidth-20{padding:.75rem}@media screen and (max-width: 960px){.mdf-css-layout.grid-cols-5,.mdf-css-layout.grid-cols-6,.mdf-css-layout.grid-cols-7,.mdf-css-layout.grid-cols-8,.mdf-css-layout.grid-cols-9,.mdf-css-layout.grid-cols-10,.mdf-css-layout.grid-cols-11,.mdf-css-layout.grid-cols-12{grid-template-columns:repeat(4, minmax(0px, 1fr))}.mdf-css-layout-item.col-span-5,.mdf-css-layout-item.col-span-6,.mdf-css-layout-item.col-span-7,.mdf-css-layout-item.col-span-8,.mdf-css-layout-item.col-span-9,.mdf-css-layout-item.col-span-10,.mdf-css-layout-item.col-span-11,.mdf-css-layout-item.col-span-12{grid-column:span 4/span 4}}@media screen and (max-width: 768px){.mdf-css-layout.grid-cols-4,.mdf-css-layout.grid-cols-5,.mdf-css-layout.grid-cols-6,.mdf-css-layout.grid-cols-7,.mdf-css-layout.grid-cols-8,.mdf-css-layout.grid-cols-9,.mdf-css-layout.grid-cols-10,.mdf-css-layout.grid-cols-11,.mdf-css-layout.grid-cols-12{grid-template-columns:repeat(3, minmax(0px, 1fr))}.mdf-css-layout-item.col-span-4,.mdf-css-layout-item.col-span-5,.mdf-css-layout-item.col-span-6,.mdf-css-layout-item.col-span-7,.mdf-css-layout-item.col-span-8,.mdf-css-layout-item.col-span-9,.mdf-css-layout-item.col-span-10,.mdf-css-layout-item.col-span-11,.mdf-css-layout-item.col-span-12{grid-column:span 3/span 3}}@media screen and (max-width: 576px){.mdf-css-layout.grid-cols-3,.mdf-css-layout.grid-cols-4,.mdf-css-layout.grid-cols-5,.mdf-css-layout.grid-cols-6,.mdf-css-layout.grid-cols-7,.mdf-css-layout.grid-cols-8,.mdf-css-layout.grid-cols-9,.mdf-css-layout.grid-cols-10,.mdf-css-layout.grid-cols-11,.mdf-css-layout.grid-cols-12{grid-template-columns:repeat(2, minmax(0px, 1fr))}.mdf-css-layout-item.col-span-3,.mdf-css-layout-item.col-span-4,.mdf-css-layout-item.col-span-5,.mdf-css-layout-item.col-span-6,.mdf-css-layout-item.col-span-7,.mdf-css-layout-item.col-span-8,.mdf-css-layout-item.col-span-9,.mdf-css-layout-item.col-span-10,.mdf-css-layout-item.col-span-11,.mdf-css-layout-item.col-span-12{grid-column:span 2/span 2}}@media screen and (max-width: 360px){.mdf-css-layout.grid-cols-2,.mdf-css-layout.grid-cols-3,.mdf-css-layout.grid-cols-4,.mdf-css-layout.grid-cols-5,.mdf-css-layout.grid-cols-6,.mdf-css-layout.grid-cols-7,.mdf-css-layout.grid-cols-8,.mdf-css-layout.grid-cols-9,.mdf-css-layout.grid-cols-10,.mdf-css-layout.grid-cols-11,.mdf-css-layout.grid-cols-12{grid-template-columns:repeat(1, minmax(0px, 1fr))}.mdf-css-layout-item.col-span-2,.mdf-css-layout-item.col-span-3,.mdf-css-layout-item.col-span-4,.mdf-css-layout-item.col-span-5,.mdf-css-layout-item.col-span-6,.mdf-css-layout-item.col-span-7,.mdf-css-layout-item.col-span-8,.mdf-css-layout-item.col-span-9,.mdf-css-layout-item.col-span-10,.mdf-css-layout-item.col-span-11,.mdf-css-layout-item.col-span-12{grid-column:span 1/span 1}}.locale-picker{min-height:110px;overflow:hidden;display:flex;flex-direction:row;flex-wrap:wrap}.locale-picker .locale-picker__card-outer{display:inline-block;padding-top:15px;padding-left:10px;padding-right:10px;position:relative;overflow:hidden}.locale-picker .locale-picker__card-outer:not([disabled]):focus .selected{box-shadow:var(--white) 0 0 0 2px inset}.locale-picker .locale-picker__card-outer .locale-picker__card-inner{height:75px;width:150px;position:relative;overflow:hidden;cursor:pointer;background-color:var(--white);border-radius:8px}.locale-picker .locale-picker__card-outer .locale-picker__card-inner:hover:not([disabled]){box-shadow:var(--white) 0 0 0 2px inset,var(--accent-0-dark) 0 0 0 4px inset}.locale-picker .locale-picker__card-outer .locale-picker__card-inner .locale-picker__card-label{padding-top:10px;padding-left:10px;font-weight:600;cursor:pointer;display:flex}.locale-picker .locale-picker__card-outer .locale-picker__card-inner .locale-picker__card-label .locale-picker__card-label-text{color:var(--link-color);margin-right:10px}.locale-picker .locale-picker__card-outer .locale-picker__card-inner .locale-picker__card-description{padding-top:10px;padding-bottom:10px;padding-left:10px;font-size:12px;color:var(--black);cursor:pointer}.locale-picker .locale-picker__card-outer .locale-picker__card-inner .locale-picker__card-description .locale-picker__card-description-icon{padding-right:2px;color:var(--accent-1-dark)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner .locale-picker__card-description .locale-picker__card-description-text{color:var(--black)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner[disabled]{cursor:not-allowed;pointer-events:auto;opacity:1}.locale-picker .locale-picker__card-outer .locale-picker__card-inner[disabled] *{pointer-events:none}.locale-picker .locale-picker__card-outer .locale-picker__card-inner[disabled] .locale-picker__card-label .locale-picker__card-label-text{color:var(--button-disabled)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner[disabled] .locale-picker__card-description .locale-picker__card-description-text{color:var(--button-disabled)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner[disabled] .locale-picker__card-description .locale-picker__card-description-icon{color:var(--button-disabled)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected{background-color:var(--accent-0-dark);border:2px solid var(--accent-0-dark)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected .locale-picker__card-label .locale-picker__card-label-text{color:var(--white)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected .locale-picker__card-description .locale-picker__card-description-text{color:var(--white)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected[disabled]{color:var(--primary-disabled-text);background-color:var(--primary-disabled-background);border-color:var(--primary-disabled-background)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected[disabled] .locale-picker__card-label .locale-picker__card-label-text{color:var(--primary-disabled-text)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected[disabled] .locale-picker__card-description .locale-picker__card-description-text{color:var(--primary-disabled-text)}.locale-picker .locale-picker__card-outer .locale-picker__card-inner.selected[disabled] .locale-picker__card-description .locale-picker__card-description-icon{color:var(--primary-disabled-text)}.locale-picker__item{display:flex;align-items:center}.locale-picker__item .react-phone-number-input__icon{margin-right:5px;margin-top:-2px;line-height:1}.mdf .vdl-modal-content{min-height:auto !important}.mdf .vdl-mdf-modal-content{min-height:100%;position:relative;display:flex;flex-direction:column}@media screen and (max-width: 480px){.mdf .vdl-modal-dialog.md .vdl-modal-content{width:350px}}.mdf .mdf-action-menu__button{text-transform:none;font-size:var(--font-size-base);font-weight:700}.mdf .mdf-action-menu__button .fa-chevron-down{margin-left:5px}.mdf .mdf-action-menu.vdl-action-menu__button.vdl-button{width:auto;height:auto;padding:5px}.mdf .mdf-action-menu.vdl-action-menu__button.vdl-button:active,.mdf .mdf-action-menu.vdl-action-menu__button.vdl-button:focus,.mdf .mdf-action-menu.vdl-action-menu__button.vdl-button:hover:not([disabled]),.mdf .mdf-action-menu.vdl-action-menu__button.vdl-button.vdl-action-menu__button--open{border-radius:unset;box-shadow:inset 2px 2px #324fa5,inset -2px -2px #324fa5}.mdf .mdf-backdrop{position:fixed;right:0;bottom:0;left:0;top:0;display:flex;align-items:center;justify-content:center;background-color:rgba(0,0,0,.5);z-index:10000}.mdf-circle-icon{display:flex;align-items:center;justify-content:center;width:60px;height:60px;border-radius:60px;color:var(--accent-0-dark);background-color:var(--white);margin-left:auto;margin-right:auto;border:2px solid var(--accent-0-dark)}.mdf-circle-icon--xxs{font-size:var(--font-size-medium);width:20px;height:20px;border-radius:20px}.mdf-circle-icon--xs{font-size:var(--font-size-medium);width:30px;height:30px;border-radius:30px}.mdf-circle-icon--sm{font-size:21px;width:40px;height:40px;border-radius:40px}.mdf-circle-icon--md{font-size:32px;width:60px;height:60px;border-radius:60px}.mdf-circle-icon--lg{font-size:41px;width:80px;height:80px;border-radius:80px}.mdf .mdf-drag-item,.mdf .mdf-drag-item--selected{width:100%;cursor:pointer}.mdf .mdf-drag-item-borderStyle{border:1px solid var(--accent-1)}.mdf .mdf-drop-target{width:100%;height:100%}.mdf-drag-imageStyle{width:16em;height:3em;background-color:var(--accent-0-dark);color:var(--white);position:absolute;display:flex;align-items:center;text-align:center;justify-content:space-around;top:0;right:0;left:-17em;bottom:0}.mdf .dropTargetStyle:focus,.uploadButtonStyle:focus,#cancelUpload:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.progressBar .vdl-progress-bar__label{margin-top:5px}.mdf-infiniteList{max-height:400px;overflow-y:scroll}.mdf-inlineAlert{display:flex}.mdf-inlineAlert--banner{flex-direction:column}.mdf-inlineAlert .vdl-status-indicator__content{display:flex;align-items:center}.mdf-inlineAlert-dialog .popup-dialog-header{display:flex;align-items:center;white-space:nowrap;border-bottom:1px solid var(--neutral-mid);margin-bottom:16px}.mdf-inlineAlert-dialog .popup-dialog-header .popup-dialog-title{margin-right:15px}.mdf-filter-wrapper{padding:0 10px;display:flex}.mdf-filter-wrapper.mdf-filter-wrapper--tight{padding:0}.mdf-filter-wrapper.vertical--right{flex-direction:column;align-items:flex-start}.mdf-filter-wrapper.vertical--left{flex-direction:column;align-items:flex-end}.mdf-filter-wrapper.vertical--left .mdf-filtertags{flex-direction:row-reverse}.mdf-filter-wrapper.horizontal--right{align-items:flex-start}.mdf-filter-wrapper.horizontal--right .mdf-filtertags{margin-top:0;align-self:center}.mdf-filter-wrapper.horizontal--left{align-items:flex-start;flex-direction:row-reverse}.mdf-filter-wrapper.horizontal--left .mdf-filtertags{flex-direction:row-reverse;margin-top:0;align-self:center}.mdf-filter-wrapper.mdf-filter{display:flex;flex-direction:column;margin:0 15px 0 15px}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns{display:flex;margin-bottom:30px;flex-wrap:wrap}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns .mdf-filterColumn{display:flex;min-width:240px;flex-direction:column;padding:0 15px 0 15px}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns .mdf-filterTitle{border-bottom:1px solid var(--neutral-mid)}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns .mdf-filterItems{padding-top:10px}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns .mdf-filterItems .MDFSelectBox__control{max-width:250px}.mdf-filter-wrapper.mdf-filter .mdf-filterColumns .mdf-filterItems .mdf-filterColumn{padding:0}.mdf-filter-wrapper.mdf-filter .mdf-controlButtons{align-items:center;border-top:1px solid var(--neutral-mid);display:flex;flex-direction:row;gap:.5rem;justify-content:center;padding-top:1rem}.mdf-filter-wrapper .filterButton{margin:0}.mdf-filter-wrapper .mdf-filtertags{display:flex;margin-top:20px;flex-direction:row;flex-wrap:wrap;width:100%}.mdf-filter-wrapper .mdf-filtertags>*{margin-top:2px;margin-bottom:2px}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag{width:initial;border-radius:5px;font-size:var(--font-size-base);border:1px solid var(--neutral-darker);display:inline-flex;align-items:center;margin-left:10px;background-color:var(--white);padding:15px 10px 15px 10px;max-width:300px;height:30px;white-space:nowrap}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag .mdf-tagIcon{font-size:var(--font-size-base);margin-left:10px}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag span:not(.mdf-tagIcon){text-overflow:ellipsis;overflow:hidden}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag:hover,.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag:focus{border-color:var(--accent-0-dark);max-width:unset;cursor:pointer}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag:hover>span:not(.mdf-tagIcon),.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag:focus>span:not(.mdf-tagIcon){color:var(--accent-0-dark)}.mdf-filter-wrapper .mdf-filtertags .mdf-filter-tag:not(:last-child){margin-right:5px}.mdf-popup-dialog-2 .mdf-filter-wrapper{padding:0}.mdf-popup-dialog-2 .mdf-filter-wrapper.mdf-filter{margin:0}.mdf-popup-dialog-2 .mdf-filter-wrapper.mdf-filter .mdf-controlButtons{justify-content:flex-end;padding-top:0;border-top:none}.mdf .small-card.small-card--list-card,.mdf .small-card2.small-card--list-card{min-height:50px;margin-bottom:10px;display:flex;justify-content:center}.mdf .small-card.small-card--list-card-column,.mdf .small-card2.small-card--list-card-column{flex:1 1 0%}.mdf .small-card.small-card--list-card .small-card-middle .small-card-content,.mdf .small-card2.small-card--list-card .small-card-middle .small-card-content{display:flex;align-items:center;min-height:0;padding:5px 10px 10px 40px}.mdf .small-card.small-card--list-card .small-card-middle .small-card-content .small-card--list-card-column,.mdf .small-card2.small-card--list-card .small-card-middle .small-card-content .small-card--list-card-column{flex:1 1 0%}.mdf .mdf-list-header{display:flex;font-size:small;padding:5px 10px 10px 40px}.mdf .mdf-list-header-column{flex:1 1 0%}.mdf .mdf-list-header-column-name{font-weight:600;color:var(--neutral-darker);text-transform:var(--text-transform);font-size:var(--grid-header-font-size)}.mdf .mdf-list-header .fa{margin-left:10px;color:var(--accent-0)}.mdf .mdf-list-header .fa:hover{cursor:pointer}.mdf .mdf-masked-content{display:flex;align-items:center;min-width:170px;border:1px solid var(--neutral-mid);height:35px;background-color:var(--white);padding:5px}.mdf .mdf-masked-content span{flex-grow:1}.mdf .mdf-masked-content i{color:var(--link-color);cursor:pointer}.mdf .mdf-masked-content-readonly{display:flex;align-items:center;min-width:170px;height:35px;padding:5px}.mdf .mdf-masked-content-readonly span{flex-grow:1}.mdf .mdf-masked-content-readonly i{color:var(--link-color);cursor:pointer}.mdf .mdf-notes{position:fixed;right:80px;bottom:80px;display:flex;align-items:center;justify-content:center;width:60px;height:60px;background-color:var(--link-color);color:var(--white);padding:5px;border-radius:90px;cursor:pointer}.mdf .mdf-notes i{font-size:var(--font-size-large)}.mdf .mdf-notes-dialog{position:fixed;display:flex;flex-direction:column;right:80px;bottom:100px;width:300px;height:400px;border:1px solid var(--neutral-mid);background-color:var(--white)}.mdf .mdf-notes-dialog .mdf-notes-dialog-header{display:flex;flex-direction:row;padding:10px;border-bottom:1px solid var(--neutral)}.mdf .mdf-notes-dialog .mdf-notes-dialog-header div{flex-grow:1;font-weight:700;color:var(--link-color)}.mdf .mdf-notes-dialog .mdf-notes-dialog-header i{cursor:pointer}.mdf .mdf-notes-dialog .mdf-notes-dialog-body{display:flex;flex-direction:column;flex-grow:1;background-color:var(--neutral-light);padding:5px;overflow-y:auto}.mdf .mdf-notes-dialog .mdf-notes-dialog-body .mdf-notes-item{border-radius:4px;background-color:var(--white);padding:5px;margin:5px}.mdf .mdf-notes-dialog .mdf-notes-dialog-body .mdf-notes-item div{font-size:var(--font-size-small);padding-bottom:5px}.mdf .mdf-notes-dialog .mdf-notes-dialog-body .mdf-notes-item div span{padding-right:5px;font-weight:700}.mdf .mdf-notes-dialog .mdf-notes-dialog-footer{height:85px;display:flex;flex-direction:column;align-items:center;justify-content:center;border-top:1px solid var(--neutral);padding:5px}.mdf-popup-dialog-container.vdl-overlay-container{border-radius:5px;box-shadow:0 5px 15px 0 rgba(0,0,0,.3);padding:15px;border:0;margin:7px 10px;max-width:calc(100vw - 20px)}.mdf-popup-dialog-container.vdl-overlay-container.mdf-popup-dialog-2{margin:0;padding:1rem}.mdf-popup-dialog-container.vdl-overlay-container.vdl-popover .arrow{width:15px;height:15px;border-left:15px solid rgba(0,0,0,0);border-right:15px solid rgba(0,0,0,0)}.mdf-popup-dialog-container.vdl-overlay-container.vdl-popover[x-placement^=bottom] .arrow{top:-13px;border-bottom:15px solid var(--white)}.mdf-popup-dialog-container.vdl-overlay-container.vdl-popover[x-placement^=top] .arrow{bottom:-13px;border-top:15px solid var(--white)}.mdf-popup-dialog-container.vdl-overlay-container .popup-dialog-header{display:flex;align-items:center;justify-content:space-between}.mdf-popup-dialog-container.vdl-overlay-container .popup-dialog-header .popup-dialog-title{font-size:var(--font-size-h2);white-space:normal;margin:.5rem 0}.mdf-popup-dialog-container.vdl-overlay-container .popup-dialog-header .popup-dialog-close{font-size:var(--font-size-h2);line-height:var(--font-size-h2);margin-left:auto}.mdf-popup-dialog-container.vdl-overlay-container .popup-dialog-header .popup-dialog-close button{background:none;border:2px solid rgba(0,0,0,0);height:36px;width:36px;padding:0}.mdf-popup-dialog-container.vdl-overlay-container .popup-dialog-header .popup-dialog-close button:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-table{display:flex;align-items:center}.mdf .mdf-table table{width:100%;font-size:var(--grid-header-font-size)}.mdf .mdf-table table tr{height:40px}.mdf .mdf-table table tr th{border-top:1px solid var(--neutral);border-bottom:1px solid var(--neutral);border-left:none;border-right:none}.mdf .mdf-table table tr th:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-table table tr td{padding:5px;border-bottom:1px solid var(--neutral);border-left:none;border-right:none}.mdf .mdf-table table tr td:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-table table tbody tr:hover{background-color:var(--accent-0-light)}.mdf .mdf-table table thead tr{background-color:var(--neutral-lightest)}.mdf .mdf-table table thead tr th{text-transform:var(--text-transform);text-align:center;border-bottom:1px solid var(--neutral)}.mdf .mdf-table table thead tr th:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-table table tfoot tr:hover{background-color:var(--accent-0-light)}.mdf-wizard-component{display:flex;flex-direction:column;position:relative;padding-bottom:10px}.mdf-wizard-component--container{display:flex}.mdf-wizard-component--container--content{flex-direction:column;margin:0;flex-grow:1;overflow:auto}.mdf-wizard-component--navigation{background-color:var(--white);flex:0 0 280px;padding:30px 0;width:280px}.mdf-wizard-component--parent{display:flex;flex-direction:row;justify-content:space-between;cursor:pointer}.mdf-wizard-component--parent:focus:not(.disabled-status),.mdf-wizard-component--parent:hover:not(.disabled-status){box-shadow:inset 2px 2px #324fa5,inset -2px -2px #324fa5;background-color:var(--white);color:var(--link-color)}.mdf-wizard-component--parent .mdf-wizard-title{max-width:170px}.mdf-wizard-component--parent i{align-self:flex-end;padding:10px;color:var(--accent-0-dark)}.mdf-wizard-component--parent.disabled-status{color:var(--neutral-mid);cursor:not-allowed}.mdf-wizard-component--parent.disabled-status .mdf-wizard-status{border:2px solid var(--neutral-mid)}.mdf-wizard-component--parent.disabled-status>i{color:var(--neutral-mid);cursor:auto}.mdf-wizard-component--step{display:flex;flex-direction:row;align-items:center;cursor:pointer;padding:8px 15px}.mdf-wizard-component--step:focus:not(.disabled-status),.mdf-wizard-component--step:hover:not(.disabled-status){box-shadow:inset 2px 2px #324fa5,inset -2px -2px #324fa5;background-color:var(--white);color:var(--link-color)}.mdf-wizard-component--step .mdf-wizard-status{margin:0 20px 0 0}.mdf-wizard-component--step .current-status{border:2px solid var(--accent-0-dark)}.mdf-wizard-component--step.disabled-status{color:var(--neutral-dark);cursor:not-allowed}.mdf-wizard-component--step.disabled-status .mdf-wizard-status{border:2px solid var(--neutral-mid)}.mdf-wizard-component--step--child{padding-top:18px;padding-bottom:18px;padding-left:12px;border-left:2px dashed var(--neutral-light);margin-left:24px;margin-top:-12px;margin-bottom:-12px}.mdf-wizard-component--step--child .mdf-wizard-title{max-width:150px}.mdf-wizard-component--step--line{border-left:2px solid var(--neutral-light);height:30px;margin-left:24px;margin-top:-12px;margin-bottom:-12px}.mdf-wizard-component--step .mdf-wizard-title{margin:4px 0;width:210px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;text-transform:var(--text-transform)}.mdf-wizard-component--step--expand{display:block}.mdf-wizard-component--step--collapse{display:none}.mdf-wizard-component .active{font-weight:600;background-color:var(--accent-0-lighter)}.mdf-wizard-component--title{display:flex;margin:0 10px;border-bottom:1px solid var(--neutral-mid)}.mdf-wizard-component--footer{display:flex;justify-content:space-between}.mdf-wizard-component .mdf-wizard-component-save .vdl-popup__arrow{left:20px}.mdf-wizard-component .mdf-wizard-component-save .vdl-popup{width:120px}.mdf-wizard-component .mdf-snackbar{left:auto;right:0;margin:0 auto}#wfn_content .mdf-wizard-footer-container .mdf-snackbar{width:1200px;left:0}.mdf .newsFeedItem,.newsFeedItem{padding:5px;display:flex;align-items:center;padding-top:10px;padding-left:15px;padding-bottom:15px;margin-left:15px;border-left:1px solid var(--neutral)}.mdf .newsFeedItem--time,.newsFeedItem--time{color:var(--neutral-dark);font-size:var(--font-size-small);font-weight:600}.mdf .newsFeedItem--avatar,.newsFeedItem--avatar{margin-right:5px;margin-left:5px}.mdf .newsFeedItem--text,.newsFeedItem--text{font-size:var(--font-size-base);color:var(--link-color);cursor:pointer}.mdf .newsFeed,.newsfeed{padding:5px;height:auto;width:400px}.mdf .newsFeed--title,.newsfeed--title{font-size:24px;margin-bottom:5px}.mdf .newsFeed--headerWrapper,.newsfeed--headerWrapper{display:flex}.mdf .newsFeed--blockHeader,.newsfeed--blockHeader{color:var(--neutral-dark);font-size:var(--font-size-medium);font-weight:bold;line-height:30px;padding-left:10px}.mdf .newsFeed--subHeader,.newsfeed--subHeader{color:var(--neutral);font-size:var(--font-size-small);font-weight:600;padding-left:25px;border-left:1px solid var(--neutral);margin-left:15px}.mdf .newsFeed--header,.newsfeed--header{display:flex;padding:10px 0px 10px 10px;justify-content:space-between}.mdf .newsFeed--refresh,.newsfeed--refresh{display:flex;justify-content:center}.mdf .newsFeed--refresh-button,.newsfeed--refresh-button{position:absolute;z-index:1;margin-top:-15px;flex:0 1 auto;align-self:auto}.mdf .newsFeed--icon,.newsfeed--icon{position:relative;top:4px;left:8px;color:var(--white)}.mdf .newsFeed--icon-waypoint,.newsfeed--icon-waypoint{position:relative;top:4px;left:4px;color:var(--white)}.mdf .newsFeed--circle,.newsfeed--circle{border-radius:15px;border:1px solid var(--accent-5);width:30px;height:30px;background-color:var(--accent-5)}.mdf .newsFeed--circle svg,.newsfeed--circle svg{font-size:18px;left:6px}.mdf .newsFeed--statusCircle,.newsfeed--statusCircle{border:2px solid var(--neutral)}.mdf .newsFeed .fa-iconSize,.newsfeed .fa-iconSize{font-size:30px}.vdl-number-spinner__input{flex:1 1 auto}.mdf .vdl-pagination{user-select:none}.mdf .vdl-pagination .pagination__total-items-found-labels{border-right:1.5px solid var(--neutral-mid)}.mdf .vdl-pagination .vdl-dropdown-list__input-container{width:100px;margin:0}.mdf .vdl-pagination .pagination-input{width:75px;padding:0 10px;display:inline-block;font-weight:400;font-size:var(--font-size-base);box-shadow:none;border-radius:0;outline:0 none;appearance:none;background-color:var(--white);border:1px solid var(--neutral-mid);height:36px;box-sizing:border-box;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .vdl-pagination i{border:2px solid rgba(0,0,0,0)}.mdf .vdl-pagination i:focus{border:2px solid var(--neutral-darker)}.mdf .vdl-pagination i:not(.disabled){cursor:pointer}.mdf .vdl-pagination i:not(.disabled):hover{border:2px solid var(--neutral-darker)}.mdf-Phone{display:inline-block;margin-bottom:5px;vertical-align:top}.mdf-Phone .PhoneInput{display:flex}.mdf-Phone .PhoneInput ::placeholder{color:var(--neutral-dark);font-style:italic}.mdf-Phone .PhoneInput .PhoneInputCountrySelectArrow{display:block;content:"";width:.3em;height:.3em;margin-left:.35em;border-style:solid;border-color:inherit;border-top-width:0;border-bottom-width:1px;border-left-width:0;border-right-width:1px;transform:rotate(45deg);opacity:.45}.mdf-Phone .PhoneInput .PhoneInputCountryIcon{width:1.24em;height:.93em;box-sizing:content-box;border:1px solid rgba(0,0,0,.5);display:flex}.mdf-Phone.ext .vdl-textbox{width:76px}.mdf-Phone.dial{width:220px;margin-right:5px}.mdf-Phone-readOnly{display:flex;align-items:center}.mdf-Phone-icon{color:var(--neutral-dark);font-size:2em}.mdf-Phone-input{color:var(--accent-0-dark);font-size:1.45em;padding-left:10px;padding-bottom:5px}.mdf-Phone input.PhoneInputInput{display:inline-block;font-weight:400;font-size:var(--font-size-base);box-shadow:none;padding:6px 10px;background-color:var(--white);border:var(--input-border);border-radius:var(--input-border-radius);height:var(--form-input-height);width:100%;box-sizing:border-box;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf-Phone input[disabled].PhoneInputInput{border:var(--input-border-disabled);background-color:var(--neutral-disabled);color:var(--neutral-dark);cursor:not-allowed}.mdf-Phone.vdl-validation-error input.PhoneInputInput{border:var(--input-border-invalid);color:var(--color-status-error)}.mdf-Phone button.rrui__select__button{transition:border .1s;border:none;background-color:rgba(0,0,0,0);text-align:left;padding-left:2px}.mdf-Phone input:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,79,165,.6);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf-Phone .rrui__input-field:focus,.mdf-Phone .rrui__select__button:focus,.mdf-Phone .rrui__select__native:focus+.rrui__select__button,.mdf-Phone .rrui__select__native:focus{border:2px solid #324fa5;border-radius:var(--input-border-radius);outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(50,79,165,.6);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf-Phone .rrui__select{position:relative;user-select:none;left:-2px}.mdf-Phone .rrui__select .rrui__options-list ul{margin-bottom:0}.react-phone-number-input__icon{box-sizing:content-box !important;width:1.24em;height:.93em;border:1px solid rgba(0,0,0,.5);display:flex}.react-phone-number-input__icon-image{flex:0 0 100%;display:block;max-height:100%;max-width:100%}.progress-tracker-wrapper{display:flex;align-items:center;height:80px;background-color:var(--white)}.pt-title-container{height:60px;display:flex;align-items:center;padding:23px 50px;border-right:1px solid;border-color:var(--neutral-mid)}.pt-steps-wrapper{display:flex;height:100%;align-items:center}.pt-container{width:150px;height:50px;display:flex;flex-direction:column}.pt-step-container{display:flex;justify-content:center;position:relative;cursor:pointer}.pt-step-container.disabled{cursor:default}.pt-step-title{position:relative;bottom:-5px;text-align:center;margin:0 auto}.pt-step-navigation__step-indicator.accent-0{border:2px solid var(--accent-0);color:var(--accent-0)}.pt-step-navigation__step-indicator{border:2px solid var(--neutral-dark);height:30px;width:30px;background:#fff;border-radius:40px;font-size:18px;font-weight:400;color:var(--neutral-dark);line-height:25px;text-align:center}.pt-step-navigation__step-indicator:focus{box-shadow:#324fa5 0 0 0 2px inset}.pt-step-navigation__step-indicator.active{background-color:var(--accent-0-lighter);box-shadow:#324fa5 0 0 0 2px inset;border:2px solid var(--accent-0-darker);color:var(--accent-0-darker)}.pt-step-navigation__step-indicator.neutral{border-color:var(--neutral);box-shadow:none}.pt-step-navigation__step-line{border-top:2px solid;width:calc(50% - 15px);position:absolute;top:15px;z-index:0;transform:translate(0, -30%)}.pt-step-navigation__step-line.before{left:0}.pt-step-navigation__step-line.after{right:0}.pt-step-navigation__step-line-complete-container{position:absolute;margin-left:19px;width:10px;top:40px;bottom:0}.pt-step-navigation__step-line-complete.active-accent-5{border-left:2px solid var(--accent-5)}.mdf .fa.pt-step-arrow{font-weight:bold;position:absolute;right:-2px;top:6px;font-size:18px}.mdf-obfuscation{display:flex;align-items:center}.mdf-obfuscation .vdl-obfuscation__container{padding-right:20px}.mdf-overlay-popover.vdl-popover--success{border:solid 1px var(--accent-1-dark);background:var(--accent-1-lightest);fill:var(--accent-1)}.mdf-overlay-popover.vdl-popover--success .popover-content{font-size:var(--font-size-base)}.mdf-overlay-popover.vdl-popover--success.bottom .arrow{border-bottom-color:var(--accent-1-dark)}.mdf-overlay-popover.vdl-popover--success.bottom .arrow:after{border-bottom-color:var(--accent-1-lightest)}.mdf-overlay-popover.vdl-popover--success.top .arrow{border-top-color:var(--accent-1-dark)}.mdf-overlay-popover.vdl-popover--success.top .arrow:after{border-top-color:var(--accent-1-lightest)}.mdf-overlay-popover.vdl-popover--success.left .arrow{border-left-color:var(--accent-1-dark)}.mdf-overlay-popover.vdl-popover--success.left .arrow:after{border-left-color:var(--accent-1-lightest)}.mdf-overlay-popover.vdl-popover--success.right .arrow{border-right-color:var(--accent-1-dark)}.mdf-overlay-popover.vdl-popover--success.right .arrow:after{border-right-color:var(--accent-1-lightest)}.mdf-overlay-popover.vdl-popover--warning{border:solid 1px var(--accent-5);background:var(--accent-5-lightest);fill:var(--accent-5)}.mdf-overlay-popover.vdl-popover--warning .popover-content{font-size:var(--font-size-base)}.mdf-overlay-popover.vdl-popover--warning.bottom .arrow{border-bottom-color:var(--accent-5)}.mdf-overlay-popover.vdl-popover--warning.bottom .arrow:after{border-bottom-color:var(--accent-5-lightest)}.mdf-overlay-popover.vdl-popover--warning.top .arrow{border-top-color:var(--accent-5)}.mdf-overlay-popover.vdl-popover--warning.top .arrow:after{border-top-color:var(--accent-5-lightest)}.mdf-overlay-popover.vdl-popover--warning.left .arrow{border-left-color:var(--accent-5)}.mdf-overlay-popover.vdl-popover--warning.left .arrow:after{border-left-color:var(--accent-5-lightest)}.mdf-overlay-popover.vdl-popover--warning.right .arrow{border-right-color:var(--accent-5)}.mdf-overlay-popover.vdl-popover--warning.right .arrow:after{border-right-color:var(--accent-5-lightest)}.mdf-overlay-popover.vdl-popover--error{border:solid 1px var(--accent-6);background:var(--accent-6-lightest);fill:var(--accent-6)}.mdf-overlay-popover.vdl-popover--error .popover-content{font-size:var(--font-size-base)}.mdf-overlay-popover.vdl-popover--error.bottom .arrow{border-bottom-color:var(--accent-6)}.mdf-overlay-popover.vdl-popover--error.bottom .arrow:after{border-bottom-color:var(--accent-6-lightest)}.mdf-overlay-popover.vdl-popover--error.top .arrow{border-top-color:var(--accent-6)}.mdf-overlay-popover.vdl-popover--error.top .arrow:after{border-top-color:var(--accent-6-lightest)}.mdf-overlay-popover.vdl-popover--error.left .arrow{border-left-color:var(--accent-6)}.mdf-overlay-popover.vdl-popover--error.left .arrow:after{border-left-color:var(--accent-6-lightest)}.mdf-overlay-popover.vdl-popover--error.right .arrow{border-right-color:var(--accent-6)}.mdf-overlay-popover.vdl-popover--error.right .arrow:after{border-right-color:var(--accent-6-lightest)}.mdf-overlay-popover.vdl-popover--error .popover-title{color:var(--accent-6-dark)}.mdf-overlay-popover.vdl-popover--info{border:solid 1px var(--accent-0-dark);background:var(--accent-0-lightest);fill:var(--accent-0)}.mdf-overlay-popover.vdl-popover--info .popover-content{font-size:var(--font-size-base)}.mdf-overlay-popover.vdl-popover--info.bottom .arrow{border-bottom-color:var(--accent-0-dark)}.mdf-overlay-popover.vdl-popover--info.bottom .arrow:after{border-bottom-color:var(--accent-0-lightest)}.mdf-overlay-popover.vdl-popover--info.top .arrow{border-top-color:var(--accent-0-dark)}.mdf-overlay-popover.vdl-popover--info.top .arrow:after{border-top-color:var(--accent-0-lightest)}.mdf-overlay-popover.vdl-popover--info.left .arrow{border-left-color:var(--accent-0-dark)}.mdf-overlay-popover.vdl-popover--info.left .arrow:after{border-left-color:var(--accent-0-lightest)}.mdf-overlay-popover.vdl-popover--info.right .arrow{border-right-color:var(--accent-0-dark)}.mdf-overlay-popover.vdl-popover--info.right .arrow:after{border-right-color:var(--accent-0-lightest)}.mdf-overlay-popover.vdl-popover--default{border:solid 1px var(--neutral);background:var(--white);fill:var(--white)}.mdf-overlay-popover.vdl-popover--default .popover-content{font-size:var(--font-size-base)}.mdf-overlay-popover.vdl-popover--default.bottom .arrow{border-bottom-color:var(--neutral)}.mdf-overlay-popover.vdl-popover--default.bottom .arrow:after{border-bottom-color:var(--white)}.mdf-overlay-popover.vdl-popover--default.top .arrow{border-top-color:var(--neutral)}.mdf-overlay-popover.vdl-popover--default.top .arrow:after{border-top-color:var(--white)}.mdf-overlay-popover.vdl-popover--default.left .arrow{border-left-color:var(--neutral)}.mdf-overlay-popover.vdl-popover--default.left .arrow:after{border-left-color:var(--white)}.mdf-overlay-popover.vdl-popover--default.right .arrow{border-right-color:var(--neutral)}.mdf-overlay-popover.vdl-popover--default.right .arrow:after{border-right-color:var(--white)}.mdf-popover-maxWidth{max-width:276px}.mdf-simple-help:focus-visible{outline:0;box-shadow:0px 0px 0px 1px #fff,0px 0px 0px 3px #476bc3}.mdf-radioboxSet--horizontal{display:flex}.mdf-radioboxSet--horizontal .mdf-radioBox{margin-right:15px}.cell-resize{position:absolute;z-index:10;height:100%;cursor:col-resize}.revolution .mdf{font-weight:400;-webkit-font-smoothing:antialiased}.revolution .mdf h2,.revolution .mdf h3,.revolution .mdf h4,.revolution .mdf h5,.revolution .mdf h6{padding:0}.revolution .mdf .h2,.revolution .mdf .h3,.revolution .mdf .h4,.revolution .mdf .h5,.revolution .mdf .h6{padding:0;margin:0}.revolution .mdf h1,.revolution .mdf .h1{font-size:var(--font-size-h1);font-weight:600;line-height:var(--line-height-base);margin:15px 0;padding:0 0 5px}.revolution .mdf h2,.revolution .mdf .h2{font-size:var(--font-size-h2);font-weight:600;line-height:var(--line-height-base);margin:15px 0}.revolution .mdf h3,.revolution .mdf .h3{font-size:var(--font-size-large);font-weight:600;line-height:var(--line-height-base);margin:10px 0}.revolution .mdf h4,.revolution .mdf .h4{font-size:var(--font-size-medium);font-weight:600;line-height:var(--line-height-base);margin:10px 0}.revolution .mdf h5,.revolution .mdf .h5{font-size:var(--font-size-base);font-weight:600;line-height:var(--line-height-base);margin:10px 0}.revolution .mdf input[type=text],.revolution .mdf input[type=password]{font-family:var(--font-family-base);font-size:var(--font-size-base);padding:5px}.revolution .mdf label{display:block;border:0;font-size:var(--font-size-base);font-weight:400;color:var(--neutral-darker);margin-top:0;line-height:var(--line-height-base);margin-bottom:5px}.revolution .mdf label.vdl-checkbox{display:block;text-align:left;font-size:var(--font-size-base);line-height:18px;margin-top:0;margin-bottom:5px}.revolution .mdf .vdl-checkbox label,.revolution .mdf .vdl-radio label{color:var(--link-color);display:inline-block;line-height:22px}.revolution .mdf label.mdf-label-error{color:var(--accent-6)}.revolution .mdf label.vdl-left-nav__item__label{padding:5px 13px;display:block;border-radius:20px;border:0;box-sizing:border-box;color:var(--black);font-size:var(--font-size-base);font-weight:300;line-height:var(--line-height-base);margin:0;text-align:start;white-space:normal;vertical-align:baseline}.revolution .mdf .vdl-left-nav__item.vdl-left-nav__item--selected>label.vdl-left-nav__item__label{color:var(--white)}.revolution .mdf .mdf-leftNav .vdl-left-nav__item.vdl-left-nav__item--selected>label.vdl-left-nav__item__label{color:var(--accent-0-darker)}.revolution .mdf .mdf-leftNav label.vdl-left-nav__item__label{margin-bottom:5px}.revolution .mdf .vdl-left-nav--tree .vdl-left-nav__item__label{padding-left:25px}.revolution .mdf .mdf-validated-field>label{margin-top:0;font-size:var(--font-size-base);line-height:var(--line-height-base)}.revolution .mdf .vdl-accordion-panel__title>a{text-decoration:none !important}.revolution .mdf .vdl-date-time-picker>input[type=text]{padding:10px}.revolution .mdf label.vdl-radio{display:flex;text-align:left;font-size:var(--font-size-base);line-height:var(--line-height-base);margin-top:0;margin-bottom:5px}.revolution .mdf label.vdl-toggle-switch{margin-top:0;font-size:var(--font-size-base);color:var(--black)}.revolution .mdf textarea.vdl-textarea{border:var(--input-border);padding:10px;width:100%;margin-bottom:5px}.revolution .mdf .wfnx-alternateFieldStyle textarea.vdl-textarea{border:1px solid var(--accent-0)}.revolution .mdf .rrui__input select{position:absolute}.revolution .revitAppContainer{z-index:1 !important}.revolution .revitFooter{position:relative;z-index:0 !important}.revolution .revitFooter .revitFooterContainer{z-index:0 !important}.revolution .revitPortlet .dijitTitlePaneContentOuter,.revolution .revitPortlet.mdf .dijitTitlePaneContentOuter{position:static !important}.dijitReset .mdf{line-height:var(--line-height-base)}.mdf .dijitReset{line-height:var(--line-height-base)}.revolution .fr-popup label{margin-top:0}.mdf-searchbox-container{position:relative;display:flex;align-items:stretch}.mdf-searchbox-container .fa-search{display:flex}.mdf-searchbox-container>input[data-id]{padding-right:40px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdf-searchbox-input{margin-bottom:0}.mdf-searchbox-input input{border-width:0;background-color:var(--neutral-lightest)}.mdf-searchbox-input input::placeholder{font-style:normal}.mdf-searchbox-close{padding:4px;position:absolute;right:.95em;font-size:1.8em;color:gray !important;line-height:var(--line-height-computed);width:28px;text-align:center}.mdf-searchbox-close-icon:before{content:"×"}.mdf-searchbox-close--disabled{color:var(--neutral-dark);cursor:not-allowed;pointer-events:none}.mdf-searchbox-searchicon{color:var(--accent-0-dark);font-size:1.25em;position:absolute;display:flex;align-items:center;justify-content:center;right:0;height:var(--form-input-height);width:28px;border:2px solid rgba(0,0,0,0);cursor:pointer}.mdf-searchbox-searchicon:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf-searchbox-searchicon--disabled{color:var(--neutral-dark);cursor:not-allowed;pointer-events:none}.mdf-infinitesearch-list div{margin-left:0}.mdf-infinitesearch-container{display:flex;flex-flow:column;height:100%}.mdf-infinitesearch-list{flex:1}.mdf-status--info{color:var(--accent-0-lightest);background-color:var(--accent-0-dark);border:1px solid var(--accent-0-dark)}.mdf-status--warning{color:var(--accent-5-lightest);background-color:var(--accent-5-dark);border:1px solid var(--accent-5-dark)}.mdf-status--error{color:var(--accent-6-lightest);background-color:var(--accent-6);border:1px solid var(--accent-6)}.mdf-status--success{color:var(--accent-1-lightest);background-color:var(--accent-1-dark);border:1px solid var(--accent-1-dark)}.mdf-status--delegate{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf-status--default{color:var(--white);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .mdf-card-atom{background-color:rgba(0,0,0,0);border-radius:5px;box-shadow:none;display:flex;flex-direction:column;margin:0}.mdf .mdf-card-atom.mdf-card--blank{border:0}.mdf .mdf-card-atom.mdf-card--dash{border:2px dashed var(--neutral-mid)}.mdf .mdf-card-atom.mdf-card--flat{border:1px solid var(--neutral-mid)}.mdf .mdf-card-atom.mdf-card--shadow{box-shadow:0 5px 15px 0 rgba(0,0,0,.3);border:1px solid var(--neutral-mid)}.mdf .mdf-card-atom.inline{display:inline-block}.mdf .small-card{border-radius:5px;background-color:var(--white);margin:0;display:flex;min-height:130px;flex-direction:column;box-shadow:none}.mdf .small-card.mdf-applyBorderLine>div:nth-child(3).mdf-cardLineBorder,.mdf .small-card.mdf-applyBorderLine>div:nth-child(2).mdf-cardLineBorder{border-top:1px solid var(--neutral-mid)}.mdf .small-card--shadow{box-shadow:0 5px 15px 0 rgba(0,0,0,.3);border:1px solid var(--neutral-mid)}.mdf .small-card--flat{border:1px solid var(--neutral-mid)}.mdf .small-card--dash{border:2px dashed var(--neutral-mid);background-color:rgba(0,0,0,0)}.mdf .small-card--blank{border:0}.mdf .small-card .small-card-top{position:relative;color:var(--black);display:flex;align-items:center;margin:15px 15px 0 15px}.mdf .small-card .small-card-top--columnLayout .small-card-title--icon{margin:0 10px 0 0;color:var(--accent-0)}.mdf .small-card .small-card-top .subTitleStyle{display:flex}.mdf .small-card .small-card-top .small-card-subTitle{display:flex;color:var(--neutral-dark);font-size:var(--font-size-base);font-weight:400}.mdf .small-card .small-card-top--left{justify-content:left}.mdf .small-card .small-card-top--center{justify-content:center}.mdf .small-card .small-card-top .small-card-title{display:flex;flex:1 0 auto;width:calc(100% - 50px);align-items:center;line-height:24px}.mdf .small-card .small-card-top .small-card-title .header{width:calc(100% - 25px)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--alignItem{align-items:initial}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--selectable{color:var(--link-color)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--titleSubTitle{flex-direction:column;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--titleSubTitle--wrapTitle{white-space:normal}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--small{font-size:var(--font-size-base)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--medium{font-size:var(--font-size-medium)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--large{font-size:var(--font-size-larger)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--semibold{font-weight:600}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--light{font-weight:300}.mdf .small-card .small-card-top .small-card-action{cursor:pointer}.mdf .small-card .small-card-top .small-card-action.actionIcon{color:var(--link-color);font-size:14px}.mdf .small-card .small-card-top .small-card-action .vdl-button--link,.mdf .small-card .small-card-top .small-card-action .vdl-button{margin:0;padding:0}.mdf .small-card .small-card-top--selectable .small-card-action{cursor:pointer}.mdf .small-card .small-card-top--selectable .small-card-title .header{width:100%}.mdf .small-card .small-card-top--selectable .small-card-title .header h2{font-weight:400}.mdf .small-card .small-card-top--selectable .mdf-actionInfo{order:-1}.mdf .small-card .small-card-top--selectable.mdf-cardTop-flexDirection{flex-direction:row-reverse}.mdf .small-card .small-card-top--selectable .small-card-title{margin-left:0}.mdf .small-card .small-card-middle.small-card-mobile{flex:1 1 0%}.mdf .small-card .small-card-middle{display:flex;flex-direction:column;position:relative;height:100%}.mdf .small-card .small-card-middle.mdf-cardLineBorder{margin-top:5px}.mdf .small-card .small-card-middle--low{flex-direction:column-reverse}.mdf .small-card .small-card-middle--icon{border:2px solid var(--black);background:var(--white);color:var(--black)}.mdf .small-card .small-card-middle--status{border:2px solid var(--white)}.mdf .small-card .small-card-middle--status--notStarted{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card .small-card-middle--status--inProgress,.mdf .small-card .small-card-middle--status--info{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .small-card .small-card-middle--status--inReview,.mdf .small-card .small-card-middle--status--submitted{color:var(--accent-0);background-color:var(--white);border:1px solid var(--accent-0)}.mdf .small-card .small-card-middle--status--approved,.mdf .small-card .small-card-middle--status--accepted,.mdf .small-card .small-card-middle--status--completed,.mdf .small-card .small-card-middle--status--success{color:var(--accent-1-dark);background-color:var(--white);border:1px solid var(--accent-1-dark)}.mdf .small-card .small-card-middle--status--inComplete,.mdf .small-card .small-card-middle--status--warning{color:var(--accent-5);background-color:var(--white);border:1px solid var(--accent-5)}.mdf .small-card .small-card-middle--status--archived{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card .small-card-middle--status--error{color:var(--accent-6);background-color:var(--white);border:1px solid var(--accent-6)}.mdf .small-card .small-card-middle .small-card-circle{z-index:1;right:0;left:0}.mdf .small-card .small-card-middle .small-card-circle .mdf-avatar{display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.mdf .small-card .small-card-middle .small-card-circle .mdf-avatar .vdl-avatar__initials{-ms-flex:1 0 auto}.mdf .small-card .small-card-middle .small-card-circle .vdl-avatar--md{width:60px;height:60px}.mdf .small-card .small-card-middle .small-card-content{position:relative;width:100%;height:100%;min-height:40px;padding-left:5px}.mdf .small-card .small-card-middle .small-card-content.mdf-cardBackground{margin:0}.mdf .small-card .small-card-bottom{height:50px;min-height:50px;overflow:hidden;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mdf .small-card .small-card-bottom.mdf-cardBackground{margin:0}.mdf .small-card label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label){font-size:var(--font-size-small);color:var(--neutral-darker);margin-bottom:0}.mdf .small-card label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error{color:var(--accent-6)}.mdf .small-card .no-margin{margin:0}.mdf .small-card2.mdf-applyBorderLine>div:nth-child(3).mdf-cardLineBorder,.mdf .small-card2.mdf-applyBorderLine>div:nth-child(2).mdf-cardLineBorder{border-top:1px solid var(--neutral-mid)}.mdf .small-card2 .small-card-top{position:relative;color:var(--black);display:flex;align-items:center;margin:1rem 1rem 0 1rem}.mdf .small-card2 .small-card-top--columnLayout .small-card-title--icon{margin:0 8px 0 0;color:var(--accent-0)}.mdf .small-card2 .small-card-top .subTitleStyle{display:flex}.mdf .small-card2 .small-card-top .small-card-subTitle{display:flex;color:var(--neutral-dark);font-size:var(--font-size-base);font-weight:400}.mdf .small-card2 .small-card-top--left{justify-content:left}.mdf .small-card2 .small-card-top--center{justify-content:center}.mdf .small-card2 .small-card-top .small-card-title{display:flex;flex:1 0 auto;width:calc(100% - 50px);align-items:center;line-height:24px}.mdf .small-card2 .small-card-top .small-card-title .header{width:calc(100% - 25px)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--alignItem{align-items:initial}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--selectable{color:var(--link-color)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--titleSubTitle{flex-direction:column;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--titleSubTitle--wrapTitle{white-space:normal}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--small{font-size:var(--font-size-base)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--medium{font-size:var(--font-size-medium)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--large{font-size:var(--font-size-larger)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--semibold{font-weight:600}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--light{font-weight:300}.mdf .small-card2 .small-card-top .small-card-action{cursor:pointer}.mdf .small-card2 .small-card-top .small-card-action.actionIcon{color:var(--link-color);font-size:14px}.mdf .small-card2 .small-card-top .small-card-action .vdl-button--link,.mdf .small-card2 .small-card-top .small-card-action .vdl-button{margin:0;padding:0}.mdf .small-card2 .small-card-top--selectable .small-card-action{cursor:pointer}.mdf .small-card2 .small-card-top--selectable .small-card-title .header{width:100%}.mdf .small-card2 .small-card-top--selectable .small-card-title .header h2{font-weight:400}.mdf .small-card2 .small-card-top--selectable .mdf-actionInfo{order:-1}.mdf .small-card2 .small-card-top--selectable.mdf-cardTop-flexDirection{flex-direction:row-reverse}.mdf .small-card2 .small-card-top--selectable .small-card-title{margin-left:0}.mdf .small-card2 .small-card-middle.small-card-mobile{flex:1 1 0%}.mdf .small-card2 .small-card-middle{display:flex;flex-direction:column;position:relative;height:100%}.mdf .small-card2 .small-card-middle.mdf-cardLineBorder{margin-top:5px}.mdf .small-card2 .small-card-middle--low{flex-direction:column-reverse}.mdf .small-card2 .small-card-middle--icon{border:2px solid var(--black);background:var(--white);color:var(--black)}.mdf .small-card2 .small-card-middle--status{border:2px solid var(--white)}.mdf .small-card2 .small-card-middle--status--notStarted{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card2 .small-card-middle--status--inProgress,.mdf .small-card2 .small-card-middle--status--info{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .small-card2 .small-card-middle--status--inReview,.mdf .small-card2 .small-card-middle--status--submitted{color:var(--accent-0);background-color:var(--white);border:1px solid var(--accent-0)}.mdf .small-card2 .small-card-middle--status--approved,.mdf .small-card2 .small-card-middle--status--accepted,.mdf .small-card2 .small-card-middle--status--completed,.mdf .small-card2 .small-card-middle--status--success{color:var(--accent-1-dark);background-color:var(--white);border:1px solid var(--accent-1-dark)}.mdf .small-card2 .small-card-middle--status--inComplete,.mdf .small-card2 .small-card-middle--status--warning{color:var(--accent-5-darker);background-color:var(--white);border:1px solid var(--accent-5-darker)}.mdf .small-card2 .small-card-middle--status--archived{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card2 .small-card-middle--status--error{color:var(--accent-6);background-color:var(--white);border:1px solid var(--accent-6)}.mdf .small-card2 .small-card-middle .small-card-circle{z-index:1;right:0;left:0}.mdf .small-card2 .small-card-middle .small-card-circle .mdf-avatar{display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.mdf .small-card2 .small-card-middle .small-card-circle .mdf-avatar .vdl-avatar__initials{-ms-flex:1 0 auto}.mdf .small-card2 .small-card-middle .small-card-circle .vdl-avatar--md{width:60px;height:60px}.mdf .small-card2 .small-card-middle .small-card-content{position:relative;width:100%;height:100%;min-height:40px;padding-left:.5rem}.mdf .small-card2 .small-card-middle .small-card-content.mdf-cardBackground{margin:0}.mdf .small-card2 .small-card-bottom{height:50px;min-height:50px;overflow:hidden;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mdf .small-card2 .small-card-bottom.mdf-cardBackground{margin:0}.mdf .small-card2 label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card2 .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card2 .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label){font-size:var(--font-size-small);color:var(--neutral-darker);margin-bottom:0}.mdf .small-card2 label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card2 .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card2 .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error{color:var(--accent-6)}.mdf .small-card2 .no-margin{margin:0}.mdf .gutterWidth-0{padding:0}.mdf .gutterWidth-5{padding:5px}.mdf .gutterWidth-10{padding:10px}.mdf .gutterWidth-15{padding:15px}.mdf .gutterWidth-20{padding:20px}.mdf .mdf-section-style{display:flex;flex-direction:column}.mdf .mdf-section-style .mdf-section-header-panel{display:flex;justify-content:space-between;align-items:center;flex:1 0 auto}.mdf .mdf-section-style .mdf-section-header-panel.mdf-cardLineBorder{border-bottom:1px solid var(--neutral-mid)}.mdf .mdf-section-style .mdf-section-content,.mdf .mdf-section-style .mdf-section-header{display:flex;width:100%}.mdf .mdf-section-style .section-collapsible-style{margin-right:10px}.mdf .mdf-section-style .section-collapsible-style:hover,.mdf .mdf-section-style .section-collapsible-style:focus{outline:2px solid #324fa5;background-color:var(--white);color:var(--link-color)}.mdf-segmented-wizard-header{display:flex;justify-content:space-between;margin-bottom:10px}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item{flex:1;font-size:var(--font-size-small);line-height:1;padding:5px;border:1px solid rgba(0,0,0,0);text-align:center;text-transform:var(--text-transform)}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item .mdf-segmented-wizard-header-item-bar{background-color:var(--neutral);height:10px;margin-bottom:10px;width:100%}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item.mdf-segmented-wizard-header-item-bar-click{cursor:pointer}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item.mdf-segmented-wizard-header-item-bar-disabled{cursor:not-allowed}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item .mdf-segmented-wizard-header-item-text{color:var(--neutral-dark)}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item.mdf-segmented-wizard-header-visited-item .mdf-segmented-wizard-header-item-bar{background-color:var(--accent-0-dark)}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item.mdf-segmented-wizard-header-visited-item .mdf-segmented-wizard-header-item-text{color:var(--clickable-label-color)}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item-active,.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item:hover,.mdf-segmented-wizard-header .mdf-segmented-wizard-header-item:active{border:1px solid #324fa5;outline:none;box-shadow:inset 0 0 0 2px #324fa5,0 0 8px #324fa5}.mdf-segmented-wizard-header .mdf-segmented-wizard-header-current-item{font-size:var(--font-size-medium);font-weight:600}.vdl-segment-filler__container{display:grid;grid-gap:.25rem;grid-auto-flow:column;grid-template-rows:.5rem;background-color:rgba(0,0,0,0)}.vdl-segment-filler__container .vdl-segment-filler__filled{border-radius:.5rem;border:1px solid var(--primary);background-color:var(--primary)}.vdl-segment-filler__container .vdl-segment-filler__empty{border-radius:.5rem;border:1px solid var(--neutral-darker);background-color:rgba(0,0,0,0)}.Select--multi .Select-input input{margin:0;padding-left:0}.mdf .MDFSelectBox__control,.MDFSelectBox__control{border:var(--input-border);border-radius:var(--input-border-radius) !important;min-height:var(--form-input-height) !important;margin-bottom:5px}.mdf .MDFSelectBox__control--is-focused,.MDFSelectBox__control--is-focused{border:2px solid #324fa5;outline:0;box-shadow:var(--dropdown-list-focus-box-shadow);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .MDFSelectBox__control--is-disabled,.MDFSelectBox__control--is-disabled{border:var(--input-border-disabled);background-color:var(--dropdown-list-disabled-background);pointer-events:auto;cursor:not-allowed}.mdf .MDFSelectBox__control--is-disabled .MDFSelectBox__dropdown-indicator,.MDFSelectBox__control--is-disabled .MDFSelectBox__dropdown-indicator{color:var(--dropdown-list-disabled-color)}.mdf .MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value,.MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value{pointer-events:none;background-color:var(--neutral)}.mdf .MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value__label,.mdf .MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value__remove,.MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value__label,.MDFSelectBox__control--is-disabled .MDFSelectBox__multi-value__remove{color:var(--neutral-dark)}.mdf .MDFSelectBox__placeholder,.MDFSelectBox__placeholder{color:var(--neutral-dark)}.mdf .MDFSelectBox__clear-indicator,.MDFSelectBox__clear-indicator{padding-right:0}.mdf .MDFSelectBox__clear-indicator>svg,.MDFSelectBox__clear-indicator>svg{width:16px}.mdf .MDFSelectBox__indicator-separator,.MDFSelectBox__indicator-separator{display:none}.mdf .MDFSelectBox__dropdown-indicator,.MDFSelectBox__dropdown-indicator{color:var(--link-color);padding:7px 8px}.mdf .MDFSelectBox__menu,.MDFSelectBox__menu{border-radius:0 !important;margin-top:0 !important;width:auto !important;min-width:100%;z-index:1050 !important}.mdf .MDFSelectBox__menu-list,.MDFSelectBox__menu-list{min-width:100%;padding-top:0;padding-bottom:0}.mdf .MDFSelectBox__option:empty,.MDFSelectBox__option:empty{height:35px}.mdf .MDFSelectBox:hover,.MDFSelectBox:hover{border-color:var(--dropdown-list-hover)}.mdf .vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__menu-list,.MDFSelectBox__menu .MDFSelectBox__menu-list,.vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__menu-list{display:inline-block;padding-top:0;padding-bottom:0}.mdf .vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option,.MDFSelectBox__menu .MDFSelectBox__option,.vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option{white-space:nowrap;border:2px solid rgba(0,0,0,0)}.mdf .vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option--is-focused,.MDFSelectBox__menu .MDFSelectBox__option--is-focused,.vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option--is-focused{border:2px solid var(--list-option-focus-border);background-color:var(--sdf-context-menu-item-style-base-fill-color, transparent)}.mdf .vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option--is-selected,.MDFSelectBox__menu .MDFSelectBox__option--is-selected,.vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option--is-selected{border-color:var(--list-option-focus-border);background-color:var(--sdf-context-menu-item-style-active-fill-color, #e8effa);color:var(--list-option-color)}.mdf .vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option:hover,.MDFSelectBox__menu .MDFSelectBox__option:hover,.vdl-dropdown-list-nowrap .MDFSelectBox__menu .MDFSelectBox__option:hover{background-color:var(--list-option-hover-background)}.mdf-separator-horizontal-sm{display:flex;width:100%;height:28px;padding:2px}.mdf-separator-horizontal-sm div{flex-grow:1;height:13px;border-bottom:1px solid var(--neutral)}.mdf-separator-horizontal-sm div:nth-child(2){display:flex;align-items:center;justify-content:center;align-self:center;flex-grow:0;text-transform:var(--text-transform);width:30px;height:30px;border:1px solid var(--neutral);border-radius:25px;color:var(--neutral-dark);background-color:var(--neutral-light);font-size:var(--font-size-xsmall);font-weight:600}.mdf-separator-horizontal-lg{display:flex;width:100%;height:50px;margin:10px 0 0 0;padding:2px}.mdf-separator-horizontal-lg div{flex-grow:1;height:25px;border-bottom:2px solid var(--neutral)}.mdf-separator-horizontal-lg div:nth-child(2){display:flex;align-items:center;justify-content:center;align-self:center;flex-grow:0;text-transform:var(--text-transform);width:60px;height:60px;border:2px solid var(--neutral);border-radius:60px;color:var(--neutral-dark);background-color:var(--neutral-light);font-size:var(--font-size-larger);font-weight:700}.mdf-separator-vertical-sm{display:flex;flex-direction:column;width:100%;min-height:100px;padding:2px}.mdf-separator-vertical-sm div{width:50%;border-right:1px solid var(--neutral);flex-grow:1}.mdf-separator-vertical-sm div:nth-child(2){display:flex;justify-content:center;align-items:center;align-self:center;flex-grow:0;text-transform:var(--text-transform);width:30px;height:30px;border:1px solid var(--neutral);border-radius:25px;color:var(--neutral-dark);background-color:var(--neutral-light);font-size:var(--font-size-xsmall);font-weight:600}.mdf-separator-vertical-lg{display:flex;flex-direction:column;width:100%;min-height:120px;margin:10px 0 0 0;padding:2px}.mdf-separator-vertical-lg div{width:50%;border-right:2px solid var(--neutral);flex-grow:1}.mdf-separator-vertical-lg div:nth-child(2){display:flex;justify-content:center;align-items:center;flex-grow:0;align-self:center;text-transform:var(--text-transform);width:60px;height:60px;border:2px solid var(--neutral);border-radius:60px;color:var(--neutral-dark);background-color:var(--neutral-light);font-size:var(--font-size-larger);font-weight:700}.portal-open{position:absolute}.portal-open .portal-backdrop-enter{z-index:1040;opacity:0}.portal-open .portal-backdrop-enter-active{z-index:1040;opacity:1;transition:opacity 300ms}.portal-open .portal-backdrop-exit{opacity:1}.portal-open .portal-backdrop-exit-active{opacity:0;transition:opacity 300ms}.portal-open .portal-backdrop-exit-done{z-index:1040;opacity:0}.portal-open .slide-enter{transform:translateX(100%);z-index:1050;height:100%;top:0}.portal-open .none-ani-enter{transform:translateX(100%);z-index:1050;height:100%;top:0}.portal-open .slide-enter.slide-enter-active{pointer-events:none;z-index:1050;opacity:1;transform:translateX(0);transition:transform 1000ms;height:100%;top:0;right:0;position:fixed;width:100%}.portal-open .slide-inner-enter.slide-enter-active{pointer-events:none;z-index:1051 !important;opacity:1;transform:translateX(0);transition:transform 1000ms;height:100%;top:0;right:0;position:fixed;width:100%}.portal-open .none-ani-enter.none-ani-enter-active{z-index:1050;opacity:1;transform:translateX(100%);height:100%;top:0;right:0;position:fixed;width:100%}.portal-open .slide-enter-done{z-index:1050;position:absolute;top:0;right:0}.portal-open .none-ani-enter-done{z-index:1050;position:absolute;top:0;right:0}.portal-open .slide-exit{transform:translateX(0)}.portal-open .slide-exit.slide-exit-active{pointer-events:none;z-index:1050;opacity:1;transform:translateX(100%);transition:transform 1000ms;height:100%;position:fixed;top:0;right:0}.portal-open .side-panel{display:flex;flex-direction:column;height:100%;margin-left:auto}@media screen and (max-width: 1024px){.portal-open .side-panel{width:100% !important}}.portal-open .side-panel.auto{min-width:30%}.portal-open .side-panel.sm{width:25%}.portal-open .side-panel.md{width:50%}.portal-open .side-panel.lg{width:75%}.portal-open .side-panel.xl{width:100%}.portal-open .side-panel.inner-side-panel-padding{position:relative;padding-right:15px;right:-15px}@media screen and (max-width: 480px){.portal-open .side-panel{width:100% !important}}.portal-open .side-panel-leading{flex:1;margin:10px 0}.portal-open .side-panel-content{position:fixed;height:100%;width:100%}.portal-open .side-panel-content.slide-inner{z-index:1051}.portal-open .side-panel-content .portal-cover{display:flex;width:100%;position:fixed;height:100%}.portal-open .side-panel-content .side-panel-busy-indicator{position:fixed;height:100%;align-self:center;left:unset;right:unset}.portal-open .side-panel-title{min-width:0;display:flex;overflow:hidden;padding:5px}.portal-open .side-panel-title h2{margin:0;font-weight:600;color:var(--black);white-space:nowrap;text-overflow:ellipsis}@media screen and (max-width: 650px){.portal-open .side-panel-title h2{font-size:var(--font-size-medium);font-weight:600;color:var(--black);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.portal-open .side-panel-header{display:flex;flex:0 0 auto;background-color:var(--slide-in-title-bg);justify-content:center;align-items:center;padding:0 5px 0 5px}.portal-open .side-panel-header::after{content:"";flex:1}.portal-open .side-panel-header .vdl-button{margin:0 15px 0 15px}.portal-open .side-panel-body{flex:1 1 auto;position:relative;overflow-y:auto;background-color:var(--modal-content-bg);padding:0 20px}.portal-open .side-panel-body .mdf-side-panel-label-error{padding:10px 0;color:var(--accent-6)}.portal-open .side-panel-body+.mdf-wizard-footer-container{flex:0 0 auto;width:100%;background-color:var(--white)}.portal-open .side-panel-body+.mdf-wizard-footer-container .mdf-snackbar{position:relative}.portal-open .side-panel-header-title{display:inline-flex;min-width:0}.portal-open .side-panel-help-icon{align-self:center}.portal-open .side-panel-footer{flex:0 0 auto;background-color:var(--white);display:flex;justify-content:center}.portal-open .side-panel-footer .mdf-snackbar{position:relative}.portal-open .portal-background{background:rgba(0,0,0,.5);position:fixed;top:0;left:0;width:100%;height:100%;z-index:1040}.portal-open .portal-background.inner-side-panel-backdrop{z-index:1050}.vdl-framework-template__sidebar{background-color:rgba(0,0,0,0);position:absolute;height:100%;overflow:hidden}.vdl-framework-template__sidebar .vdl-sidebar{margin-left:0;transition:all .15s ease-in}.vdl-framework-template__sidebar .vdl-sidebar .vdl-sidebar-item__container:focus .vdl-sidebar-item__active-indicator{color:var(--accent-0-darker)}.vdl-framework-template__sidebar .vdl-sidebar .vdl-sidebar-item__container:focus:hover .vdl-sidebar-item__active-indicator{color:var(--white)}@media(max-width: 768px){.vdl-framework-template__sidebar{position:absolute;margin:0;overflow:visible}.vdl-framework-template__sidebar .vdl-sidebar{display:none}.vdl-framework-template--menu-open .vdl-framework-template__container .vdl-framework-template__sidebar .vdl-sidebar{display:inherit}.vdl-framework-template--menu-open .vdl-framework-template__container .vdl-framework-template__page-container{margin-left:275px}}@media(max-width: 480px){.vdl-framework-template__sidebar{overflow-x:hidden}}@media(min-width: 768px){.vdl-framework-template__sidebar{width:85px}}.left-nav-framework__container{overflow:hidden;background:var(--sidebar-content-bg);position:relative;padding-right:0;padding-left:0;min-width:300px;min-height:100%}.left-nav-framework__content{display:flex;flex-direction:column;flex:1}.left-nav-framework__page-container{transition:all .15s ease-in;width:100%;min-height:100vh}.left-nav-framework__top-bar{background-color:var(--white);width:100%;height:71px;position:relative;z-index:1;display:flex;align-items:center}.left-nav-framework__title{display:flex;align-items:center;margin:0 auto 0 15px;padding:0}.left-nav-framework__title .hamburger-icon{display:none}.left-nav-framework__search .vdl-textbox{margin:0}.left-nav-framework__page{display:flex;min-height:100vh;flex-direction:column}.left-nav-framework--menu-open .vdl-sidebar{display:inherit}.left-nav-framework--menu-open .left-nav-framework__page-container{margin-left:275px}.mdf .hamburger-icon,.hamburger-icon{position:relative}.mdf .hamburger-icon .vdl-alert-number-indicator,.hamburger-icon .vdl-alert-number-indicator{bottom:initial;top:0;line-height:initial}@media(max-width: 768px){.left-nav-framework__title .hamburger-icon{display:block}}@media(min-width: 768px){.left-nav-framework__page-container{margin-left:85px;width:calc(100% - 85px)}}@media(max-width: 768px)and (min-width: 768px){.left-nav-framework__page-container{margin-left:0}.left-nav-framework--menu-open .left-nav-framework__page-container{margin-left:85px}}@media screen and (max-width: 768px){.mdf .vdl-slide-in-title{font-size:var(--font-size-medium)}}@media screen and (max-width: 480px){.mdf .vdl-slide-in-title{margin:0;font-size:var(--font-size-large)}}.mdf .slidein-help-focus{font-size:var(--font-size-h2)}.mdf .vdl-modal-open,.mdf.vdl-modal-open{--sdf-focus-pane-z-index: 1050;overflow-y:scroll;position:relative}.mdf .vdl-modal-open.mdf-mobile-modal-fix .vdl-slide-in,.mdf.vdl-modal-open.mdf-mobile-modal-fix .vdl-slide-in{position:absolute}.one-ux .vdl-modal-open,.one-ux.vdl-modal-open{--sdf-focus-pane-z-index: 1050}.mdf .vdl-slide-in-content{overflow-y:hidden;height:100%;min-height:100%;width:100vw;top:0;-webkit-overflow-scrolling:touch}@media screen and (min-width: 480px){.mdf .vdl-slide-in-content{width:100% !important}}.mdf .vdl-slide-in-content .vdl-modal-open-free-focus{height:inherit;width:inherit}.mdf .vdl-slide-in-content>.mdf-snackbar{position:relative;width:100%;margin-bottom:0}.mdf .vdl-slide-in-content .mdf-wizard-footer-container{width:100%}.mdf .vdl-slide-in-content .mdf-wizard-footer-container .mdf-snackbar{position:relative;width:100%}.mdf-slide-in-body-with-snackbar{margin-bottom:56px}.vdl-slide-in-body .mdf-snackbar{display:block;position:fixed;left:0;right:0;bottom:0;width:100%;background-color:#fff;text-align:center;-webkit-overflow-scrolling:touch}.vdl-slide-in-body+.mdf-wizard-footer-container{flex:0 0 auto;width:100%;background-color:var(--white)}.vdl-slide-in-body+.mdf-wizard-footer-container .mdf-snackbar{position:relative}.vdl-slide-in-footer .mdf-snackbar{position:relative}.mdf .mdf-verso-view-mods .vdl-slide-in-body{margin:0;padding:0;flex:1 1 auto;overflow:auto}.mdf .mdf-verso-view-mods .vdl-slide-in-body>div{height:100%}.mdf .mdf-verso-view-mods.mdf-slide-in-body{height:100%}.mdf .vdl-slide-in-title h2{font-size:var(--font-size-h2)}.mdf-status--info{color:var(--accent-0-lightest);background-color:var(--accent-0-dark);border:1px solid var(--accent-0-dark)}.mdf-status--warning{color:var(--accent-5-lightest);background-color:var(--accent-5-dark);border:1px solid var(--accent-5-dark)}.mdf-status--error{color:var(--accent-6-lightest);background-color:var(--accent-6);border:1px solid var(--accent-6)}.mdf-status--success{color:var(--accent-1-lightest);background-color:var(--accent-1-dark);border:1px solid var(--accent-1-dark)}.mdf-status--delegate{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf-status--default{color:var(--white);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .mdf-card-atom{background-color:rgba(0,0,0,0);border-radius:5px;box-shadow:none;display:flex;flex-direction:column;margin:0}.mdf .mdf-card-atom.mdf-card--blank{border:0}.mdf .mdf-card-atom.mdf-card--dash{border:2px dashed var(--neutral-mid)}.mdf .mdf-card-atom.mdf-card--flat{border:1px solid var(--neutral-mid)}.mdf .mdf-card-atom.mdf-card--shadow{box-shadow:0 5px 15px 0 rgba(0,0,0,.3);border:1px solid var(--neutral-mid)}.mdf .mdf-card-atom.inline{display:inline-block}.mdf .small-card{border-radius:5px;background-color:var(--white);margin:0;display:flex;min-height:130px;flex-direction:column;box-shadow:none}.mdf .small-card.mdf-applyBorderLine>div:nth-child(3).mdf-cardLineBorder,.mdf .small-card.mdf-applyBorderLine>div:nth-child(2).mdf-cardLineBorder{border-top:1px solid var(--neutral-mid)}.mdf .small-card--shadow{box-shadow:0 5px 15px 0 rgba(0,0,0,.3);border:1px solid var(--neutral-mid)}.mdf .small-card--flat{border:1px solid var(--neutral-mid)}.mdf .small-card--dash{border:2px dashed var(--neutral-mid);background-color:rgba(0,0,0,0)}.mdf .small-card--blank{border:0}.mdf .small-card .small-card-top{position:relative;color:var(--black);display:flex;align-items:center;margin:15px 15px 0 15px}.mdf .small-card .small-card-top--columnLayout .small-card-title--icon{margin:0 10px 0 0;color:var(--accent-0)}.mdf .small-card .small-card-top .subTitleStyle{display:flex}.mdf .small-card .small-card-top .small-card-subTitle{display:flex;color:var(--neutral-dark);font-size:var(--font-size-base);font-weight:400}.mdf .small-card .small-card-top--left{justify-content:left}.mdf .small-card .small-card-top--center{justify-content:center}.mdf .small-card .small-card-top .small-card-title{display:flex;flex:1 0 auto;width:calc(100% - 50px);align-items:center;line-height:24px}.mdf .small-card .small-card-top .small-card-title .header{width:calc(100% - 25px)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--alignItem{align-items:initial}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--selectable{color:var(--link-color)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--titleSubTitle{flex-direction:column;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--titleSubTitle--wrapTitle{white-space:normal}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--small{font-size:var(--font-size-base)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--medium{font-size:var(--font-size-medium)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--large{font-size:var(--font-size-larger)}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--semibold{font-weight:600}.mdf .small-card .small-card-top .small-card-title .header .small-card-title--light{font-weight:300}.mdf .small-card .small-card-top .small-card-action{cursor:pointer}.mdf .small-card .small-card-top .small-card-action.actionIcon{color:var(--link-color);font-size:14px}.mdf .small-card .small-card-top .small-card-action .vdl-button--link,.mdf .small-card .small-card-top .small-card-action .vdl-button{margin:0;padding:0}.mdf .small-card .small-card-top--selectable .small-card-action{cursor:pointer}.mdf .small-card .small-card-top--selectable .small-card-title .header{width:100%}.mdf .small-card .small-card-top--selectable .small-card-title .header h2{font-weight:400}.mdf .small-card .small-card-top--selectable .mdf-actionInfo{order:-1}.mdf .small-card .small-card-top--selectable.mdf-cardTop-flexDirection{flex-direction:row-reverse}.mdf .small-card .small-card-top--selectable .small-card-title{margin-left:0}.mdf .small-card .small-card-middle.small-card-mobile{flex:1 1 0%}.mdf .small-card .small-card-middle{display:flex;flex-direction:column;position:relative;height:100%}.mdf .small-card .small-card-middle.mdf-cardLineBorder{margin-top:5px}.mdf .small-card .small-card-middle--low{flex-direction:column-reverse}.mdf .small-card .small-card-middle--icon{border:2px solid var(--black);background:var(--white);color:var(--black)}.mdf .small-card .small-card-middle--status{border:2px solid var(--white)}.mdf .small-card .small-card-middle--status--notStarted{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card .small-card-middle--status--inProgress,.mdf .small-card .small-card-middle--status--info{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .small-card .small-card-middle--status--inReview,.mdf .small-card .small-card-middle--status--submitted{color:var(--accent-0);background-color:var(--white);border:1px solid var(--accent-0)}.mdf .small-card .small-card-middle--status--approved,.mdf .small-card .small-card-middle--status--accepted,.mdf .small-card .small-card-middle--status--completed,.mdf .small-card .small-card-middle--status--success{color:var(--accent-1-dark);background-color:var(--white);border:1px solid var(--accent-1-dark)}.mdf .small-card .small-card-middle--status--inComplete,.mdf .small-card .small-card-middle--status--warning{color:var(--accent-5);background-color:var(--white);border:1px solid var(--accent-5)}.mdf .small-card .small-card-middle--status--archived{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card .small-card-middle--status--error{color:var(--accent-6);background-color:var(--white);border:1px solid var(--accent-6)}.mdf .small-card .small-card-middle .small-card-circle{z-index:1;right:0;left:0}.mdf .small-card .small-card-middle .small-card-circle .mdf-avatar{display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.mdf .small-card .small-card-middle .small-card-circle .mdf-avatar .vdl-avatar__initials{-ms-flex:1 0 auto}.mdf .small-card .small-card-middle .small-card-circle .vdl-avatar--md{width:60px;height:60px}.mdf .small-card .small-card-middle .small-card-content{position:relative;width:100%;height:100%;min-height:40px;padding-left:5px}.mdf .small-card .small-card-middle .small-card-content.mdf-cardBackground{margin:0}.mdf .small-card .small-card-bottom{height:50px;min-height:50px;overflow:hidden;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mdf .small-card .small-card-bottom.mdf-cardBackground{margin:0}.mdf .small-card label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label){font-size:var(--font-size-small);color:var(--neutral-darker);margin-bottom:0}.mdf .small-card label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error{color:var(--accent-6)}.mdf .small-card .no-margin{margin:0}.mdf .small-card2.mdf-applyBorderLine>div:nth-child(3).mdf-cardLineBorder,.mdf .small-card2.mdf-applyBorderLine>div:nth-child(2).mdf-cardLineBorder{border-top:1px solid var(--neutral-mid)}.mdf .small-card2 .small-card-top{position:relative;color:var(--black);display:flex;align-items:center;margin:1rem 1rem 0 1rem}.mdf .small-card2 .small-card-top--columnLayout .small-card-title--icon{margin:0 8px 0 0;color:var(--accent-0)}.mdf .small-card2 .small-card-top .subTitleStyle{display:flex}.mdf .small-card2 .small-card-top .small-card-subTitle{display:flex;color:var(--neutral-dark);font-size:var(--font-size-base);font-weight:400}.mdf .small-card2 .small-card-top--left{justify-content:left}.mdf .small-card2 .small-card-top--center{justify-content:center}.mdf .small-card2 .small-card-top .small-card-title{display:flex;flex:1 0 auto;width:calc(100% - 50px);align-items:center;line-height:24px}.mdf .small-card2 .small-card-top .small-card-title .header{width:calc(100% - 25px)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--alignItem{align-items:initial}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--selectable{color:var(--link-color)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--titleSubTitle{flex-direction:column;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--titleSubTitle--wrapTitle{white-space:normal}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--small{font-size:var(--font-size-base)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--medium{font-size:var(--font-size-medium)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--large{font-size:var(--font-size-larger)}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--semibold{font-weight:600}.mdf .small-card2 .small-card-top .small-card-title .header .small-card-title--light{font-weight:300}.mdf .small-card2 .small-card-top .small-card-action{cursor:pointer}.mdf .small-card2 .small-card-top .small-card-action.actionIcon{color:var(--link-color);font-size:14px}.mdf .small-card2 .small-card-top .small-card-action .vdl-button--link,.mdf .small-card2 .small-card-top .small-card-action .vdl-button{margin:0;padding:0}.mdf .small-card2 .small-card-top--selectable .small-card-action{cursor:pointer}.mdf .small-card2 .small-card-top--selectable .small-card-title .header{width:100%}.mdf .small-card2 .small-card-top--selectable .small-card-title .header h2{font-weight:400}.mdf .small-card2 .small-card-top--selectable .mdf-actionInfo{order:-1}.mdf .small-card2 .small-card-top--selectable.mdf-cardTop-flexDirection{flex-direction:row-reverse}.mdf .small-card2 .small-card-top--selectable .small-card-title{margin-left:0}.mdf .small-card2 .small-card-middle.small-card-mobile{flex:1 1 0%}.mdf .small-card2 .small-card-middle{display:flex;flex-direction:column;position:relative;height:100%}.mdf .small-card2 .small-card-middle.mdf-cardLineBorder{margin-top:5px}.mdf .small-card2 .small-card-middle--low{flex-direction:column-reverse}.mdf .small-card2 .small-card-middle--icon{border:2px solid var(--black);background:var(--white);color:var(--black)}.mdf .small-card2 .small-card-middle--status{border:2px solid var(--white)}.mdf .small-card2 .small-card-middle--status--notStarted{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card2 .small-card-middle--status--inProgress,.mdf .small-card2 .small-card-middle--status--info{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .small-card2 .small-card-middle--status--inReview,.mdf .small-card2 .small-card-middle--status--submitted{color:var(--accent-0);background-color:var(--white);border:1px solid var(--accent-0)}.mdf .small-card2 .small-card-middle--status--approved,.mdf .small-card2 .small-card-middle--status--accepted,.mdf .small-card2 .small-card-middle--status--completed,.mdf .small-card2 .small-card-middle--status--success{color:var(--accent-1-dark);background-color:var(--white);border:1px solid var(--accent-1-dark)}.mdf .small-card2 .small-card-middle--status--inComplete,.mdf .small-card2 .small-card-middle--status--warning{color:var(--accent-5-darker);background-color:var(--white);border:1px solid var(--accent-5-darker)}.mdf .small-card2 .small-card-middle--status--archived{color:var(--neutral-dark);background-color:var(--white);border:1px solid var(--neutral-dark)}.mdf .small-card2 .small-card-middle--status--error{color:var(--accent-6);background-color:var(--white);border:1px solid var(--accent-6)}.mdf .small-card2 .small-card-middle .small-card-circle{z-index:1;right:0;left:0}.mdf .small-card2 .small-card-middle .small-card-circle .mdf-avatar{display:flex;align-items:center;justify-content:center;margin-left:auto;margin-right:auto}.mdf .small-card2 .small-card-middle .small-card-circle .mdf-avatar .vdl-avatar__initials{-ms-flex:1 0 auto}.mdf .small-card2 .small-card-middle .small-card-circle .vdl-avatar--md{width:60px;height:60px}.mdf .small-card2 .small-card-middle .small-card-content{position:relative;width:100%;height:100%;min-height:40px;padding-left:.5rem}.mdf .small-card2 .small-card-middle .small-card-content.mdf-cardBackground{margin:0}.mdf .small-card2 .small-card-bottom{height:50px;min-height:50px;overflow:hidden;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.mdf .small-card2 .small-card-bottom.mdf-cardBackground{margin:0}.mdf .small-card2 label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card2 .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label),.mdf .small-card2 .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label){font-size:var(--font-size-small);color:var(--neutral-darker);margin-bottom:0}.mdf .small-card2 label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card2 .revolution .mdf label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error,.mdf .small-card2 .mdf-validated-field>label:not(.vdl-radio label,.vdl-checkbox label).mdf-label-error{color:var(--accent-6)}.mdf .small-card2 .no-margin{margin:0}.mdf .gutterWidth-0{padding:0}.mdf .gutterWidth-5{padding:5px}.mdf .gutterWidth-10{padding:10px}.mdf .gutterWidth-15{padding:15px}.mdf .gutterWidth-20{padding:20px}.vdl-snackbar__container,.mdf-snackbar{display:block;width:100%;position:fixed;bottom:0;left:0;background:var(--white);height:50px;box-shadow:0 -4px 5px 1px rgba(0,0,0,.2);border-top:1px solid var(--neutral-lighter);padding:10px 15px;text-align:center;z-index:2000}.mdf-snackbar{display:block;width:100%;position:fixed;bottom:0;left:auto;right:0;background:var(--white);height:56px;box-shadow:0 -4px 4px 1px rgba(0,0,0,.07);border-top:1px solid var(--neutral-lighter);padding:10px 15px;text-align:center;z-index:2;transform:translate3d(0, 0, 0)}.mdf .mdf-spreadsheet,.mdf .mdf-grid-layout{position:relative;display:flex;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;outline:none;flex-direction:column}.mdf .mdf-spreadsheet-header.vdl-row.mdf-flex-nowrap,.mdf .mdf-grid-layout-header.vdl-row.mdf-flex-nowrap{min-height:48px;position:sticky}.mdf .mdf-spreadsheet-row.selected,.mdf .mdf-spreadsheet-row.selected>.mdf .mdf-spreadsheet-cell,.mdf .mdf-grid-layout-row.selected,.mdf .mdf-spreadsheet-row.selected>.mdf .mdf-grid-layout-cell,.mdf .mdf-grid-layout-row.selected>.mdf .mdf-spreadsheet-cell,.mdf .mdf-grid-layout-row.selected>.mdf .mdf-grid-layout-cell{background-color:var(--accent-0-lighter)}.mdf .mdf-spreadsheet-row.row-highlight,.mdf .mdf-spreadsheet-row.row-highlight>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet-row.row-highlight>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout-row.row-highlight,.mdf .mdf-grid-layout-row.row-highlight>.mdf-grid-layout-cell,.mdf .mdf-grid-layout-row.row-highlight>.mdf-spreadsheet-cell{background-color:var(--accent-0-lightest)}.mdf .mdf-spreadsheet>.cell-highlight,.mdf .mdf-grid-layout>.cell-highlight{background-color:var(--accent-0-lighter)}.mdf .mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet-compound-cell-header:focus,.mdf .mdf-grid-layout-cell:focus,.mdf .mdf-grid-layout-compound-cell-header:focus{border:2px solid #324fa5;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #324fa5;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.mdf .mdf-spreadsheet .no-data:focus,.mdf .mdf-grid-layout .no-data:focus{background-color:var(--white);border:2px solid #324fa5;outline:0}.mdf .mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-grid-layout-cell.editable:hover:not([data-edit=on]){border:2px solid #324fa5}.mdf .mdf-spreadsheet-cell.editable,.mdf .mdf-grid-layout-cell.editable{border:1px solid rgba(0,0,0,0)}.mdf .mdf-spreadsheet-cell.vdl-col-xs,.mdf .mdf-grid-layout-cell.vdl-col-xs{padding:0 5px}.mdf .mdf-spreadsheet>.no-data,.mdf .mdf-grid-layout>.no-data{position:relative;min-height:40px;padding:5px;left:0;right:0;bottom:0;display:flex;margin:0 -15px;justify-content:center;align-items:center;background-color:var(--accent-0-lighter)}.mdf .mdf-spreadsheet div>.locked-header,.mdf .mdf-grid-layout div>.locked-header{display:inline-flex;position:sticky;top:0;left:0;overflow:hidden;border-bottom:1px solid var(--neutral);min-height:48px;color:var(--neutral-darker);background-color:var(--neutral-lightest)}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row{display:flex;flex-grow:1;min-height:48px}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell{max-width:30px;min-width:30px;text-align:center;padding:0}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;min-height:48px;cursor:pointer;align-items:center;text-align:left;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;white-space:normal}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize:hover{background-color:var(--accent-5);cursor:col-resize}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled>.cell-content{color:var(--link-color);max-width:calc(100% - 20px)}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa{color:var(--link-color);align-items:center;display:inline-flex;height:100%;line-height:inherit;margin-left:5px}.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.locked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled span.fa:before{padding-right:2px}.mdf .mdf-spreadsheet div.grid-body,.mdf .mdf-spreadsheet div.spreadsheet-body,.mdf .mdf-grid-layout div.grid-body,.mdf .mdf-grid-layout div.spreadsheet-body{display:flex;margin:0 -15px}.mdf .mdf-spreadsheet>.grid-body>.locked-body,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body,.mdf .mdf-grid-layout>.grid-body>.locked-body,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body{position:relative;display:inline-flex;left:0;overflow-y:hidden;overflow-x:hidden;overflow:-moz-scrollbars-none;scrollbar-width:none;-ms-overflow-style:none}.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-grid-layout-row,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-grid-layout-row,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-spreadsheet-row,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row{display:flex;border-bottom:1px solid var(--neutral-mid);cursor:pointer;min-height:48px}.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;align-items:center;justify-content:flex-start;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;width:100%}.mdf .mdf-spreadsheet>.grid-body>.locked-body::-webkit-scrollbar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body::-webkit-scrollbar,.mdf .mdf-grid-layout>.grid-body>.locked-body::-webkit-scrollbar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body::-webkit-scrollbar{width:0 !important}.mdf .mdf-spreadsheet>.spreadsheet-footer,.mdf .mdf-grid-layout>.spreadsheet-footer{display:flex;margin:0 -15px;position:relative}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer,.mdf .mdf-grid-layout>.spreadsheet-footer>.locked-footer{position:absolute;bottom:0;left:0;overflow-y:hidden;overflow-x:hidden;overflow:-moz-scrollbars-none;scrollbar-width:none;-ms-overflow-style:none}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row,.mdf .mdf-grid-layout>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row{display:flex;flex-grow:1;border-bottom:1px solid var(--neutral-mid);cursor:pointer;min-height:48px}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;align-items:center;justify-content:flex-start;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;width:100%}.mdf .mdf-spreadsheet div>.unlocked-header,.mdf .mdf-grid-layout div>.unlocked-header{position:sticky;display:inline-flex;top:0;overflow-y:hidden;overflow-x:hidden;scrollbar-width:none;-ms-overflow-style:none;border-bottom:1px solid var(--neutral);min-height:48px;color:var(--neutral-darker);background-color:var(--neutral-lightest)}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row{display:flex;flex-grow:1;min-height:48px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell{max-width:30px;min-width:30px;text-align:center;padding:0}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;min-height:48px;cursor:pointer;align-items:center;text-align:left;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;white-space:normal}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize:hover{background-color:var(--accent-5);cursor:col-resize}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled>.cell-content{color:var(--link-color);max-width:calc(100% - 20px)}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled .cell-content+span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled .cell-content+span.fa{align-items:center;cursor:pointer;color:var(--link-color);display:inline-flex;margin-left:5px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row .mdf-spreadsheet-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-grid-layout-cell.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row .mdf-spreadsheet-cell.sort-enabled span.fa:before{padding-right:2px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header{display:inline-flex;vertical-align:top;min-height:48px;cursor:pointer;position:relative;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-resize:hover,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-resize:hover,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-resize:hover{background-color:var(--accent-5);cursor:col-resize}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;min-height:48px;text-align:center;flex-grow:1}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title{display:inline-flex;height:50%;overflow:hidden}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled{color:var(--link-color);max-width:calc(100% - 20px)}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled>span.fa{align-items:center;cursor:pointer;color:var(--link-color);display:inline-flex;height:fit-content;line-height:inherit;margin-left:5px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-title.sort-enabled span.fa:before{padding-right:2px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle{display:flex;flex-direction:row;width:100%;height:20px}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div{align-items:center;justify-content:center;font-size:smaller;width:50%;overflow:hidden}.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-spreadsheet div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div>span.vdl-invisible.ariaInvisibleText{display:flex;line-height:0;height:0;width:0}.mdf .mdf-spreadsheet .unlocked-header::-webkit-scrollbar,.mdf .mdf-grid-layout .unlocked-header::-webkit-scrollbar{width:0}.mdf .mdf-spreadsheet>.grid-body .scroll-container,.mdf .mdf-spreadsheet>.spreadsheet-body .scroll-container,.mdf .mdf-grid-layout>.grid-body .scroll-container,.mdf .mdf-grid-layout>.spreadsheet-body .scroll-container{overflow-y:auto;overflow-x:auto;position:relative;height:100%}.mdf .mdf-spreadsheet>.grid-body .scroll-container>.unlocked-body,.mdf .mdf-spreadsheet>.spreadsheet-body .scroll-container>.unlocked-body,.mdf .mdf-grid-layout>.grid-body .scroll-container>.unlocked-body,.mdf .mdf-grid-layout>.spreadsheet-body .scroll-container>.unlocked-body{top:0}.mdf .mdf-spreadsheet .grid-body .scroll-container.noVerticalScroll,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container.noVerticalScroll,.mdf .mdf-grid-layout .grid-body .scroll-container.noVerticalScroll,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container.noVerticalScroll{overflow-y:hidden}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body{position:relative;overflow-y:hidden;overflow-x:hidden}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row{display:flex;flex-grow:1;border-bottom:1px solid var(--neutral-mid);cursor:pointer;min-height:48px}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;align-items:center;justify-content:flex-start;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;width:100%}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content i.fa-chevron-right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-down,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content i.fa-chevron-right{text-align:center}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content{display:inline-flex;align-items:center;width:50%;height:100%}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right{display:inline-block;text-overflow:ellipsis;text-align:center;overflow:hidden;width:100%}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.mdf-spreadsheet-cell.virtual-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-grid-layout-cell.virtual-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.virtual-cell{max-width:30px;min-width:30px;text-align:center;padding:0}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.cell.editable>.cell-content,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.cell.editable>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.cell.editable>.cell-content,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.cell.editable>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.cell.editable>.cell-content,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.cell.editable>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row>.cell.editable>.cell-content,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row>.cell.editable>.cell-content{width:100%}.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .grid-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-grid-layout-row.subheader>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-grid-layout-cell,.mdf .mdf-grid-layout .spreadsheet-body .scroll-container>.unlocked-body>div>.mdf-spreadsheet-row.subheader>.mdf-spreadsheet-cell{width:100%}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer{position:absolute;bottom:0;overflow-y:hidden;overflow-x:hidden;scrollbar-width:none;-ms-overflow-style:none}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row{display:flex;flex-grow:1;border-bottom:1px solid var(--neutral-mid);cursor:pointer;min-height:48px}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell{display:inline-flex;align-items:center;justify-content:flex-start;flex:0 0 auto;flex-grow:1}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content{overflow:hidden;width:100%}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content{display:inline-flex;height:100%;width:50%;align-items:center}.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .right{text-align:center;width:100%;text-overflow:ellipsis;overflow:hidden}.mdf .mdf-spreadsheet{border:1px solid var(--neutral-mid);border-bottom:1px solid var(--neutral-mid)}.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content{font-weight:bold}.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize,.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-resize,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-resize,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-resize{width:6px;right:-3px}.mdf .mdf-spreadsheet>div>.locked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>div>.unlocked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]),.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell.editable:hover:not([data-edit=on]){border-right:1px solid #324fa5}.mdf .mdf-spreadsheet>div>.locked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet>div>.unlocked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header{border-right:1px solid var(--neutral-mid)}.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>div>.locked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>div>.unlocked-header div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle>div:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content:last-child{border-left:1px solid var(--neutral-mid)}.mdf .mdf-spreadsheet>div>.locked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet>div>.unlocked-header>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer>.mdf-spreadsheet-row>.mdf-spreadsheet-compound-cell-header>.cell-content>.compound-subtitle{border-top:1px solid var(--neutral-mid)}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body div>.mdf-spreadsheet-row.selected>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body div>.mdf-spreadsheet-row.row-highlight>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body div>.mdf-spreadsheet-row.selected>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container>.unlocked-body div>.mdf-spreadsheet-row.row-highlight>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row.selected>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row.row-highlight>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row.selected>.mdf-spreadsheet-cell:focus,.mdf .mdf-spreadsheet>.spreadsheet-body>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row.row-highlight>.mdf-spreadsheet-cell:focus{border-right-color:#324fa5}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer{border-top:1px solid var(--neutral-mid)}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row{align-items:center}.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row .mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.locked-footer div>.mdf-spreadsheet-row .mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row .mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-footer>.unlocked-footer div>.mdf-spreadsheet-row .mdf-spreadsheet-cell{align-self:stretch}.mdf .mdf-grid-layout{border-top:1px solid var(--neutral)}.mdf .mdf-grid-layout .mdf-grid-layout-sticky-header{z-index:1}.mdf .mdf-grid-layout .mdf-grid-layout-header.mdf-grid-layout-fixed-header{position:fixed}.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content>.compound-subtitle,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-title,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-content>.compound-subtitle{font-weight:600;color:var(--neutral-darker);text-transform:var(--text-transform);font-size:var(--grid-header-font-size)}.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize{display:inline-flex;align-items:center;width:6px;right:0;top:0}.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:before,.mdf .mdf-grid-layout div>.locked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-resize:before,.mdf .mdf-grid-layout div>.unlocked-header>.mdf-grid-layout-row>.mdf-grid-layout-compound-cell-header>.cell-resize:before{content:"||";cursor:col-resize}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row{align-self:stretch}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell{align-self:stretch}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-progress-bar>.vdl-progress-bar__bar,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-progress-bar>.vdl-progress-bar__bar{margin:5px 0}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-date-time-picker,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-date-time-picker{margin:0}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-textbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-textbox{margin:0}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-toggle-switch,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-checkbox,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-radio,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-toggle-switch{margin:0}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container{width:100%}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu{width:inherit}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .mdf-dropdown-container .mdf-dropdown-menu input.mdf-dropdown-menu-value{width:100%}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .MDFSelectBox__control,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .MDFSelectBox__control{margin:0}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--secondary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--primary span.vdl-button__container,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--secondary span.vdl-button__container{overflow:hidden;width:100%;display:inline-block}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-spreadsheet-cell>.compound-cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.cell-content .vdl-button.vdl-button--link,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>.mdf-grid-layout-cell>.compound-cell-content .vdl-button.vdl-button--link{padding:0;height:24px}.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-spreadsheet>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.spreadsheet-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.locked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-spreadsheet-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-spreadsheet-cell>.compound-cell-content .right,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.cell-content,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .left,.mdf .mdf-grid-layout>.grid-body>.scroll-container .unlocked-body>div .mdf-grid-layout-row>div[data-edit=on].mdf-grid-layout-cell>.compound-cell-content .right{overflow:visible}.mdf .caption{line-height:0;margin:0}div.mdf-grid-layout-row.gu-mirror,div.mdf-spreadsheet-row.gu-mirror{display:inline-flex;min-height:48px;justify-content:flex-start;align-items:center}div.mdf-grid-layout-row.gu-mirror .mdf-grid-layout-cell,div.mdf-grid-layout-row.gu-mirror .mdf-spreadsheet-cell,div.mdf-spreadsheet-row.gu-mirror .mdf-grid-layout-cell,div.mdf-spreadsheet-row.gu-mirror .mdf-spreadsheet-cell{display:inline-flex}div.mdf-grid-layout-row.gu-mirror .mdf-grid-layout-cell>.compound-cell-content,div.mdf-grid-layout-row.gu-mirror .mdf-spreadsheet-cell>.compound-cell-content,div.mdf-spreadsheet-row.gu-mirror .mdf-grid-layout-cell>.compound-cell-content,div.mdf-spreadsheet-row.gu-mirror .mdf-spreadsheet-cell>.compound-cell-content{display:flex;align-items:center}.mdf-status--info{color:var(--accent-0-lightest);background-color:var(--accent-0-dark);border:1px solid var(--accent-0-dark)}.mdf-status--warning{color:var(--accent-5-lightest);background-color:var(--accent-5-dark);border:1px solid var(--accent-5-dark)}.mdf-status--error{color:var(--accent-6-lightest);background-color:var(--accent-6);border:1px solid var(--accent-6)}.mdf-status--success{color:var(--accent-1-lightest);background-color:var(--accent-1-dark);border:1px solid var(--accent-1-dark)}.mdf-status--delegate{color:var(--accent-0-dark);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf-status--default{color:var(--white);background-color:var(--white);border:1px solid var(--accent-0-dark)}.mdf .step-navigation .step-navigation__step{flex:0 0 45px}.mdf .step-navigation .step-navigation__step .step-navigation__step-indicator{background:var(--white);line-height:30px;width:35px;height:35px;border-radius:35px;border-width:3px}.mdf .step-navigation .step-navigation__step .step-navigation__step-indicator .step-icon{line-height:28px}.mdf .step-navigation .step-navigation__step.active.backwards:not(.complete) .step-navigation__step-indicator{transition:color 400ms ease-in-out 400ms,border-color 400ms ease-in-out 400ms}.mdf .step-navigation .step-navigation__step.active.forwards:not(.complete) .step-navigation__step-indicator{transition:color 400ms ease-in-out,border-color 400ms ease-in-out}.mdf .step-navigation .step-navigation__step .step-navigation__step-line{top:35px;margin-left:17px}.mdf .step-navigation .step-navigation__step .step-navigation__step-line.active{border-left-width:3px;transform-origin:top;transform:scaleY(0)}.mdf .step-navigation .step-navigation__step.complete.forwards .step-navigation__step-line.active{transition:transform 800ms ease-in-out;transform:scaleY(1)}.mdf .step-navigation .step-navigation__step.active.backwards .step-navigation__step-line.active{transition:transform 800ms ease-in-out 400ms;transform:scaleY(0)}.mdf-taxId{display:flex}.mdf-taxId.column{flex-direction:column;gap:4px}.mdf-taxId.row{flex-direction:row}.mdf-taxId.row .MDFSelectBox__control{min-width:164px}.mdf-taxId.row .mdf-taxId-cell{margin-right:10px}.mdf-taxId.row .mdf-taxId-applied-cell{margin-left:10px;margin-right:10px}.mdf-taxId .render-taxId{display:flex;flex-direction:row;gap:20px}.mdf-taxId-cell{flex:1 1 auto;display:flex}.mdf-taxId-cell .mdf-validated-field{flex:1 1 auto}.mdf-taxId-cell .mdf-validated-field label{white-space:nowrap}.mdf-taxId-cell.nationalidentifier{display:block}.mdf-taxId-applied-cell{align-self:flex-end;padding-bottom:2px;white-space:nowrap}.mdf-taxId-applied-cell .vdl-checkbox>label{white-space:nowrap}.mdf-taxId-notSpecified-cell{padding-top:10px}@media(max-width: 767px){.mdf-taxId .render-taxId{flex-direction:column;gap:8px;align-items:stretch}.mdf-taxId-applied-cell{align-self:normal}}.mdf .vdl-textbox,.vdl-textbox{padding:6px 10px}.mdf .mdf-label{font-size:.875rem}.mdf .mdf-label>label{font-size:.875rem;font-weight:500;margin:0}.more-label .vdl-button--link.vdl-button--variant-text{font-weight:700;color:var(--accent-0-darker);padding:2px}@keyframes mdf-time-frame-slide-in-top{0%{transform:translate(0, -100%)}}@keyframes mdf-time-frame-slide-out-bottom{100%{transform:translate(0, 110%)}}@keyframes mdf-time-frame-slide-out-right{100%{transform:translate(500%, 0)}}.mdf-time-frame-slide-in-top{animation:mdf-time-frame-slide-in-top 1s ease-in;animation-fill-mode:forwards}.mdf-time-frame-slide-out-bottom{animation:mdf-time-frame-slide-out-bottom 0s ease-out;animation-fill-mode:forwards}.mdf-time-frame-slide-out-right{animation:mdf-time-frame-slide-out-right 1s;animation-fill-mode:forwards}.mdf-time-frame__frame-wrapper--frame-animating{overflow:hidden}.mdf-time-frame__main-content-container{margin-left:40px;background:var(--white);padding:0 10px 15px 40px;box-shadow:0 10px 15px 0 rgba(0,0,0,.15);border-top:0;margin-right:10px;margin-bottom:10px;border-bottom-right-radius:5px;border-bottom-left-radius:5px}.mdf-time-frame__frame-timeline-container{display:flex;align-items:center;height:60px;position:relative;left:17px}.mdf-time-frame__timeline-wrapper{display:flex;flex-grow:1;height:inherit;overflow:hidden;align-items:center}.mdf-time-frame__timeline-wrapper--timeline-open{justify-content:flex-end;flex-direction:row-reverse}.mdf-time-frame__dates-container{transform:translate(-100%);transition:all 1s;z-index:0}.mdf-time-frame__dates-container--slide-in-left{transform:translate(0)}.mdf-time-frame__open-timeline-link{margin-left:5px;display:flex;align-items:center;align-self:flex-start;height:40px;color:var(--accent-0-dark);font-weight:600;font-size:13px}.mdf-time-frame__open-timeline-link .fa-chevron-right{margin-left:2px}.mdf-time-frame__open-timeline-link:hover{text-decoration:underline;cursor:pointer}.mdf-time-frame__timeline-line{height:0;display:flex;justify-content:flex-end;border:1px dashed var(--accent-0-dark);margin-right:35px;position:relative;top:14px;z-index:-1}.mdf-time-frame__dates{display:flex}.mdf-time-frame__date{display:flex;flex-direction:column;align-items:center;color:var(--accent-0-dark);border-bottom:2px solid rgba(0,0,0,0);margin-left:30px}.mdf-time-frame__date .mdf-time-frame__timeline-point{height:25px;width:25px;border:2px solid;background:#fff;border-radius:50%}.mdf-time-frame__date--point:hover{cursor:pointer;border-bottom:2px solid var(--accent-0-dark)}.mdf-time-frame__date--point:hover .mdf-time-frame__timeline-point{border-width:3px}.mdf-time-frame__date--temp{pointer-events:none}.mdf-time-frame__date--temp .mdf-time-frame__timeline-point{border-style:dotted}.mdf-time-frame__date--selected{font-weight:bold;pointer-events:none;cursor:default}.mdf-time-frame__date--selected .mdf-time-frame__timeline-point{border-width:3px;background-color:var(--accent-0-dark);border-color:#fff}.mdf-time-frame__date .mdf-time-frame__point-label{margin-top:5px;display:flex;flex-direction:column;align-items:center}.mdf-time-frame__header-wrapper{display:flex;height:40px;background:var(--white);border-top-left-radius:30px;border-top-right-radius:5px;margin-right:10px;box-shadow:0 5px 15px 0 rgba(0,0,0,.15)}.mdf-time-frame__header{flex-grow:1;display:flex;justify-content:center;align-items:center;background:var(--white)}.mdf-time-frame__header-icon{background:#fff;width:80px;height:80px;border-radius:50%;border:2px solid var(--accent-0-dark);display:flex;justify-content:center;align-items:center;color:var(--accent-0-dark);font-size:40px;z-index:1}.mdf-time-frame__circles-connector{width:0;height:20px;border-left:4px solid var(--accent-0-dark);position:absolute;margin-top:40px;left:18px;top:0}.mdf-time-frame__calendar-container{display:flex;justify-content:center;font-size:20px;align-items:center;align-self:flex-start;border:2px solid var(--accent-0-dark);width:40px;height:40px;border-radius:50%;color:var(--accent-0-dark)}.mdf-time-frame__calendar-container--timeline-open{cursor:pointer}.mdf-time-frame__calendar-container--timeline-open:hover{background-color:#fff}.vdl-date-time-picker input[type=time]{-webkit-appearance:none}.mdf .vdl-toggle-switch__label.vdl-toggle-switch__label--checked{max-width:60px}.mdf .vdl-toggle-switch__label.vdl-toggle-switch__label--unchecked{max-width:50px}.mdf-tool-bar button.vdl-button--link{border:0;border-radius:0;flex-basis:auto;text-decoration:none;padding:0;background-color:rgba(0,0,0,0);color:var(--link-color)}.mdf-tool-bar button.vdl-button--link:focus{text-decoration:none;color:var(--link-color)}.mdf-tool-bar button.vdl-button--link[aria-selected=true]{background:none;color:var(--link-color)}.mdf-tool-bar button.vdl-button--link[aria-selected=true]:hover{color:var(--link-active-color)}.mdf-tool-bar button.vdl-button--link[disabled]{background-color:var(--button-link-disabled-background);color:var(--button-link-disabled-color);box-shadow:var(--button-link-disabled-boxShadow)}.mdf-tool-bar .vdl-button-group__container>*:hover:not([disabled]){outline:none;outline-offset:unset}.mdf-tool-bar .vdl-button-group__container>*:focus:not([disabled]){box-shadow:inset 2px 2px #324fa5,inset -2px -2px #324fa5}.mdf-tool-bar .vdl-button-group__container>*[aria-selected=true]:hover{box-shadow:inset 2px 2px #324fa5,inset -2px -2px #324fa5}.mdf .treeItem .vdl-left-nav__item__expand-icon{color:var(--accent-0-dark);fill:var(--accent-0-dark);visibility:visible;cursor:pointer}.mdf .treeItem .vdl-left-nav__item__expand-icon.vdl-left-nav__item__selected{color:var(--white);fill:var(--white)}.mdf .treeItem.vdl-left-nav__item--selected>label:hover{background-color:var(--accent-0-dark)}.mdf .treeItem .vdl-left-nav__item__label:focus-visible .vdl-left-nav__item__expand-icon{color:var(--white);fill:var(--white)}.mdf .treeItem .vdl-left-nav__item__items--expanded{border-left:1px dotted;margin-left:10px}.mdf .treeItem--labelIcon{padding:2px}.mdf .treeItem .vdl-left-nav--tree .vdl-left-nav__item__label{line-height:1;margin:2px}.mdf .treeItem .vdl-left-nav__item__label{cursor:pointer;line-height:14px}.mdf .treeItem .vdl-left-nav__item__label:hover{background-color:var(--accent-0-lightest)}.mdf .treeItem.vdl-left-nav__item__selected .vdl-left-nav__item__label:hover{background-color:var(--accent-0-dark)}.mdf .treeItem .vdl-left-nav__item__horizontalLine{float:left;width:20px;border-top:1px dotted;margin-top:10px}.mdf .treeItem .vdl-left-nav__item__items--disabled{background-color:var(--neutral-disabled);color:var(--neutral-dark);cursor:not-allowed}.mdf .treeItem .vdl-left-nav__item__items--disabled[aria-selected=true]{background-color:var(--neutral-dark);color:var(--neutral-disabled)}.mdf .treeItem .disabledClass .word:hover{background-color:var(--neutral-disabled)}.mdf .treeItem .vdl-left-nav__item__label span{margin-right:18px}.mdf-tree-list .mdf-tree-list__tree-item{align-items:center;background-color:var(--neutral-lightest);border-bottom:1px solid var(--neutral-mid);display:flex;line-height:30px;padding:3px 5px}.mdf-tree-list .mdf-tree-list__tree-item:hover{background-color:var(--accent-0-lightest)}.mdf-tree-list .mdf-tree-list__tree-item .level0{flex:0 0 0}.mdf-tree-list .mdf-tree-list__tree-item .level1{flex:0 0 12px}.mdf-tree-list .mdf-tree-list__tree-item .level2{flex:0 0 24px}.mdf-tree-list .mdf-tree-list__tree-item .level3{flex:0 0 36px}.mdf-tree-list .mdf-tree-list__tree-item .level4{flex:0 0 48px}.mdf-tree-list .mdf-tree-list__tree-item .level5{flex:0 0 60px}.mdf-tree-list .mdf-tree-list__tree-item .level6{flex:0 0 72px}.mdf-tree-list .mdf-tree-list__tree-item .level7{flex:0 0 84px}.mdf-tree-list .mdf-tree-list__tree-item .level8{flex:0 0 96px}.mdf-tree-list .mdf-tree-list__tree-item .mdf-tree-list__expand-icon{color:var(--link-color);cursor:pointer;flex:0 0 12px}.mdf-tree-list .mdf-tree-list__tree-content{align-items:flex-start;display:flex;padding:3px 5px}.mdf-tree-list .mdf-tree-list__tree-content .level0{flex:0 0 12px}.mdf-tree-list .mdf-tree-list__tree-content .level1{flex:0 0 24px}.mdf-tree-list .mdf-tree-list__tree-content .level2{flex:0 0 36px}.mdf-tree-list .mdf-tree-list__tree-content .level3{flex:0 0 48px}.mdf-tree-list .mdf-tree-list__tree-content .level4{flex:0 0 60px}.mdf-tree-list .mdf-tree-list__tree-content .level5{flex:0 0 72px}.mdf-tree-list .mdf-tree-list__tree-content .level6{flex:0 0 84px}.mdf-tree-list .mdf-tree-list__tree-content .level7{flex:0 0 96px}.mdf-tree-list .mdf-tree-list__tree-content .level8{flex:0 0 108px}.mdf-tree-list .mdf-tree-list__tree-content .mdf-tree-list__expand-icon{color:var(--link-color);cursor:pointer;flex:0 0 12px}.mdf-tree-list>div:first-child{border-top:2px solid var(--neutral-mid)}.mdf-tree-list>div:last-child{border-bottom:2px solid var(--neutral-mid)}.wfnmockshell-wrapper .wfnmockshell-disabled-overlay{position:absolute;width:100%;height:100%;background-color:var(--neutral-dark);opacity:.5}.wfnmockshell-wrapper .wfnmockshell-search .wfnmockshell-disabled-overlay{width:calc(100% + 3px);height:calc(100% + 2px);margin-left:-6px;margin-top:-1px}.wfnmockshell-wrapper .wfnmockshell-toolbar .wfnmockshell-disabled-overlay{margin-left:-30px;z-index:1}.wfnmockshell-wrapper .wfnmockshell-footer .wfnmockshell-disabled-overlay{margin-top:-10px;margin-left:-15px}.wfnmockshell-wrapper .vdl-checkbox{margin:0}.wfnmockshell-wrapper main{min-height:500px;background-color:var(--neutral-dark)}@media only screen and (min-width: 1px),print{.wfnmockshell-wrapper header button{border:none;background:none;font-family:var(--font-family-base);font-size:inherit;cursor:pointer;border-radius:0}.wfnmockshell-wrapper header li{list-style:none;position:relative}.wfnmockshell-wrapper header .wfnmockshell-toolbar{background:linear-gradient(to right, var(--white), rgba(255, 255, 255, 0.75));display:flex;justify-content:space-between;align-items:center;padding:0 30px;position:relative}.wfnmockshell-wrapper header .wfnmockshell-mega-menu{background:var(--accent-0-darker)}.wfnmockshell-wrapper header .wfn-masthead{display:flex;max-width:1200px;justify-content:space-between;height:45px;overflow:hidden}.wfnmockshell-wrapper header .wfn-masthead img{height:45px}.wfnmockshell-wrapper header .wfn-masthead .wfn-logo{display:inline-block;margin:0;font-size:40px;color:var(--accent-6);text-decoration:none}.wfnmockshell-wrapper header .wfn-masthead .wfn-logo span{display:inline-block;text-indent:-9999px}.wfnmockshell-wrapper header .wfnmockshell{max-width:1200px;font-size:14px;margin:auto;display:flex;justify-content:space-between;flex-wrap:nowrap}.wfnmockshell-wrapper header .wfnmockshell-top{display:flex;height:40px;margin:0;padding:0;flex-grow:0;white-space:nowrap}.wfnmockshell-wrapper header .wfnmockshell-top-item{width:110px}.wfnmockshell-wrapper header .wfnmockshell-top-item .vdl-checkbox{margin-bottom:0;display:flex;justify-content:center;align-items:center}.wfnmockshell-wrapper header .wfnmockshell-top-item .wfnmockshell-top-label-wrapper{display:flex;justify-content:flex-start;align-items:center;padding:0 5px}.wfnmockshell-wrapper header .wfnmockshell-top-item--button{padding:0;line-height:40px;text-transform:var(--text-transform);letter-spacing:.05em;color:var(--white);width:100%;font-size:var(--font-size-small);font-weight:400}.wfnmockshell-wrapper header .wfnmockshell-top-item--button:hover{cursor:pointer}.wfnmockshell-wrapper header .wfnmockshell-top-item--button.has-favorites{color:var(--accent-5)}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper{z-index:9001;background:rgba(0,0,0,0);display:none;position:relative}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper-dart{position:absolute;border-top:30px solid var(--white);border-bottom:30px solid rgba(0,0,0,0);border-right:55px solid rgba(0,0,0,0);border-left:55px solid rgba(0,0,0,0);content:"";filter:drop-shadow(0 7px 4px rgba(0, 0, 0, 0.2))}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded{width:auto}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-top-item--wrapper-dart{z-index:1}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub{margin-left:0;padding-top:10px;position:absolute}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub.mdf-mock-shell-wfnmockshell-slide-down{max-height:1450px}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-title-wrapper{height:75px;padding:0 0 5px 0}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-container{flex-direction:row;flex-wrap:wrap;max-height:1500px;width:auto;padding-right:25px;padding-left:5px}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-items{min-height:auto;min-width:auto;max-width:214px;margin:20px 0 10px 20px;padding:0;flex:1}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item{margin-bottom:14px}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item-title-content{display:flex;border-bottom:1px solid var(--black);font-weight:700;height:40px;margin-bottom:10px}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-sub-item-button-content-title{height:auto}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-level3-item-item--button{height:auto;font-weight:600;white-space:nowrap;text-align:left;line-height:1.1;flex:1;text-overflow:ellipsis;overflow-x:hidden;min-width:0}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail{display:flex}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail button{text-transform:none;font-size:var(--font-size-small);margin:-4px 0 0 -4px}.wfnmockshell-wrapper header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail .wfnmockshell-features-selected{font-size:var(--font-size-small);color:var(--neutral-darker)}.wfnmockshell-wrapper header .wfnmockshell-top-item.active-top .wfnmockshell-top-item--button,.wfnmockshell-wrapper header .wfnmockshell-top-item.active-top .wfnmockshell-top-label-wrapper{background-color:var(--white);color:var(--black)}.wfnmockshell-wrapper header .wfnmockshell-top-item.active-top .wfnmockshell-top-item--button{filter:none}.wfnmockshell-wrapper header .wfnmockshell-top-item.active-top .wfnmockshell-top-label-wrapper{filter:drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2))}.wfnmockshell-wrapper header .wfnmockshell-top-item.active-top .wfnmockshell-top-item--wrapper{display:block}.wfnmockshell-wrapper header .wfnmockshell-top-item.large-top-item{width:140px}.wfnmockshell-wrapper header .wfnmockshell-top-item.large-top-item .wfnmockshell-top-item--wrapper-dart{border-right:70px solid rgba(0,0,0,0);border-left:70px solid rgba(0,0,0,0)}.wfnmockshell-wrapper header .wfnmockshell-top-item.large-top-item .wfnmockshell-collapsed .wfnmockshell-sub{margin-left:70px}.wfnmockshell-wrapper header .wfnmockshell-top-item.x-large-top-item{width:180px}.wfnmockshell-wrapper header .wfnmockshell-top-item.x-large-top-item .wfnmockshell-top-item--wrapper-dart{border-right:90px solid rgba(0,0,0,0);border-left:90px solid rgba(0,0,0,0)}.wfnmockshell-wrapper header .wfnmockshell-top-item.x-large-top-item .wfnmockshell-collapsed .wfnmockshell-sub{margin-left:90px}.wfnmockshell-wrapper header .wfnmockshell-top-item.has-checkbox .wfnmockshell-top-label-wrapper{justify-content:center}.wfnmockshell-wrapper header .wfnmockshell-top-item.has-checkbox .wfnmockshell-top-label-wrapper .wfnmockshell-top-item--button{width:auto}.wfnmockshell-wrapper header .wfnmockshell-sub{max-height:0;overflow:hidden;margin-left:55px;font-size:16px;color:var(--black);border-radius:0 0 20px 20px;background:var(--white);flex-direction:column;width:300px;transition:width .25s ease-in-out,max-height .25s linear;box-shadow:0 6px 8px 0 rgba(0,0,0,.2)}.wfnmockshell-wrapper header .wfnmockshell-sub.wfnmockshell-sub-right-align{margin-left:-245px}.wfnmockshell-wrapper header .wfnmockshell-sub.expand-nav.has-active-level3-item{width:600px}.wfnmockshell-wrapper header .wfnmockshell-sub-title-wrapper{display:flex;justify-content:flex-end;align-items:flex-start;flex-direction:column;height:60px;margin:10px 25px 0;padding:0 25px 5px 25px;border-bottom:1px solid var(--black)}.wfnmockshell-wrapper header .wfnmockshell-sub-title-wrapper .wfnmockshell-sub-item-title-buttons button{padding:0}.wfnmockshell-wrapper header .wfnmockshell-sub-title-wrapper .wfnmockshell-sub-item-title-buttons button:first-child{margin-left:0}.wfnmockshell-wrapper header .wfnmockshell-sub-title--title{color:var(--black);font-weight:600;font-size:18px;text-transform:var(--text-transform)}.wfnmockshell-wrapper header .wfnmockshell-sub-title--icon{font-size:var(--font-size-h2)}.wfnmockshell-wrapper header .wfnmockshell-sub-items{position:relative;padding:20px 0 10px 25px;min-height:160px;min-width:300px}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button{display:inline-block;position:relative;height:40px;width:252px;padding:0 0 0 25px;white-space:nowrap;text-align:left;font-size:18px;font-weight:300;color:var(--black)}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button-content{display:flex;justify-content:flex-start;align-items:center;width:100%;height:100%}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button-content-text{display:flex;justify-content:center;align-items:flex-start;flex-direction:column;min-width:0;max-height:100%}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button-content-text .wfnmockshell-sub-item-button-content-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;height:100%;width:100%}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button-content-text .wfnmockshell-features-selected{font-size:var(--font-size-small);color:var(--neutral-darker)}.wfnmockshell-wrapper header .wfnmockshell-sub-item--button-dart{display:none;position:absolute;right:0;height:0;width:0;border-left:23px solid var(--accent-0-lighter);border-top:20px solid rgba(0,0,0,0);border-right:0;border-bottom:20px solid rgba(0,0,0,0)}.wfnmockshell-wrapper header .wfnmockshell-sub-item.active-sub .wfnmockshell-sub-item--button{background-color:var(--accent-0-lighter)}.wfnmockshell-wrapper header .wfnmockshell-sub-item.active-sub .wfnmockshell-sub-item--button-dart{display:inline-block}.wfnmockshell-wrapper header .wfnmockshell-sub-expand{display:flex;justify-content:flex-start;align-items:center;height:40px;margin:0 0 20px 25px;padding:0 0 0 25px;color:var(--accent-0-dark);font-size:var(--font-size-small);font-weight:400;cursor:pointer}.wfnmockshell-wrapper header .wfnmockshell-sub-expand--title{margin-left:5px}.wfnmockshell-wrapper header .wfnmockshell-sub-collapse{display:flex;justify-content:center;align-items:center;height:40px;color:var(--accent-0-dark);font-size:var(--font-size-small);font-weight:400;cursor:pointer}.wfnmockshell-wrapper header .wfnmockshell-sub-collapse--button{width:215px;height:40px;display:flex;justify-content:center;align-items:center;border:1px solid var(--accent-0-dark);border-radius:20px 20px 0 0}.wfnmockshell-wrapper header .wfnmockshell-sub-collapse--button:hover{color:var(--white);background-color:var(--accent-0-dark)}.wfnmockshell-wrapper header .wfnmockshell-sub-collapse--title{margin-left:5px}.wfnmockshell-wrapper header .wfnmockshell-sub.mdf-mock-shell-wfnmockshell-slide-down{max-height:1450px}.wfnmockshell-wrapper header .wfnmockshell-sub-container{display:flex}.wfnmockshell-wrapper header .wfnmockshell-level3-item{display:none;height:auto;left:300px;width:300px;background:var(--white)}.wfnmockshell-wrapper header .wfnmockshell-level3-item.active-level3-item{display:inline-block}.wfnmockshell-wrapper header .wfnmockshell-level3-item-list{padding:20px 20px 20px 25px;display:flex;flex-direction:column;flex-wrap:nowrap;flex-grow:1}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail{display:flex;align-items:flex-start;padding-bottom:5px}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail.single-line{align-items:center}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail.single-line .vdl-checkbox{padding-top:0}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .vdl-checkbox{padding-top:5px}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail-text{min-width:0}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail-text button{max-width:100%}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .wfnmockshell-features-selected-detail{display:flex}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .wfnmockshell-features-selected-detail button{text-transform:none;font-size:var(--font-size-small);margin:-4px 0 0 -4px}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .wfnmockshell-features-selected-detail .wfnmockshell-features-selected{font-size:var(--font-size-small);color:var(--neutral-darker);min-width:0;display:flex}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .wfnmockshell-features-selected-detail .wfnmockshell-features-selected-divisor{margin-right:5px}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail .wfnmockshell-features-selected-detail .wfnmockshell-features-selected-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail--button{white-space:nowrap;font-size:var(--font-size-base);font-weight:600;color:var(--link-color);padding:0;justify-self:flex-start;text-overflow:ellipsis;overflow:hidden;min-width:0}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail--favorite,.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail--unfavorite{visibility:hidden;flex:0 0 18px;justify-self:flex-end;color:var(--neutral);padding:5px 0;line-height:1.1}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail--favorite.is-favorite{visibility:visible;color:var(--accent-5)}.wfnmockshell-wrapper header .wfnmockshell-level3-item-detail:hover .wfnmockshell-level3-item-detail--button{color:var(--accent-0)}}@media only screen and (max-width: 900px){.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item--title{font-size:14px !important}.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-level3-item-item--button{font-size:var(--font-size-small)}}@media only screen and (min-width: 900px){.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item--title{font-size:var(--font-size-medium)}}@media only screen and (max-width: 1200px){.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub,.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-favorites .wfnmockshell-sub{width:100vw}}@media only screen and (min-width: 1200px){.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub,.wfnmockshell-wrapper .wfnmockshell-top-item--wrapper.wfnmockshell-favorites .wfnmockshell-sub{width:1200px}}.wfnmockshell-wrapper .wfnmockshell-search{background-color:var(--white);border:1px solid var(--neutral-light);color:var(--black);display:flex;flex:0 1 250px;height:40px;justify-content:space-between;margin:0;min-width:0;padding:0 5px;position:relative;white-space:nowrap}.wfnmockshell-wrapper .wfnmockshell-search #searchBox{font-style:italic}.wfnmockshell-wrapper .wfnmockshell-search #searchClose{color:var(--neutral-dark);font-size:24px;padding:5px 0 0 0}.wfnmockshell-wrapper .wfnmockshell-search input{border:none}.wfnmockshell-wrapper .wfnmockshell-search input::placeholder{color:var(--neutral-dark)}.wfnmockshell-wrapper .wfnmockshell-search input:placeholder-shown{text-overflow:ellipsis}.wfnmockshell-wrapper .wfnmockshell-search .vdl-checkbox{display:flex;justify-content:center;align-items:center}@media(max-width: 900px){.wfnmockshell-wrapper .wfnmockshell-search{display:none}}.wfnmockshell-wrapper #searchBox{background-color:var(--white);border:0;box-shadow:none;color:var(--neutral-darker);flex:1 1 0;font-size:var(--font-size-base);font-weight:400;height:100%;padding:0;width:100%}.wfnmockshell-wrapper #magnifyingGlass{color:var(--neutral-darker);font-size:20px;width:26px}.wfnmockshell-wrapper.wfnmockshell-popover{margin-left:3px}.wfnmockshell-wrapper.wfnmockshell-popover.mdf-popup-dialog .popup-dialog-content .popup-dialog-header,.wfnmockshell-wrapper.wfnmockshell-popover.mdf-popup-dialog-left .popup-dialog-content .popup-dialog-header{display:flex}.wfnmockshell-wrapper.wfnmockshell-popover.mdf-popup-dialog .popup-dialog-content .popup-dialog-header .popup-dialog-title,.wfnmockshell-wrapper.wfnmockshell-popover.mdf-popup-dialog-left .popup-dialog-content .popup-dialog-header .popup-dialog-title{font-size:var(--font-size-medium)}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-instructional-text{margin-top:0;margin-bottom:5px;font-size:var(--font-size-base)}.wfnmockshell-wrapper.wfnmockshell-popover.popover-hidden{display:none !important}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-nav{display:flex;justify-content:space-between}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-nav .nav-hidden{visibility:hidden}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-intructions{font-weight:bold;margin-bottom:15px}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested{margin-left:25px}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level3{margin-left:50px}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level4{margin-left:25px}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level4{display:flex;align-items:center;padding:5px 0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level4 .vdl-checkbox{display:flex}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level4 .vdl-checkbox label{margin-top:0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level4 .label-wrapper{align-self:flex-end;font-size:var(--font-size-base)}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item,.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested{display:flex;align-items:center;padding:5px 0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item .vdl-checkbox,.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested .vdl-checkbox{display:flex}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item .vdl-checkbox label,.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested .vdl-checkbox label{margin-top:0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item .label-wrapper,.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested .label-wrapper{align-self:flex-end;font-size:var(--font-size-base)}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level3 .level3-item{display:flex;align-items:center;padding:5px 0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level3 .level3-item .vdl-checkbox{display:flex}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level3 .level3-item .vdl-checkbox label{margin-top:0}.wfnmockshell-wrapper.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested-level3 .level3-item .label-wrapper{align-self:flex-end;font-size:var(--font-size-base)}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar{height:60px}@media only screen and (max-width: 1px){.wfnmockshell-wrapper .wfn-mock-shell-icon-bar{display:none}.wfn-mob-peek .wfnmockshell-wrapper .wfn-mock-shell-icon-bar,.wfn-mob-show .wfnmockshell-wrapper .wfn-mock-shell-icon-bar{display:block}}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar--icons{display:flex;justify-content:flex-end;height:100%}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar--icon{position:relative;display:flex;flex-direction:column;min-width:40px;align-items:center;justify-content:center}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar i{cursor:pointer;font-size:18px;color:var(--neutral-dark)}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar i:hover{color:var(--accent-0-dark)}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar--icon-text{font-size:10px;color:var(--neutral-dark);margin-top:3px;text-transform:var(--text-transform);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar-item-outer{display:flex}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar-item-inner{display:flex;justify-self:center;align-items:center;padding-right:25px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar-item-inner .vdl-checkbox{width:20px;margin-right:10px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar-item-logout{display:flex;justify-self:center;align-items:center;margin-right:20px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user{display:flex;align-items:center;position:relative;font-size:12px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user .vdl-checkbox{display:flex}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar{margin-right:12px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar:hover,.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar:active{color:var(--white)}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar--disabled{margin-right:12px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--name{color:var(--link-color);white-space:nowrap;max-width:200px;text-overflow:ellipsis;text-transform:var(--text-transform);font-size:10px;overflow:hidden}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--name span{font-size:10px;font-weight:400;color:var(--accent-0);padding-left:10px}.wfnmockshell-wrapper .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--disabled{cursor:unset}.wfnmockshell-wrapper .wfnmockshell-footer{background-color:var(--white);width:100%;padding:10px 15px;font-size:12px;border-top:1px solid var(--neutral);margin:0;position:relative;display:flex;justify-content:space-between}@media only screen and (max-width: 1px){.wfnmockshell-wrapper .wfnmockshell-footer{display:none}}.wfnmockshell-wrapper .wfnmockshell-footer a{color:var(--link-color);text-decoration:none}.wfnmockshell-wrapper .wfnmockshell-footer a:hover{text-decoration:underline}.wfnmockshell-wrapper .wfnmockshell-footer .wfn-footer-nav{display:flex;color:var(--link-color)}.wfnmockshell-wrapper .wfnmockshell-footer .wfn-footer-nav .wfn-footer-item{display:flex;align-items:center;margin:0 10px}.wfnmockshell-wrapper .wfnmockshell-footer .wfn-footer-nav .wfn-footer-item:first-of-type{margin-left:0}.wfnmockshell-wrapper .wfnmockshell-footer .wfn-footer-nav .wfn-footer-item .vdl-checkbox{display:flex}.wfnmockshell-wrapper .wfnmockshell-footer-copyright{display:inline-block;color:var(--neutral-dark)}.wfnmockshell-wrapper .wfnmockshell-footer .oo_icon_wfn_gif{vertical-align:middle;display:inline-block;position:static}.wfnmockshell-wrapper .wfnmockshell-footer .revitNavBar{padding:0}.wfnmockshell-wrapper .wfnmockshell-footer .revitNavBar .revitNavItem{padding:0;margin:0;position:static}.wfnmockshell-wrapper .wfnmockshell-footer .revitNavBar .revitNavItem .dijitButtonText{text-transform:capitalize;font-size:var(--font-size-small);font-weight:300}.wfnmockshell-wrapper .wfnmockshell-footer .revitNavBar .revitNavItem .dijitButtonText:hover{text-decoration:underline}.mockShell-unified-shell main{min-height:500px;background-color:var(--white)}@media only screen and (min-width: 1px),print{.mockShell-unified-shell header button{font-family:var(--font-family-base)}.mockShell-unified-shell header .wfn-masthead .wfn-logo{margin-top:10px;font-size:20px;color:var(--white)}.mockShell-unified-shell header .wfnmockshell-toolbar{background:var(--accent-0-darkest);display:flex;justify-content:space-between;align-items:center;padding:0 30px;position:relative}.mockShell-unified-shell header .wfnmockshell-mega-menu{background:var(--white)}.mockShell-unified-shell header .wfnmockshell-top-item--button{padding:0;line-height:40px;text-transform:var(--text-transform);letter-spacing:.05em;color:var(--black);width:100%;font-size:var(--font-size-small);font-weight:400}.mockShell-unified-shell header .wfnmockshell-top-item--button:hover{cursor:pointer}.mockShell-unified-shell header .wfnmockshell-top-item--button.has-favorites{color:var(--accent-5)}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper-dart{position:relative;border-top:0px;border-bottom:5px solid var(--accent-0-dark);border-right:0px;border-left:0px;content:"";filter:drop-shadow(0 7px 4px rgba(0, 0, 0, 0.2))}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-title-wrapper{height:50px;margin-top:-20px}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item{margin-bottom:0px}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub-item-title-content{border-bottom:none;margin-bottom:5px}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail{display:flex}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail .wfnmockshell-button-edit-options{text-transform:none;font-size:var(--font-size-small);margin:-4px 0 0 -4px;color:var(--link-color)}.mockShell-unified-shell header .wfnmockshell-top-item--wrapper.wfnmockshell-expanded .wfnmockshell-sub .wfnmockshell-features-selected-detail .wfnmockshell-features-selected{font-size:var(--font-size-small);color:var(--neutral-darker)}.mockShell-unified-shell header .wfnmockshell-top-item .wfnmockshell-top-label-wrapper{margin:0 .25rem 0 .25rem}.mockShell-unified-shell header .wfnmockshell-top-item .wfnmockshell-top-label-wrapper:hover{cursor:pointer;background:var(--neutral-light);border-radius:.25rem}.mockShell-unified-shell header .wfnmockshell-top-item.large-top-item .wfnmockshell-top-item--wrapper-dart{border-right:0px;border-left:0px}.mockShell-unified-shell header .wfnmockshell-top-item.x-large-top-item .wfnmockshell-top-item--wrapper-dart{border-right:0px;border-left:0px}.mockShell-unified-shell header .wfnmockshell-top-item.active-top .wfnmockshell-top-item--button,.mockShell-unified-shell header .wfnmockshell-top-item.active-top .wfnmockshell-top-label-wrapper{background-color:var(--neutral-light)}.mockShell-unified-shell header .wfnmockshell-top-item.active-top .wfnmockshell-top-label-wrapper{filter:none}.mockShell-unified-shell header .wfnmockshell-sub-title-wrapper{border-bottom:none}.mockShell-unified-shell header .wfnmockshell-sub-container{margin-top:-20px}.mockShell-unified-shell header .wfnmockshell-sub-items{position:relative;padding:20px 0 30px 25px;min-height:160px;min-width:300px}.mockShell-unified-shell header .wfnmockshell-sub-item.active-sub .wfnmockshell-sub-item--button{background-color:var(--accent-0-lighter)}.mockShell-unified-shell header .wfnmockshell-sub-item.active-sub .wfnmockshell-sub-item--button-dart{display:inline-block}.mockShell-unified-shell header .wfnmockshell-sub.mdf-mock-shell-wfnmockshell-slide-down{max-height:1450px}.mockShell-unified-shell header .wfnmockshell-sub-container{display:flex}.mockShell-unified-shell header .wfnmockshell-level3-item-detail{display:flex;align-items:flex-start;padding:0px 0px 5px 10px}.mockShell-unified-shell header .wfnmockshell-level3-item-detail--button{display:block;max-width:100%;color:var(--black);border-radius:0;border:none;text-transform:none;white-space:nowrap;font-size:var(--font-size-base);font-weight:300;padding:0;text-transform:none;justify-self:flex-start;text-overflow:ellipsis;overflow:hidden;min-width:0}.mockShell-unified-shell header .wfnmockshell-level3-item-detail:hover{border:none;box-shadow:none;background-color:var(--neutral-light);border-radius:0;text-transform:none}.mockShell-unified-shell header .wfnmockshell-level3-item-detail:hover .wfnmockshell-level3-item-detail--button{color:var(--black);background-color:var(--neutral-light);text-transform:none;border:none;box-shadow:none;border-radius:0}}.mockShell-unified-shell.wfnmockshell-popover{margin-left:3px}.mockShell-unified-shell.wfnmockshell-popover.mdf-popup-dialog .popup-dialog-content .popup-dialog-header,.mockShell-unified-shell.wfnmockshell-popover.mdf-popup-dialog-left .popup-dialog-content .popup-dialog-header{display:flex}.mockShell-unified-shell.wfnmockshell-popover.mdf-popup-dialog .popup-dialog-content .popup-dialog-header .popup-dialog-title,.mockShell-unified-shell.wfnmockshell-popover.mdf-popup-dialog-left .popup-dialog-content .popup-dialog-header .popup-dialog-title{font-size:var(--font-size-medium)}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-instructional-text{margin-top:0;margin-bottom:5px;font-size:var(--font-size-base)}.mockShell-unified-shell.wfnmockshell-popover.popover-hidden{display:none !important}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-nav{display:flex;justify-content:space-between}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-nav .nav-hidden{visibility:hidden}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-detail{display:block}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-detail-intructions{font-weight:bold;margin-bottom:15px}.mockShell-unified-shell.wfnmockshell-popover .wfnmockshell-popover-detail-item-nested{margin-left:25px}.mockShell-unified-shell .wfn-mock-shell-icon-bar{height:60px}@media only screen and (max-width: 1px){.mockShell-unified-shell .wfn-mock-shell-icon-bar{display:none}.wfn-mob-peek .mockShell-unified-shell .wfn-mock-shell-icon-bar,.wfn-mob-show .mockShell-unified-shell .wfn-mock-shell-icon-bar{display:block}}.mockShell-unified-shell .wfn-mock-shell-icon-bar--icons{display:flex;justify-content:flex-end;height:100%}.mockShell-unified-shell .wfn-mock-shell-icon-bar--icon{position:relative;display:flex;flex-direction:column;min-width:40px;align-items:center;justify-content:center}.mockShell-unified-shell .wfn-mock-shell-icon-bar i{cursor:pointer;font-size:18px;color:var(--white)}.mockShell-unified-shell .wfn-mock-shell-icon-bar i:hover{color:var(--accent-0-lighter)}.mockShell-unified-shell .wfn-mock-shell-icon-bar--icon-text{font-size:var(--font-size-xsmall);color:var(--white);margin-top:3px;text-transform:var(--text-transform);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.mockShell-unified-shell .wfn-mock-shell-icon-bar-item-outer{display:flex}.mockShell-unified-shell .wfn-mock-shell-icon-bar-item-inner{display:flex;justify-self:center;align-items:center;padding-right:25px}.mockShell-unified-shell .wfn-mock-shell-icon-bar-item-inner .vdl-checkbox{width:20px;margin-right:10px}.mockShell-unified-shell .wfn-mock-shell-icon-bar-item-logout{display:flex;justify-self:center;align-items:center;margin-right:20px}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user{display:flex;align-items:center;position:relative;font-size:12px}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user .vdl-checkbox{display:flex}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar{margin-right:12px;color:var(--white)}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar:hover,.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar:active{color:var(--accent-0-lighter)}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--avatar--disabled{margin-right:12px}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--name{color:var(--white);white-space:nowrap;max-width:200px;text-overflow:ellipsis;text-transform:var(--text-transform);font-size:10px;overflow:hidden}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--name span{font-size:10px;font-weight:400;color:var(--accent-0);padding-left:10px}.mockShell-unified-shell .wfn-mock-shell-icon-bar .wfn-mock-shell-icon-bar--user--disabled{cursor:unset}.mdf-wizard{margin:10px 0;display:flex;flex-direction:column;position:relative;padding-bottom:80px}.mdf-wizard-header{color:var(--link-color);font-size:var(--font-size-medium)}.mdf-wizard-header-prefix{padding-right:10px;font-weight:600}.mdf-wizard-header-prefix::after{content:":"}.mdf-wizard-header-progress .vdl-progress-bar__bar{background-color:var(--neutral)}.mdf-wizard-header-progress .vdl-progress-bar__percentage{height:5px}.mdf-wizard-step{display:flex;flex:1 1 auto;flex-direction:column}.mdf-wizard-footer{flex:1;display:flex}.mdf-wizard-footer-navbutton{font-size:var(--font-size-medium);flex:1;border-radius:0}@media(min-width: 980px){.mdf-wizard .mdf-snackbar{position:absolute}}.vdl-validation-error>.vdl-dropdown-list__input-container,.vdl-validation-error>.MDFSelectBox__control,textarea.vdl-validation-error,.vdl-textbox.vdl-validation-error,.vdl-dropdown-list__input-container.vdl-validation-error,.vdl-validation-error>input{border:var(--input-border-invalid) !important;color:var(--color-status-error)}.vdl-validation-error>.vdl-dropdown-list__input-container:-ms-input-placeholder,.vdl-validation-error>.MDFSelectBox__control:-ms-input-placeholder,textarea.vdl-validation-error:-ms-input-placeholder,.vdl-textbox.vdl-validation-error:-ms-input-placeholder,.vdl-dropdown-list__input-container.vdl-validation-error:-ms-input-placeholder,.vdl-validation-error>input:-ms-input-placeholder{color:var(--neutral-dark);font-style:italic}input[type=number]:invalid{border:var(--input-border-invalid) !important;color:var(--color-status-error) !important}.vdl-validation-error>.mdf-mobile-picker__input::before{color:var(--color-status-error) !important}.mdf-required-indicator{color:var(--accent-6);margin-left:3px}.mdf .vdl-popover.validate-popover.bottom .arrow{border-bottom-color:var(--color-status-error)}.mdf .vdl-popover.validate-popover{background:var(--accent-6-lightest);border:1px solid var(--color-status-error);border-radius:5px;box-shadow:0 2px 8px 2px rgba(0,0,0,.2);height:auto;max-width:385px}.mdf .vdl-popover.validate-popover .popover-content{color:var(--color-status-error);font-size:var(--font-size-base);font-weight:400;text-align:center}.mdf .validation-check-list__popover-content{padding:5px}.mdf .validation-check-list-heading{margin:0 0 10px;font-size:14px;font-weight:600}.mdf .validation-check-list__rules{margin:0;padding:0}.mdf .validation-check-list__rule{list-style:none;font-size:14px;font-weight:600;margin-bottom:3px}.mdf .validation-check-list__rule--success{color:var(--accent-1-dark)}.mdf .validation-check-list__rule--error{color:var(--color-status-error)}.mdf .validation-check-list__rule:last-child{margin-bottom:0}.mdf .validation-check-list__rule-icon{display:inline-block;margin-right:5px}.mdf .mdf-verso-view{display:flex;align-items:center;flex-direction:column;width:100%;height:100%}.mdf .mdf-verso-view .mdf-verso-view-header{display:flex;align-items:center;justify-content:center;width:100%;min-height:60px;margin-bottom:10px}.mdf .mdf-verso-view .mdf-verso-view-body{position:relative;display:flex;flex-grow:1;flex-direction:column;overflow:auto;width:100%;padding-left:20px;padding-right:20px}.mdf .mdf-verso-view .mdf-verso-view-footer{display:flex;align-items:center;justify-content:center;width:100%;min-height:60px;box-shadow:0 -2px 4px 1px rgba(0,0,0,.07);background-color:var(--white)}.mdf .mdf-verso-view .mdf-verso-view-footer::after{content:"";min-height:inherit;font-size:0}.mdf-video{height:100%;width:100%}.mdf-video iframe{min-height:320px;min-width:560px}.mdf .mdf-video-mobile{display:flex;align-items:center;justify-content:center;width:480px;height:320px;border-radius:5px;border:1px solid var(--neutral-dark);background-color:var(--neutral)}.mdfView{padding:10px;background-color:var(--content-bg-color)}.mdfView .mdfNumber,.mdfView .mdfText,.mdfView .mdfDate{margin-right:1em}.mdfView .mdfCheckBox{margin-right:1em;width:auto}.mdfBox{padding:10px}.mdfInlineBlock{display:inline-block}.rtePlaceholderDialog .vdl-mdf-modal-content{margin-top:20px;min-height:100px}.rtePlaceholderDialog.rtePlaceholderDialog-tall .vdl-mdf-modal-content{min-height:305px}.insertPlaceholderContainer{display:flex;padding:5px 0 14px}.insertPlaceholderContainer button{margin-left:10px}.mdf .fr-box .fr-counter,.mdf .fr-box .fr-placeholder{color:var(--neutral-dark)}.mdf .fr-view blockquote{border-color:inherit;color:inherit}.fr-popup .fr-action-buttons button.fr-command,.fr-trim-button{font-weight:var(--button-font-weight);font-size:var(--button-font-size);text-shadow:none;text-transform:var(--button-text-transform);background-image:none;border:0;border-radius:var(--button-border-radius);box-shadow:none;height:var(--button-height);min-height:var(--button-min-height);display:inline-flex;align-items:center;justify-content:center;padding:var(--button-padding);color:var(--white);background-color:var(--button-primary-background)}.fr-popup .fr-action-buttons button.fr-command[disabled],.fr-trim-button[disabled]{background-color:var(--button-primary-disabled-background);color:var(--button-primary-disabled-color);-webkit-text-fill-color:var(--button-primary-disabled-color)}.fr-popup .fr-action-buttons button.fr-command:focus:not([disabled]),.fr-popup .fr-action-buttons button.fr-command:active:not([disabled]),.fr-trim-button:focus:not([disabled]),.fr-trim-button:active:not([disabled]){box-shadow:var(--button-focus)}.fr-popup .fr-action-buttons button.fr-command:hover:not([disabled]),.fr-trim-button:hover:not([disabled]){color:var(--white);background-color:var(--button-primary-hover)}.fr-toolbar .fr-popup .fr-action-buttons button.fr-command:focus{color:var(--white);background-color:var(--button-primary-background)}.fr-desktop .fr-command:active,.fr-desktop .fr-command:hover:not(.fr-table-cell),.fr-desktop .fr-command:focus:not(.fr-table-cell),.fr-desktop .fr-command.fr-btn-hover:not(.fr-table-cell),.fr-desktop .fr-command.fr-expanded:not(.fr-table-cell),.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.fr-toolbar .fr-popup .fr-buttons.fr-tabs{background:var(--neutral-dark-mid)}.fr-toolbar .fr-command.fr-btn.fr-disabled{cursor:not-allowed}.fr-desktop .fr-command.fr-disabled:hover{background:rgba(0,0,0,0)}.fr-toolbar .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path{fill:var(--button-primary-background)}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{border:2px solid var(--list-option-focus-border);background-color:var(--accent-0-lighter)}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:hover{background:var(--neutral-dark-mid)}.fr-popup .fr-table-size .fr-select-table-size>span.hover>span{border:1px solid var(--list-option-focus-border);background-color:var(--accent-0-dark)}.fr-plugins-cancel{color:var(--button-secondary-text-color);background-color:var(--button-secondary-background);border:2px solid var(--button-secondary-border-color)}.fr-plugins-cancel[disabled]{background-color:var(--button-secondary-disabled-background);color:var(--button-secondary-disabled-color);-webkit-text-fill-color:var(--button-secondary-disabled-color);border:var(--button-disabled-border);box-shadow:var(--button-secondary-disabled-boxShadow)}.fr-plugins-cancel:focus:not([disabled]),.fr-plugins-cancel:active:not([disabled]){box-shadow:var(--button-focus)}.fr-plugins-cancel:hover:not([disabled]){background-color:var(--button-secondary-hover-background);border:2px solid var(--button-secondary-hover-border);color:var(--button-secondary-hover-color)}.fr-popup .fr-input-line input[type=text]{width:100%;display:inline-block;margin-bottom:5px;font-family:var(--font-family-base);font-weight:400;font-size:var(--font-size-base);box-shadow:none;border-radius:var(--input-border-radius);outline:0 none;padding:10px;appearance:none;background-color:var(--white);border:var(--input-border);height:var(--form-input-height);box-sizing:border-box;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.fr-popup .fr-input-line input[type=text]:-ms-input-placeholder{color:var(--neutral-dark);font-style:italic}.fr-popup .fr-input-line input[type=text]::placeholder{color:var(--neutral-dark);font-style:italic}.fr-popup .fr-input-line input[type=text]:focus{outline:0;border:var(--input-border);box-shadow:var(--input-focus)}.fr-popup .fr-input-line input[type=text]:focus::placeholder{color:var(--neutral-dark)}.fr-popup .fr-input-line input[type=text]:hover{border:var(--input-border-hover)}.fr-popup .fr-input-line input[type=text][disabled]{background-color:var(--neutral-disabled);border:var(--input-border-disabled);color:var(--neutral-darker);cursor:not-allowed}.fr-popup .fr-input-line input[type=text][disabled]::placeholder{color:var(--neutral-dark)}.fr-popup .fr-input-line input+label,.fr-popup .fr-input-line input.fr-not-empty+label{color:var(--neutral-dark)}.fr-popup .fr-checkbox input+span{border-radius:var(--checkbox-border-radius)}.fr-popup .fr-checkbox input:not(:checked):focus+span,.fr-popup .fr-checkbox input:not(:checked)+span{border:var(--input-border)}.fr-popup .fr-checkbox input:checked:not([disabled])+span{background:var(--checkbox-background-color);border:2px solid #324fa5}.fr-popup .fr-checkbox input[type=checkbox]:focus+span{box-shadow:var(--checkbox-box-shadow)}.mdf .fr-popup .fr-color-set>span .fr-selected-color{line-height:20px;top:6px;bottom:auto;right:auto;left:6px;background:var(--black);width:20px;border-radius:50%}iframe.fr-iframe{min-height:100px}.mdf div.font-color-base,.mdf span.font-color-base,.mdf sdf-box.font-color-base{color:var(--black)}.mdf div.link-color,.mdf span.link-color,.mdf sdf-box.link-color{color:var(--link-color);fill:var(--link-color)}.mdf div.link-color-bg,.mdf span.link-color-bg,.mdf sdf-box.link-color-bg{background-color:var(--link-color);fill:var(--link-color)}.mdf div.neutral-lightest,.mdf span.neutral-lightest,.mdf sdf-box.neutral-lightest{color:var(--neutral-lightest);fill:var(--neutral-lightest);stroke:var(--neutral-lightest)}.mdf div.neutral-lighter,.mdf span.neutral-lighter,.mdf sdf-box.neutral-lighter{color:var(--neutral-lighter);fill:var(--neutral-lighter);stroke:var(--neutral-lighter)}.mdf div.neutral-light,.mdf span.neutral-light,.mdf sdf-box.neutral-light{color:var(--neutral-light);fill:var(--neutral-light);stroke:var(--neutral-light)}.mdf div.neutral,.mdf span.neutral,.mdf sdf-box.neutral{color:var(--neutral);fill:var(--neutral);stroke:var(--neutral)}.mdf div.neutral-mid,.mdf span.neutral-mid,.mdf sdf-box.neutral-mid{color:var(--neutral-mid);fill:var(--neutral-mid);stroke:var(--neutral-mid)}.mdf div.neutral-dark,.mdf span.neutral-dark,.mdf sdf-box.neutral-dark{color:var(--neutral-dark);fill:var(--neutral-dark);stroke:var(--neutral-dark)}.mdf div.neutral-darker,.mdf span.neutral-darker,.mdf sdf-box.neutral-darker{color:var(--neutral-darker);fill:var(--neutral-darker);stroke:var(--neutral-darker)}.mdf div.neutral-disabled,.mdf span.neutral-disabled,.mdf sdf-box.neutral-disabled{color:var(--neutral-disabled);fill:var(--neutral-disabled)}.mdf div.neutral-lightest-bg,.mdf span.neutral-lightest-bg,.mdf sdf-box.neutral-lightest-bg{background-color:var(--neutral-lightest);fill:var(--neutral-lightest)}.mdf div.neutral-lighter-bg,.mdf span.neutral-lighter-bg,.mdf sdf-box.neutral-lighter-bg{background-color:var(--neutral-lighter);fill:var(--neutral-lighter)}.mdf div.neutral-light-bg,.mdf span.neutral-light-bg,.mdf sdf-box.neutral-light-bg{background-color:var(--neutral-light);fill:var(--neutral-light)}.mdf div.neutral-bg,.mdf span.neutral-bg,.mdf sdf-box.neutral-bg{background-color:var(--neutral);fill:var(--neutral)}.mdf div.neutral-mid-bg,.mdf span.neutral-mid-bg,.mdf sdf-box.neutral-mid-bg{background-color:var(--neutral-mid);fill:var(--neutral-mid)}.mdf div.neutral-dark-bg,.mdf span.neutral-dark-bg,.mdf sdf-box.neutral-dark-bg{background-color:var(--neutral-dark);fill:var(--neutral-dark)}.mdf div.neutral-darker-bg,.mdf span.neutral-darker-bg,.mdf sdf-box.neutral-darker-bg{background-color:var(--neutral-darker);fill:var(--neutral-darker)}.mdf div.accent-0-lightest,.mdf span.accent-0-lightest,.mdf sdf-box.accent-0-lightest{color:var(--accent-0-lightest);fill:var(--accent-0-lightest);stroke:var(--accent-0-lightest)}.mdf div.accent-0-lighter,.mdf span.accent-0-lighter,.mdf sdf-box.accent-0-lighter{color:var(--accent-0-lighter);fill:var(--accent-0-lighter);stroke:var(--accent-0-lighter)}.mdf div.accent-0-light,.mdf span.accent-0-light,.mdf sdf-box.accent-0-light{color:var(--accent-0-light);fill:var(--accent-0-light);stroke:var(--accent-0-light)}.mdf div.accent-0,.mdf span.accent-0,.mdf sdf-box.accent-0{color:var(--accent-0);fill:var(--accent-0);stroke:var(--accent-0)}.mdf div.accent-0-dark,.mdf span.accent-0-dark,.mdf sdf-box.accent-0-dark{color:var(--accent-0-dark);fill:var(--accent-0-dark);stroke:var(--accent-0-dark)}.mdf div.accent-0-darker,.mdf span.accent-0-darker,.mdf sdf-box.accent-0-darker{color:var(--accent-0-darker);fill:var(--accent-0-darker);stroke:var(--accent-0-darker)}.mdf div.accent-0-lightest-bg,.mdf span.accent-0-lightest-bg,.mdf sdf-box.accent-0-lightest-bg{background-color:var(--accent-0-lightest);fill:var(--accent-0-lightest)}.mdf div.accent-0-lighter-bg,.mdf span.accent-0-lighter-bg,.mdf sdf-box.accent-0-lighter-bg{background-color:var(--accent-0-lighter);fill:var(--accent-0-lighter)}.mdf div.accent-0-light-bg,.mdf span.accent-0-light-bg,.mdf sdf-box.accent-0-light-bg{background-color:var(--accent-0-light);fill:var(--accent-0-light)}.mdf div.accent-0-bg,.mdf span.accent-0-bg,.mdf sdf-box.accent-0-bg{background-color:var(--accent-0);fill:var(--accent-0)}.mdf div.accent-0-dark-bg,.mdf span.accent-0-dark-bg,.mdf sdf-box.accent-0-dark-bg{background-color:var(--accent-0-dark);fill:var(--accent-0-dark)}.mdf div.accent-0-darker-bg,.mdf span.accent-0-darker-bg,.mdf sdf-box.accent-0-darker-bg{background-color:var(--accent-0-darker);fill:var(--accent-0-darker)}.mdf div.accent-1-lightest,.mdf span.accent-1-lightest,.mdf sdf-box.accent-1-lightest{color:var(--accent-1-lightest);fill:var(--accent-1-lightest);stroke:var(--accent-1-lightest)}.mdf div.accent-1-lighter,.mdf span.accent-1-lighter,.mdf sdf-box.accent-1-lighter{color:var(--accent-1-lighter);fill:var(--accent-1-lighter);stroke:var(--accent-1-lighter)}.mdf div.accent-1-light,.mdf span.accent-1-light,.mdf sdf-box.accent-1-light{color:var(--accent-1-light);fill:var(--accent-1-light);stroke:var(--accent-1-light)}.mdf div.accent-1,.mdf span.accent-1,.mdf sdf-box.accent-1{color:var(--accent-1);fill:var(--accent-1);stroke:var(--accent-1)}.mdf div.accent-1-dark,.mdf span.accent-1-dark,.mdf sdf-box.accent-1-dark{color:var(--accent-1-dark);fill:var(--accent-1-dark);stroke:var(--accent-1-dark)}.mdf div.accent-1-darker,.mdf span.accent-1-darker,.mdf sdf-box.accent-1-darker{color:var(--accent-1-darker);fill:var(--accent-1-darker);stroke:var(--accent-1-darker)}.mdf div.accent-1-lightest-bg,.mdf span.accent-1-lightest-bg,.mdf sdf-box.accent-1-lightest-bg{background-color:var(--accent-1-lightest);fill:var(--accent-1-lightest)}.mdf div.accent-1-lighter-bg,.mdf span.accent-1-lighter-bg,.mdf sdf-box.accent-1-lighter-bg{background-color:var(--accent-1-lighter);fill:var(--accent-1-lighter)}.mdf div.accent-1-light-bg,.mdf span.accent-1-light-bg,.mdf sdf-box.accent-1-light-bg{background-color:var(--accent-1-light);fill:var(--accent-1-light)}.mdf div.accent-1-bg,.mdf span.accent-1-bg,.mdf sdf-box.accent-1-bg{background-color:var(--accent-1);fill:var(--accent-1)}.mdf div.accent-1-dark-bg,.mdf span.accent-1-dark-bg,.mdf sdf-box.accent-1-dark-bg{background-color:var(--accent-1-dark);fill:var(--accent-1-dark)}.mdf div.accent-1-darker-bg,.mdf span.accent-1-darker-bg,.mdf sdf-box.accent-1-darker-bg{background-color:var(--accent-1-darker);fill:var(--accent-1-darker)}.mdf div.accent-2-light,.mdf span.accent-2-light,.mdf sdf-box.accent-2-light{color:var(--accent-2-light);fill:var(--accent-2-light);stroke:var(--accent-2-light)}.mdf div.accent-2,.mdf span.accent-2,.mdf sdf-box.accent-2{color:var(--accent-2);fill:var(--accent-2);stroke:var(--accent-2)}.mdf div.accent-2-dark,.mdf span.accent-2-dark,.mdf sdf-box.accent-2-dark{color:var(--accent-2-dark);fill:var(--accent-2-dark);stroke:var(--accent-2-dark)}.mdf div.accent-2-darker,.mdf span.accent-2-darker,.mdf sdf-box.accent-2-darker{color:var(--accent-2-darker);fill:var(--accent-2-darker);stroke:var(--accent-2-darker)}.mdf div.accent-2-light-bg,.mdf span.accent-2-light-bg,.mdf sdf-box.accent-2-light-bg{background-color:var(--accent-2-light);fill:var(--accent-2-light)}.mdf div.accent-2-bg,.mdf span.accent-2-bg,.mdf sdf-box.accent-2-bg{background-color:var(--accent-2);fill:var(--accent-2)}.mdf div.accent-2-dark-bg,.mdf span.accent-2-dark-bg,.mdf sdf-box.accent-2-dark-bg{background-color:var(--accent-2-dark);fill:var(--accent-2-dark)}.mdf div.accent-2-darker-bg,.mdf span.accent-2-darker-bg,.mdf sdf-box.accent-2-darker-bg{background-color:var(--accent-2-darker);fill:var(--accent-2-darker)}.mdf div.accent-3-light,.mdf span.accent-3-light,.mdf sdf-box.accent-3-light{color:var(--accent-3-light);fill:var(--accent-3-light);stroke:var(--accent-3-light)}.mdf div.accent-3,.mdf span.accent-3,.mdf sdf-box.accent-3{color:var(--accent-3);fill:var(--accent-3);stroke:var(--accent-3)}.mdf div.accent-3-dark,.mdf span.accent-3-dark,.mdf sdf-box.accent-3-dark{color:var(--accent-3-dark);fill:var(--accent-3-dark);stroke:var(--accent-3-dark)}.mdf div.accent-3-darker,.mdf span.accent-3-darker,.mdf sdf-box.accent-3-darker{color:var(--accent-3-darker);fill:var(--accent-3-darker);stroke:var(--accent-3-darker)}.mdf div.accent-3-light-bg,.mdf span.accent-3-light-bg,.mdf sdf-box.accent-3-light-bg{background-color:var(--accent-3-light);fill:var(--accent-3-light)}.mdf div.accent-3-bg,.mdf span.accent-3-bg,.mdf sdf-box.accent-3-bg{background-color:var(--accent-3);fill:var(--accent-3)}.mdf div.accent-3-dark-bg,.mdf span.accent-3-dark-bg,.mdf sdf-box.accent-3-dark-bg{background-color:var(--accent-3-dark);fill:var(--accent-3-dark)}.mdf div.accent-3-darker-bg,.mdf span.accent-3-darker-bg,.mdf sdf-box.accent-3-darker-bg{background-color:var(--accent-3-darker);fill:var(--accent-3-darker)}.mdf div.accent-4-light,.mdf span.accent-4-light,.mdf sdf-box.accent-4-light{color:var(--accent-4-light);fill:var(--accent-4-light);stroke:var(--accent-4-light)}.mdf div.accent-4,.mdf span.accent-4,.mdf sdf-box.accent-4{color:var(--accent-4);fill:var(--accent-4);stroke:var(--accent-4)}.mdf div.accent-4-dark,.mdf span.accent-4-dark,.mdf sdf-box.accent-4-dark{color:var(--accent-4-dark);fill:var(--accent-4-dark);stroke:var(--accent-4-dark)}.mdf div.accent-4-darker,.mdf span.accent-4-darker,.mdf sdf-box.accent-4-darker{color:var(--accent-4-darker);fill:var(--accent-4-darker);stroke:var(--accent-4-darker)}.mdf div.accent-4-light-bg,.mdf span.accent-4-light-bg,.mdf sdf-box.accent-4-light-bg{background-color:var(--accent-4-light);fill:var(--accent-4-light)}.mdf div.accent-4-bg,.mdf span.accent-4-bg,.mdf sdf-box.accent-4-bg{background-color:var(--accent-4);fill:var(--accent-4)}.mdf div.accent-4-dark-bg,.mdf span.accent-4-dark-bg,.mdf sdf-box.accent-4-dark-bg{background-color:var(--accent-4-dark);fill:var(--accent-4-dark)}.mdf div.accent-4-darker-bg,.mdf span.accent-4-darker-bg,.mdf sdf-box.accent-4-darker-bg{background-color:var(--accent-4-darker);fill:var(--accent-4-darker)}.mdf div.accent-5-lightest,.mdf span.accent-5-lightest,.mdf sdf-box.accent-5-lightest{color:var(--accent-5-lightest);fill:var(--accent-5-lightest);stroke:var(--accent-5-lightest)}.mdf div.accent-5-lighter,.mdf span.accent-5-lighter,.mdf sdf-box.accent-5-lighter{color:var(--accent-5-lighter);fill:var(--accent-5-lighter);stroke:var(--accent-5-lighter)}.mdf div.accent-5-light,.mdf span.accent-5-light,.mdf sdf-box.accent-5-light{color:var(--accent-5-light);fill:var(--accent-5-light);stroke:var(--accent-5-light)}.mdf div.accent-5,.mdf span.accent-5,.mdf sdf-box.accent-5{color:var(--accent-5);fill:var(--accent-5);stroke:var(--accent-5)}.mdf div.accent-5-dark,.mdf span.accent-5-dark,.mdf sdf-box.accent-5-dark{color:var(--accent-5-dark);fill:var(--accent-5-dark);stroke:var(--accent-5-dark)}.mdf div.accent-5-darker,.mdf span.accent-5-darker,.mdf sdf-box.accent-5-darker{color:var(--accent-5-darker);fill:var(--accent-5-darker);stroke:var(--accent-5-darker)}.mdf div.accent-5-lightest-bg,.mdf span.accent-5-lightest-bg,.mdf sdf-box.accent-5-lightest-bg{background-color:var(--accent-5-lightest);fill:var(--accent-5-lightest)}.mdf div.accent-5-lighter-bg,.mdf span.accent-5-lighter-bg,.mdf sdf-box.accent-5-lighter-bg{background-color:var(--accent-5-lighter);fill:var(--accent-5-lighter)}.mdf div.accent-5-light-bg,.mdf span.accent-5-light-bg,.mdf sdf-box.accent-5-light-bg{background-color:var(--accent-5-light);fill:var(--accent-5-light)}.mdf div.accent-5-bg,.mdf span.accent-5-bg,.mdf sdf-box.accent-5-bg{background-color:var(--accent-5);fill:var(--accent-5)}.mdf div.accent-5-dark-bg,.mdf span.accent-5-dark-bg,.mdf sdf-box.accent-5-dark-bg{background-color:var(--accent-5-dark);fill:var(--accent-5-dark)}.mdf div.accent-5-darker-bg,.mdf span.accent-5-darker-bg,.mdf sdf-box.accent-5-darker-bg{background-color:var(--accent-5-darker);fill:var(--accent-5-darker)}.mdf div.accent-6-lightest,.mdf span.accent-6-lightest,.mdf sdf-box.accent-6-lightest{color:var(--accent-6-lightest);fill:var(--accent-6-lightest);stroke:var(--accent-6-lightest)}.mdf div.accent-6-lighter,.mdf span.accent-6-lighter,.mdf sdf-box.accent-6-lighter{color:var(--accent-6-lighter);fill:var(--accent-6-lighter);stroke:var(--accent-6-lighter)}.mdf div.accent-6-light,.mdf span.accent-6-light,.mdf sdf-box.accent-6-light{color:var(--accent-6-light);fill:var(--accent-6-light);stroke:var(--accent-6-light)}.mdf div.accent-6,.mdf span.accent-6,.mdf sdf-box.accent-6{color:var(--accent-6);fill:var(--accent-6);stroke:var(--accent-6)}.mdf div.accent-6-dark,.mdf span.accent-6-dark,.mdf sdf-box.accent-6-dark{color:var(--accent-6-dark);fill:var(--accent-6-dark);stroke:var(--accent-6-dark)}.mdf div.accent-6-lightest-bg,.mdf span.accent-6-lightest-bg,.mdf sdf-box.accent-6-lightest-bg{background-color:var(--accent-6-lightest);fill:var(--accent-6-lightest)}.mdf div.accent-6-lighter-bg,.mdf span.accent-6-lighter-bg,.mdf sdf-box.accent-6-lighter-bg{background-color:var(--accent-6-lighter);fill:var(--accent-6-lighter)}.mdf div.accent-6-light-bg,.mdf span.accent-6-light-bg,.mdf sdf-box.accent-6-light-bg{background-color:var(--accent-6-light);fill:var(--accent-6-light)}.mdf div.accent-6-bg,.mdf span.accent-6-bg,.mdf sdf-box.accent-6-bg{background-color:var(--accent-6);fill:var(--accent-6)}.mdf div.accent-6-dark-bg,.mdf span.accent-6-dark-bg,.mdf sdf-box.accent-6-dark-bg{background-color:var(--accent-6-dark);fill:var(--accent-6-dark)}.mdf div.accent-7-light,.mdf span.accent-7-light,.mdf sdf-box.accent-7-light{color:#eebaaa;fill:#eebaaa;stroke:#eebaaa}.mdf div.accent-7,.mdf span.accent-7,.mdf sdf-box.accent-7{color:#e49e89;fill:#e49e89;stroke:#e49e89}.mdf div.accent-7-dark,.mdf span.accent-7-dark,.mdf sdf-box.accent-7-dark{color:#a64f36;fill:#a64f36;stroke:#a64f36}.mdf div.accent-7-darker,.mdf span.accent-7-darker,.mdf sdf-box.accent-7-darker{color:#7d3520;fill:#7d3520;stroke:#7d3520}.mdf div.accent-7-light-bg,.mdf span.accent-7-light-bg,.mdf sdf-box.accent-7-light-bg{background-color:#eebaaa;fill:#eebaaa}.mdf div.accent-7-bg,.mdf span.accent-7-bg,.mdf sdf-box.accent-7-bg{background-color:#e49e89;fill:#e49e89}.mdf div.accent-7-dark-bg,.mdf span.accent-7-dark-bg,.mdf sdf-box.accent-7-dark-bg{background-color:#a64f36;fill:#a64f36}.mdf div.accent-7-darker-bg,.mdf span.accent-7-darker-bg,.mdf sdf-box.accent-7-darker-bg{background-color:#7d3520;fill:#7d3520}.mdf div.white,.mdf span.white,.mdf sdf-box.white{color:var(--white);fill:var(--white);stroke:var(--white)}.mdf div.white-bg,.mdf span.white-bg,.mdf sdf-box.white-bg{background-color:var(--white);fill:var(--white)}.mdf div.black,.mdf span.black,.mdf sdf-box.black{color:var(--black);fill:var(--black);stroke:var(--black)}.mdf div.black-bg,.mdf span.black-bg,.mdf sdf-box.black-bg{background-color:var(--black);fill:var(--black)}.mdf div.simple-font-color-base,.mdf span.simple-font-color-base,.mdf sdf-box.simple-font-color-base{color:var(--black)}.mdf div.simple-link-color,.mdf span.simple-link-color,.mdf sdf-box.simple-link-color{color:var(--link-color)}.mdf div.simple-link-color-bg,.mdf span.simple-link-color-bg,.mdf sdf-box.simple-link-color-bg{background-color:var(--link-color)}.mdf div.simple-neutral-lightest,.mdf span.simple-neutral-lightest,.mdf sdf-box.simple-neutral-lightest{color:var(--neutral-lightest)}.mdf div.simple-neutral-lighter,.mdf span.simple-neutral-lighter,.mdf sdf-box.simple-neutral-lighter{color:var(--neutral-lighter)}.mdf div.simple-neutral-light,.mdf span.simple-neutral-light,.mdf sdf-box.simple-neutral-light{color:var(--neutral-light)}.mdf div.simple-neutral,.mdf span.simple-neutral,.mdf sdf-box.simple-neutral{color:var(--neutral);stroke:none}.mdf div.simple-neutral-mid,.mdf span.simple-neutral-mid,.mdf sdf-box.simple-neutral-mid{color:var(--neutral-mid)}.mdf div.simple-neutral-dark,.mdf span.simple-neutral-dark,.mdf sdf-box.simple-neutral-dark{color:var(--neutral-dark)}.mdf div.simple-neutral-darker,.mdf span.simple-neutral-darker,.mdf sdf-box.simple-neutral-darker{color:var(--neutral-darker)}.mdf div.simple-neutral-disabled,.mdf span.simple-neutral-disabled,.mdf sdf-box.simple-neutral-disabled{color:var(--neutral-disabled)}.mdf div.simple-neutral-lightest-bg,.mdf span.simple-neutral-lightest-bg,.mdf sdf-box.simple-neutral-lightest-bg{background-color:var(--neutral-lightest)}.mdf div.simple-neutral-lighter-bg,.mdf span.simple-neutral-lighter-bg,.mdf sdf-box.simple-neutral-lighter-bg{background-color:var(--neutral-lighter)}.mdf div.simple-neutral-light-bg,.mdf span.simple-neutral-light-bg,.mdf sdf-box.simple-neutral-light-bg{background-color:var(--neutral-light)}.mdf div.simple-neutral-bg,.mdf span.simple-neutral-bg,.mdf sdf-box.simple-neutral-bg{background-color:var(--neutral)}.mdf div.simple-neutral-mid-bg,.mdf span.simple-neutral-mid-bg,.mdf sdf-box.simple-neutral-mid-bg{background-color:var(--neutral-mid)}.mdf div.simple-neutral-dark-bg,.mdf span.simple-neutral-dark-bg,.mdf sdf-box.simple-neutral-dark-bg{background-color:var(--neutral-dark)}.mdf div.simple-neutral-darker-bg,.mdf span.simple-neutral-darker-bg,.mdf sdf-box.simple-neutral-darker-bg{background-color:var(--neutral-darker)}.mdf div.simple-accent-0-lightest,.mdf span.simple-accent-0-lightest,.mdf sdf-box.simple-accent-0-lightest{color:var(--accent-0-lightest)}.mdf div.simple-accent-0-lighter,.mdf span.simple-accent-0-lighter,.mdf sdf-box.simple-accent-0-lighter{color:var(--accent-0-lighter)}.mdf div.simple-accent-0-light,.mdf span.simple-accent-0-light,.mdf sdf-box.simple-accent-0-light{color:var(--accent-0-light)}.mdf div.simple-accent-0,.mdf span.simple-accent-0,.mdf sdf-box.simple-accent-0{color:var(--accent-0)}.mdf div.simple-accent-0-dark,.mdf span.simple-accent-0-dark,.mdf sdf-box.simple-accent-0-dark{color:var(--accent-0-dark)}.mdf div.simple-accent-0-darker,.mdf span.simple-accent-0-darker,.mdf sdf-box.simple-accent-0-darker{color:var(--accent-0-darker)}.mdf div.simple-accent-0-lightest-bg,.mdf span.simple-accent-0-lightest-bg,.mdf sdf-box.simple-accent-0-lightest-bg{background-color:var(--accent-0-lightest)}.mdf div.simple-accent-0-lighter-bg,.mdf span.simple-accent-0-lighter-bg,.mdf sdf-box.simple-accent-0-lighter-bg{background-color:var(--accent-0-lighter)}.mdf div.simple-accent-0-light-bg,.mdf span.simple-accent-0-light-bg,.mdf sdf-box.simple-accent-0-light-bg{background-color:var(--accent-0-light)}.mdf div.simple-accent-0-bg,.mdf span.simple-accent-0-bg,.mdf sdf-box.simple-accent-0-bg{background-color:var(--accent-0)}.mdf div.simple-accent-0-dark-bg,.mdf span.simple-accent-0-dark-bg,.mdf sdf-box.simple-accent-0-dark-bg{background-color:var(--accent-0-dark)}.mdf div.simple-accent-0-darker-bg,.mdf span.simple-accent-0-darker-bg,.mdf sdf-box.simple-accent-0-darker-bg{background-color:var(--accent-0-darker)}.mdf div.simple-accent-1-lightest,.mdf span.simple-accent-1-lightest,.mdf sdf-box.simple-accent-1-lightest{color:var(--accent-1-lightest)}.mdf div.simple-accent-1-lighter,.mdf span.simple-accent-1-lighter,.mdf sdf-box.simple-accent-1-lighter{color:var(--accent-1-lighter)}.mdf div.simple-accent-1-light,.mdf span.simple-accent-1-light,.mdf sdf-box.simple-accent-1-light{color:var(--accent-1-light)}.mdf div.simple-accent-1,.mdf span.simple-accent-1,.mdf sdf-box.simple-accent-1{color:var(--accent-1)}.mdf div.simple-accent-1-dark,.mdf span.simple-accent-1-dark,.mdf sdf-box.simple-accent-1-dark{color:var(--accent-1-dark)}.mdf div.simple-accent-1-darker,.mdf span.simple-accent-1-darker,.mdf sdf-box.simple-accent-1-darker{color:var(--accent-1-darker)}.mdf div.simple-accent-1-lightest-bg,.mdf span.simple-accent-1-lightest-bg,.mdf sdf-box.simple-accent-1-lightest-bg{background-color:var(--accent-1-lightest)}.mdf div.simple-accent-1-lighter-bg,.mdf span.simple-accent-1-lighter-bg,.mdf sdf-box.simple-accent-1-lighter-bg{background-color:var(--accent-1-lighter)}.mdf div.simple-accent-1-light-bg,.mdf span.simple-accent-1-light-bg,.mdf sdf-box.simple-accent-1-light-bg{background-color:var(--accent-1-light)}.mdf div.simple-accent-1-bg,.mdf span.simple-accent-1-bg,.mdf sdf-box.simple-accent-1-bg{background-color:var(--accent-1)}.mdf div.simple-accent-1-dark-bg,.mdf span.simple-accent-1-dark-bg,.mdf sdf-box.simple-accent-1-dark-bg{background-color:var(--accent-1-dark)}.mdf div.simple-accent-1-darker-bg,.mdf span.simple-accent-1-darker-bg,.mdf sdf-box.simple-accent-1-darker-bg{background-color:var(--accent-1-darker)}.mdf div.simple-accent-2-light,.mdf span.simple-accent-2-light,.mdf sdf-box.simple-accent-2-light{color:var(--accent-2-light)}.mdf div.simple-accent-2,.mdf span.simple-accent-2,.mdf sdf-box.simple-accent-2{color:var(--accent-2)}.mdf div.simple-accent-2-dark,.mdf span.simple-accent-2-dark,.mdf sdf-box.simple-accent-2-dark{color:var(--accent-2-dark)}.mdf div.simple-accent-2-darker,.mdf span.simple-accent-2-darker,.mdf sdf-box.simple-accent-2-darker{color:var(--accent-2-darker)}.mdf div.simple-accent-2-light-bg,.mdf span.simple-accent-2-light-bg,.mdf sdf-box.simple-accent-2-light-bg{background-color:var(--accent-2-light)}.mdf div.simple-accent-2-bg,.mdf span.simple-accent-2-bg,.mdf sdf-box.simple-accent-2-bg{background-color:var(--accent-2)}.mdf div.simple-accent-2-dark-bg,.mdf span.simple-accent-2-dark-bg,.mdf sdf-box.simple-accent-2-dark-bg{background-color:var(--accent-2-dark)}.mdf div.simple-accent-2-darker-bg,.mdf span.simple-accent-2-darker-bg,.mdf sdf-box.simple-accent-2-darker-bg{background-color:var(--accent-2-darker)}.mdf div.simple-accent-3-light,.mdf span.simple-accent-3-light,.mdf sdf-box.simple-accent-3-light{color:var(--accent-3-light)}.mdf div.simple-accent-3,.mdf span.simple-accent-3,.mdf sdf-box.simple-accent-3{color:var(--accent-3)}.mdf div.simple-accent-3-dark,.mdf span.simple-accent-3-dark,.mdf sdf-box.simple-accent-3-dark{color:var(--accent-3-dark)}.mdf div.simple-accent-3-darker,.mdf span.simple-accent-3-darker,.mdf sdf-box.simple-accent-3-darker{color:var(--accent-3-darker)}.mdf div.simple-accent-3-light-bg,.mdf span.simple-accent-3-light-bg,.mdf sdf-box.simple-accent-3-light-bg{background-color:var(--accent-3-light)}.mdf div.simple-accent-3-bg,.mdf span.simple-accent-3-bg,.mdf sdf-box.simple-accent-3-bg{background-color:var(--accent-3)}.mdf div.simple-accent-3-dark-bg,.mdf span.simple-accent-3-dark-bg,.mdf sdf-box.simple-accent-3-dark-bg{background-color:var(--accent-3-dark)}.mdf div.simple-accent-3-darker-bg,.mdf span.simple-accent-3-darker-bg,.mdf sdf-box.simple-accent-3-darker-bg{background-color:var(--accent-3-darker)}.mdf div.simple-accent-4-light,.mdf span.simple-accent-4-light,.mdf sdf-box.simple-accent-4-light{color:var(--accent-4-light)}.mdf div.simple-accent-4,.mdf span.simple-accent-4,.mdf sdf-box.simple-accent-4{color:var(--accent-4)}.mdf div.simple-accent-4-dark,.mdf span.simple-accent-4-dark,.mdf sdf-box.simple-accent-4-dark{color:var(--accent-4-dark)}.mdf div.simple-accent-4-darker,.mdf span.simple-accent-4-darker,.mdf sdf-box.simple-accent-4-darker{color:var(--accent-4-darker)}.mdf div.simple-accent-4-light-bg,.mdf span.simple-accent-4-light-bg,.mdf sdf-box.simple-accent-4-light-bg{background-color:var(--accent-4-light)}.mdf div.simple-accent-4-bg,.mdf span.simple-accent-4-bg,.mdf sdf-box.simple-accent-4-bg{background-color:var(--accent-4)}.mdf div.simple-accent-4-dark-bg,.mdf span.simple-accent-4-dark-bg,.mdf sdf-box.simple-accent-4-dark-bg{background-color:var(--accent-4-dark)}.mdf div.simple-accent-4-darker-bg,.mdf span.simple-accent-4-darker-bg,.mdf sdf-box.simple-accent-4-darker-bg{background-color:var(--accent-4-darker)}.mdf div.simple-accent-5-lightest,.mdf span.simple-accent-5-lightest,.mdf sdf-box.simple-accent-5-lightest{color:var(--accent-5-lightest)}.mdf div.simple-accent-5-lighter,.mdf span.simple-accent-5-lighter,.mdf sdf-box.simple-accent-5-lighter{color:var(--accent-5-lighter)}.mdf div.simple-accent-5-light,.mdf span.simple-accent-5-light,.mdf sdf-box.simple-accent-5-light{color:var(--accent-5-light)}.mdf div.simple-accent-5,.mdf span.simple-accent-5,.mdf sdf-box.simple-accent-5{color:var(--accent-5)}.mdf div.simple-accent-5-dark,.mdf span.simple-accent-5-dark,.mdf sdf-box.simple-accent-5-dark{color:var(--accent-5-dark)}.mdf div.simple-accent-5-darker,.mdf span.simple-accent-5-darker,.mdf sdf-box.simple-accent-5-darker{color:var(--accent-5-darker)}.mdf div.simple-accent-5-lightest-bg,.mdf span.simple-accent-5-lightest-bg,.mdf sdf-box.simple-accent-5-lightest-bg{background-color:var(--accent-5-lightest)}.mdf div.simple-accent-5-lighter-bg,.mdf span.simple-accent-5-lighter-bg,.mdf sdf-box.simple-accent-5-lighter-bg{background-color:var(--accent-5-lighter)}.mdf div.simple-accent-5-light-bg,.mdf span.simple-accent-5-light-bg,.mdf sdf-box.simple-accent-5-light-bg{background-color:var(--accent-5-light)}.mdf div.simple-accent-5-bg,.mdf span.simple-accent-5-bg,.mdf sdf-box.simple-accent-5-bg{background-color:var(--accent-5)}.mdf div.simple-accent-5-dark-bg,.mdf span.simple-accent-5-dark-bg,.mdf sdf-box.simple-accent-5-dark-bg{background-color:var(--accent-5-dark)}.mdf div.simple-accent-5-darker-bg,.mdf span.simple-accent-5-darker-bg,.mdf sdf-box.simple-accent-5-darker-bg{background-color:var(--accent-5-darker)}.mdf div.simple-accent-6-lightest,.mdf span.simple-accent-6-lightest,.mdf sdf-box.simple-accent-6-lightest{color:var(--accent-6-lightest)}.mdf div.simple-accent-6-lighter,.mdf span.simple-accent-6-lighter,.mdf sdf-box.simple-accent-6-lighter{color:var(--accent-6-lighter)}.mdf div.simple-accent-6-light,.mdf span.simple-accent-6-light,.mdf sdf-box.simple-accent-6-light{color:var(--accent-6-light)}.mdf div.simple-accent-6,.mdf span.simple-accent-6,.mdf sdf-box.simple-accent-6{color:var(--accent-6)}.mdf div.simple-accent-6-dark,.mdf span.simple-accent-6-dark,.mdf sdf-box.simple-accent-6-dark{color:var(--accent-6-dark)}.mdf div.simple-accent-6-lightest-bg,.mdf span.simple-accent-6-lightest-bg,.mdf sdf-box.simple-accent-6-lightest-bg{background-color:var(--accent-6-lightest)}.mdf div.simple-accent-6-lighter-bg,.mdf span.simple-accent-6-lighter-bg,.mdf sdf-box.simple-accent-6-lighter-bg{background-color:var(--accent-6-lighter)}.mdf div.simple-accent-6-light-bg,.mdf span.simple-accent-6-light-bg,.mdf sdf-box.simple-accent-6-light-bg{background-color:var(--accent-6-light)}.mdf div.simple-accent-6-bg,.mdf span.simple-accent-6-bg,.mdf sdf-box.simple-accent-6-bg{background-color:var(--accent-6)}.mdf div.simple-accent-6-dark-bg,.mdf span.simple-accent-6-dark-bg,.mdf sdf-box.simple-accent-6-dark-bg{background-color:var(--accent-6-dark)}.mdf div.simple-accent-7-light,.mdf span.simple-accent-7-light,.mdf sdf-box.simple-accent-7-light{color:#eebaaa}.mdf div.simple-accent-7,.mdf span.simple-accent-7,.mdf sdf-box.simple-accent-7{color:#e49e89}.mdf div.simple-accent-7-dark,.mdf span.simple-accent-7-dark,.mdf sdf-box.simple-accent-7-dark{color:#a64f36}.mdf div.simple-accent-7-darker,.mdf span.simple-accent-7-darker,.mdf sdf-box.simple-accent-7-darker{color:#7d3520}.mdf div.simple-accent-7-light-bg,.mdf span.simple-accent-7-light-bg,.mdf sdf-box.simple-accent-7-light-bg{background-color:#eebaaa}.mdf div.simple-accent-7-bg,.mdf span.simple-accent-7-bg,.mdf sdf-box.simple-accent-7-bg{background-color:#e49e89}.mdf div.simple-accent-7-dark-bg,.mdf span.simple-accent-7-dark-bg,.mdf sdf-box.simple-accent-7-dark-bg{background-color:#a64f36}.mdf div.simple-accent-7-darker-bg,.mdf span.simple-accent-7-darker-bg,.mdf sdf-box.simple-accent-7-darker-bg{background-color:#7d3520}.mdf div.simple-white,.mdf span.simple-white,.mdf sdf-box.simple-white{color:var(--white)}.mdf div.simple-white-bg,.mdf span.simple-white-bg,.mdf sdf-box.simple-white-bg{background-color:var(--white)}.mdf div.simple-black,.mdf span.simple-black,.mdf sdf-box.simple-black{color:var(--black)}.mdf div.simple-black-bg,.mdf span.simple-black-bg,.mdf sdf-box.simple-black-bg{background-color:var(--black)}label.mdf-label-error{color:var(--accent-6)}.gu-mirror{background-color:var(--accent-0-lighter);border-bottom:1px solid var(--neutral-lighter);border-top:1px solid var(--neutral-lighter);cursor:pointer}.mdf-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.one-ux label.mdf-form-control-label{font-weight:500;font-size:var(--font-size-small);color:var(--neutral-darkest)}.one-ux label.mdf-form-control-label:-error{color:var(--accent-6)}.mdf sdf-icon,.mdf sdf-icon.hydrated{stroke:initial}.one-ux-experimental wfn-right-rail-layout sdf-box[variant=bordered]{background:var(--white)}
/*!
 * froala_editor v4.6.0 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */

.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-view img.fr-rounded,.fr-view .fr-img-caption.fr-rounded img{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view img.fr-shadow,.fr-view .fr-img-caption.fr-shadow img{-webkit-box-shadow:10px 10px 5px 0px #cccccc;-moz-box-shadow:10px 10px 5px 0px #cccccc;box-shadow:10px 10px 5px 0px #cccccc}.fr-view img.fr-bordered,.fr-view .fr-img-caption.fr-bordered img{border:solid 5px #CCC}.fr-view img.fr-bordered{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-view .fr-img-caption.fr-bordered img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-view li img.fr-dii.fr-fil{margin-right:20px}.fr-view{word-wrap:break-word}.fr-view span[style~="color:"] a{color:inherit}.fr-view strong{font-weight:700}.fr-view table[border='0'] td:not([class]),.fr-view table[border='0'] th:not([class]),.fr-view table[border='0'] td[class=""],.fr-view table[border='0'] th[class=""]{border-width:0px}.fr-view table{border:none;border-collapse:collapse;empty-cells:show;max-width:100%;margin:0px}.fr-view table td{min-width:5px}.fr-view table.fr-dashed-borders td,.fr-view table.fr-dashed-borders th{border-style:dashed}.fr-view table.fr-alternate-rows tbody tr:nth-child(2n){background:whitesmoke}.fr-view table td,.fr-view table th{border:1px solid #DDD}.fr-view table td:empty,.fr-view table th:empty{height:20px}.fr-view table td.fr-highlighted,.fr-view table th.fr-highlighted{border:1px double red}.fr-view table td.fr-thick,.fr-view table th.fr-thick{border-width:2px}.fr-view table th{background:#ececec}.fr-view table tfoot td{background:#ececec}.fr-view .fr-mso-hidden{display:none}.fr-view hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;break-after:always;page-break-after:always}.fr-view .fr-file{position:relative}.fr-view .fr-file::after{position:relative;content:"\1F4CE";font-weight:normal}.fr-view pre{white-space:pre-wrap;word-wrap:break-word;overflow:visible}.fr-view[dir="rtl"] blockquote{border-left:none;border-right:solid 2px #5E35B1;margin-right:0;padding-right:5px;padding-left:0}.fr-view[dir="rtl"] blockquote blockquote{border-color:#00BCD4}.fr-view[dir="rtl"] blockquote blockquote blockquote{border-color:#43A047}.fr-view blockquote{border-left:solid 2px #5E35B1;margin-left:0;padding-left:5px;color:#5E35B1}.fr-view blockquote blockquote{border-color:#00BCD4;color:#00BCD4}.fr-view blockquote blockquote blockquote{border-color:#43A047;color:#43A047}.fr-view span.fr-emoticon{font-weight:normal;font-family:"Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";display:inline;line-height:0}.fr-view span.fr-emoticon.fr-emoticon-img{background-repeat:no-repeat !important;font-size:inherit;height:1em;width:1em;min-height:20px;min-width:20px;display:inline-block;margin:-.1em .1em .1em;line-height:1;vertical-align:middle}.fr-view .fr-text-gray{color:#AAA !important}.fr-view .fr-text-bordered{border-top:solid 1px #222;border-bottom:solid 1px #222;padding:10px 0}.fr-view .fr-text-spaced{letter-spacing:1px}.fr-view .fr-text-uppercase{text-transform:uppercase}.fr-view .fr-class-highlighted{background-color:#ffff00}.fr-view .fr-class-code{border-color:#cccccc;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#f5f5f5;padding:10px;font-family:"Courier New", Courier, monospace}.fr-view .fr-class-transparency{opacity:0.5}.fr-view img{position:relative;max-width:100%}.fr-view img.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view img.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view img.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view img.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}.fr-view img.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}.fr-view img.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}.fr-view span.fr-img-caption{position:relative;max-width:100%}.fr-view span.fr-img-caption.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view span.fr-img-caption.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view span.fr-img-caption.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view span.fr-img-caption.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}.fr-view span.fr-img-caption.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}.fr-view span.fr-img-caption.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}.fr-view .fr-video{text-align:center;position:relative}.fr-view .fr-video.fr-rv{padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.fr-view .fr-video.fr-rv>iframe,.fr-view .fr-video.fr-rv object,.fr-view .fr-video.fr-rv embed{position:absolute !important;top:0;left:0;width:100%;height:100%}.fr-view .fr-video>*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;max-width:100%;border:none}.fr-view .fr-video.fr-dvb{display:block;clear:both}.fr-view .fr-video.fr-dvb.fr-fvl{text-align:left}.fr-view .fr-video.fr-dvb.fr-fvr{text-align:right}.fr-view .fr-video.fr-dvi{display:inline-block}.fr-view .fr-video.fr-dvi.fr-fvl{float:left}.fr-view .fr-video.fr-dvi.fr-fvr{float:right}.fr-view a.fr-strong{font-weight:700}.fr-view a.fr-green{color:green}.fr-view .fr-img-caption{text-align:center}.fr-view .fr-img-caption .fr-img-wrap{padding:0;margin:auto;text-align:center;width:100%}.fr-view .fr-img-caption .fr-img-wrap a{display:block}.fr-view .fr-img-caption .fr-img-wrap img{display:block;margin:auto;width:100%}.fr-view .fr-img-caption .fr-img-wrap>span{margin:auto;display:block;padding:5px 5px 10px;font-size:14px;font-weight:initial;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-opacity:0.9;-moz-opacity:0.9;opacity:0.9;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";width:100%;text-align:center}.fr-view button.fr-rounded,.fr-view input.fr-rounded,.fr-view textarea.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view button.fr-large,.fr-view input.fr-large,.fr-view textarea.fr-large{font-size:24px}.fr-view span.fr-img-caption.fr-dii.fr-fil,.fr-view p img.fr-dii.fr-fil{margin-right:15px}a.fr-view.fr-strong{font-weight:700}a.fr-view.fr-green{color:green}img.fr-view{position:relative;max-width:100%}img.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}img.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}img.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}img.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}img.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}img.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}span.fr-img-caption.fr-view{position:relative;max-width:100%}span.fr-img-caption.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}span.fr-img-caption.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}span.fr-img-caption.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}span.fr-img-caption.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}span.fr-img-caption.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}span.fr-img-caption.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}

/*!
 * froala_editor v4.6.0 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2025 Froala Labs
 */

.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-license{z-index:1000;padding:20px;font-size:14px;color:#222222;background-color:#FFF;border-radius:10px}.fr-element,.fr-element:focus{outline:0 solid transparent}.fr-view.fr-element-scroll-visible{overflow-x:visible !important}.fr-box.fr-basic{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-basic .fr-element{font-family:sans-serif;color:#414141;font-size:14px;line-height:1.6;padding:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow-x:auto;min-height:60px;text-align:left}.fr-box.fr-basic.fr-rtl .fr-element{text-align:right}.fr-element{background:transparent;position:relative;z-index:2;-webkit-user-select:auto}.fr-element a{user-select:auto;-o-user-select:auto;-moz-user-select:auto;-khtml-user-select:auto;-webkit-user-select:auto;-ms-user-select:auto}.fr-element.fr-disabled{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-element [contenteditable="true"]{outline:0 solid transparent}.fr-box a.fr-floating-btn{-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;height:40px;width:40px;text-align:center;background:#FFF;color:#333333;-webkit-transition:background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;-moz-transition:background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;-ms-transition:background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;-o-transition:background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s;outline:none;left:0;top:0;line-height:40px;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);text-align:center;display:block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:none}.fr-box a.fr-floating-btn svg{-webkit-transition:transform 0.2s ease 0s;-moz-transition:transform 0.2s ease 0s;-ms-transition:transform 0.2s ease 0s;-o-transition:transform 0.2s ease 0s;fill:#333333}.fr-box a.fr-floating-btn i,.fr-box a.fr-floating-btn svg{font-size:14px;line-height:40px}.fr-box a.fr-floating-btn.fr-btn+.fr-btn{margin-left:10px}.fr-box a.fr-floating-btn:hover{background:#ebebeb;cursor:pointer}.fr-box a.fr-floating-btn:hover svg{fill:#333333}.fr-box .fr-visible a.fr-floating-btn{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1)}iframe.fr-iframe{width:100%;border:none;position:relative;display:block;z-index:2;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-wrapper{position:relative;z-index:1}.fr-wrapper::after{clear:both;display:block;content:"";height:0}.fr-wrapper .fr-placeholder{position:absolute;font-size:14px;color:#AAA;font-family:sans-serif;z-index:1;display:none;top:0;left:0;right:0;overflow:hidden}.fr-wrapper.show-placeholder .fr-placeholder{display:block;white-space:nowrap;text-overflow:ellipsis}.fr-wrapper ::-moz-selection{background:rgba(181,214,253,0.8);color:#000}.fr-wrapper ::selection{background:rgba(181,214,253,0.8);color:#000}.fr-box.fr-basic .fr-wrapper{background:#FFF;border:1px solid #CCCCCC;border-bottom-color:#efefef;top:0;left:0}.fr-box.fr-basic.fr-top .fr-wrapper{border-top:0}.fr-box.fr-basic.fr-bottom .fr-wrapper{border-bottom:0;border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}@media (min-width: 992px){.fr-box.fr-document{min-width:21cm}.fr-box.fr-document .fr-wrapper{text-align:left;padding:30px;min-width:21cm;background:#efefef}.fr-box.fr-document .fr-wrapper .fr-element{text-align:left;background:#FFF;width:21cm;margin:auto;min-height:26cm !important;padding:1cm 2cm;overflow:visible;z-index:auto}.fr-box.fr-document .fr-wrapper .fr-element hr{margin-left:-2cm;margin-right:-2cm;background:#efefef;height:1cm;outline:none;border:none}.fr-box.fr-document .fr-wrapper .fr-element img{z-index:1}}.fr-tooltip{position:absolute;top:0;left:0;padding:0 8px;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#222222;color:#FFF;font-size:11px;line-height:22px;font-family:Arial, Helvetica, sans-serif;-webkit-transition:opacity 0.2s ease 0s;-moz-transition:opacity 0.2s ease 0s;-ms-transition:opacity 0.2s ease 0s;-o-transition:opacity 0.2s ease 0s;-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";left:-3000px;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;z-index:2147483647;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fr-tooltip.fr-visible{-webkit-opacity:1;-moz-opacity:1;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-toolbar .fr-btn-wrap,.fr-popup .fr-btn-wrap,.fr-modal .fr-btn-wrap{float:left;white-space:nowrap;position:relative}.fr-toolbar .fr-btn-wrap.fr-hidden,.fr-popup .fr-btn-wrap.fr-hidden,.fr-modal .fr-btn-wrap.fr-hidden{display:none}.fr-toolbar .fr-command.fr-btn,.fr-popup .fr-command.fr-btn,.fr-modal .fr-command.fr-btn{background:transparent;color:#333333;-moz-outline:0;outline:none;border:0;line-height:1;cursor:pointer;text-align:left;margin:4px 2px;padding:0;-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s;-o-transition:all 0.5s;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;z-index:2;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-decoration:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;float:left;height:40px}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-options,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-options,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-options{border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar .fr-command.fr-btn.fr-btn-hover,.fr-popup .fr-command.fr-btn.fr-btn-hover,.fr-modal .fr-command.fr-btn.fr-btn-hover{border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar .fr-command.fr-btn::-moz-focus-inner,.fr-popup .fr-command.fr-btn::-moz-focus-inner,.fr-modal .fr-command.fr-btn::-moz-focus-inner{border:0;padding:0}.fr-toolbar .fr-command.fr-btn.fr-btn-text,.fr-popup .fr-command.fr-btn.fr-btn-text,.fr-modal .fr-command.fr-btn.fr-btn-text{width:auto}.fr-toolbar .fr-command.fr-btn i,.fr-toolbar .fr-command.fr-btn svg,.fr-popup .fr-command.fr-btn i,.fr-popup .fr-command.fr-btn svg,.fr-modal .fr-command.fr-btn i,.fr-modal .fr-command.fr-btn svg{display:block;text-align:center;float:none;margin:8px 7px;width:24px}.fr-toolbar .fr-command.fr-btn svg.fr-svg,.fr-popup .fr-command.fr-btn svg.fr-svg,.fr-modal .fr-command.fr-btn svg.fr-svg{height:24px}.fr-toolbar .fr-command.fr-btn svg path,.fr-popup .fr-command.fr-btn svg path,.fr-modal .fr-command.fr-btn svg path{-webkit-transition:all 0.5s;-moz-transition:all 0.5s;-ms-transition:all 0.5s;-o-transition:all 0.5s;fill:#333333}.fr-toolbar .fr-command.fr-btn span.fr-sr-only,.fr-popup .fr-command.fr-btn span.fr-sr-only,.fr-modal .fr-command.fr-btn span.fr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-toolbar .fr-command.fr-btn span,.fr-popup .fr-command.fr-btn span,.fr-modal .fr-command.fr-btn span{font-size:14px;display:block;line-height:17px;min-width:30px;float:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;height:17px;font-weight:bold;padding:0 4px}.fr-toolbar .fr-command.fr-btn img,.fr-popup .fr-command.fr-btn img,.fr-modal .fr-command.fr-btn img{margin:8px 7px;width:24px}.fr-toolbar .fr-command.fr-btn.fr-btn-active-popup,.fr-popup .fr-command.fr-btn.fr-btn-active-popup,.fr-modal .fr-command.fr-btn.fr-btn-active-popup{background:#d6d6d6}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection span,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection span,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-selection span{font-weight:normal}.fr-toolbar .fr-command.fr-btn.fr-dropdown i,.fr-toolbar .fr-command.fr-btn.fr-dropdown span,.fr-toolbar .fr-command.fr-btn.fr-dropdown img,.fr-toolbar .fr-command.fr-btn.fr-dropdown svg,.fr-popup .fr-command.fr-btn.fr-dropdown i,.fr-popup .fr-command.fr-btn.fr-dropdown span,.fr-popup .fr-command.fr-btn.fr-dropdown img,.fr-popup .fr-command.fr-btn.fr-dropdown svg,.fr-modal .fr-command.fr-btn.fr-dropdown i,.fr-modal .fr-command.fr-btn.fr-dropdown span,.fr-modal .fr-command.fr-btn.fr-dropdown img,.fr-modal .fr-command.fr-btn.fr-dropdown svg{margin-left:3px;margin-right:11px}.fr-toolbar .fr-command.fr-btn.fr-dropdown:after,.fr-popup .fr-command.fr-btn.fr-dropdown:after,.fr-modal .fr-command.fr-btn.fr-dropdown:after{position:absolute;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #333333;right:2px;top:18px;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-ms-transition:all 0.3s;-o-transition:all 0.3s;content:""}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-active{fill:#333333;background:#d6d6d6;-webkit-transition:0.5s ease;-moz-transition:0.5s ease;-ms-transition:0.5s ease;-o-transition:0.5s ease}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:hover{background:#ebebeb;fill:#333333}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover::after,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:hover::after{border-top-color:#333333}.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:after,.fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:after,.fr-modal .fr-command.fr-btn.fr-dropdown.fr-active:after{border-top:0;border-bottom:4px solid #222222}.fr-toolbar .fr-command.fr-btn.fr-disabled,.fr-popup .fr-command.fr-btn.fr-disabled,.fr-modal .fr-command.fr-btn.fr-disabled{color:#bdbdbd;cursor:default;-webkit-opacity:0.3;-moz-opacity:0.3;opacity:0.3;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-toolbar .fr-command.fr-btn.fr-disabled::after,.fr-popup .fr-command.fr-btn.fr-disabled::after,.fr-modal .fr-command.fr-btn.fr-disabled::after{border-top-color:#bdbdbd}.fr-toolbar .fr-command.fr-btn.fr-hidden,.fr-popup .fr-command.fr-btn.fr-hidden,.fr-modal .fr-command.fr-btn.fr-hidden{display:none}.fr-toolbar .fr-tabs .fr-command.fr-btn,.fr-popup .fr-tabs .fr-command.fr-btn,.fr-modal .fr-tabs .fr-command.fr-btn{margin:0;width:46px;height:40px;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active,.fr-toolbar .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active-tab,.fr-popup .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active,.fr-popup .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active-tab,.fr-modal .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active,.fr-modal .fr-tabs .fr-command.fr-btn:not(:hover):not(:focus).fr-active-tab{background:#FFF}.fr-toolbar .fr-tabs .fr-command.fr-btn span,.fr-popup .fr-tabs .fr-command.fr-btn span,.fr-modal .fr-tabs .fr-command.fr-btn span{height:27px}.fr-toolbar .fr-tabs .fr-command.fr-btn img,.fr-toolbar .fr-tabs .fr-command.fr-btn svg,.fr-popup .fr-tabs .fr-command.fr-btn img,.fr-popup .fr-tabs .fr-command.fr-btn svg,.fr-modal .fr-tabs .fr-command.fr-btn img,.fr-modal .fr-tabs .fr-command.fr-btn svg{margin:8px 11px;width:24px;height:24px}.fr-toolbar .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path{fill:#0098f7}.fr-toolbar.fr-disabled .fr-btn,.fr-toolbar.fr-disabled .fr-btn.fr-active,.fr-popup.fr-disabled .fr-btn,.fr-popup.fr-disabled .fr-btn.fr-active,.fr-modal.fr-disabled .fr-btn,.fr-modal.fr-disabled .fr-btn.fr-active{color:#bdbdbd;-webkit-opacity:0.3;-moz-opacity:0.3;opacity:0.3;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-toolbar.fr-disabled .fr-btn.fr-dropdown::after,.fr-toolbar.fr-disabled .fr-btn.fr-active.fr-dropdown::after,.fr-popup.fr-disabled .fr-btn.fr-dropdown::after,.fr-popup.fr-disabled .fr-btn.fr-active.fr-dropdown::after,.fr-modal.fr-disabled .fr-btn.fr-dropdown::after,.fr-modal.fr-disabled .fr-btn.fr-active.fr-dropdown::after{border-top-color:#bdbdbd}.fr-toolbar.fr-rtl .fr-btn-grp.fr-float-left,.fr-popup.fr-rtl .fr-btn-grp.fr-float-left,.fr-modal.fr-rtl .fr-btn-grp.fr-float-left{float:right}.fr-toolbar.fr-rtl .fr-btn-grp.fr-float-right,.fr-popup.fr-rtl .fr-btn-grp.fr-float-right,.fr-modal.fr-rtl .fr-btn-grp.fr-float-right{float:left}.fr-toolbar.fr-rtl .fr-command.fr-btn,.fr-toolbar.fr-rtl .fr-btn-wrap,.fr-popup.fr-rtl .fr-command.fr-btn,.fr-popup.fr-rtl .fr-btn-wrap,.fr-modal.fr-rtl .fr-command.fr-btn,.fr-modal.fr-rtl .fr-btn-wrap{float:right}.fr-toolbar.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options,.fr-toolbar.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options,.fr-popup.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options,.fr-popup.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options,.fr-modal.fr-rtl .fr-command.fr-btn.fr-dropdown.fr-options,.fr-modal.fr-rtl .fr-btn-wrap.fr-dropdown.fr-options{border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;-webkit-border-radius:4px 0 0 4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-rtl .fr-command.fr-btn.fr-btn-hover,.fr-toolbar.fr-rtl .fr-btn-wrap.fr-btn-hover,.fr-popup.fr-rtl .fr-command.fr-btn.fr-btn-hover,.fr-popup.fr-rtl .fr-btn-wrap.fr-btn-hover,.fr-modal.fr-rtl .fr-command.fr-btn.fr-btn-hover,.fr-modal.fr-rtl .fr-btn-wrap.fr-btn-hover{border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-inline>.fr-command.fr-btn:not(.fr-hidden),.fr-toolbar.fr-inline>.fr-btn-wrap:not(.fr-hidden){display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;float:none}.fr-desktop .fr-command:hover,.fr-desktop .fr-command:focus,.fr-desktop .fr-command.fr-btn-hover,.fr-desktop .fr-command.fr-expanded{outline:0;color:#333333}.fr-desktop .fr-command:hover:not(.fr-table-cell),.fr-desktop .fr-command:focus:not(.fr-table-cell),.fr-desktop .fr-command.fr-btn-hover:not(.fr-table-cell),.fr-desktop .fr-command.fr-expanded:not(.fr-table-cell){background:#ebebeb}.fr-desktop .fr-command:hover::after,.fr-desktop .fr-command:focus::after,.fr-desktop .fr-command.fr-btn-hover::after,.fr-desktop .fr-command.fr-expanded::after{border-top-color:#333333}.fr-desktop .fr-command.fr-selected:not(.fr-table-cell),.fr-desktop .fr-command:active{color:#333333;background:#d6d6d6}.fr-desktop .fr-command.fr-active:hover,.fr-desktop .fr-command.fr-active:focus,.fr-desktop .fr-command.fr-active.fr-btn-hover,.fr-desktop .fr-command.fr-active.fr-expanded{background:#ebebeb}.fr-desktop .fr-command.fr-active:active{background:#d6d6d6}.fr-desktop .fr-command.fr-disabled:hover,.fr-desktop .fr-command.fr-disabled:focus,.fr-desktop .fr-command.fr-disabled.fr-selected{background:transparent}.fr-desktop.fr-disabled .fr-command:hover,.fr-desktop.fr-disabled .fr-command:focus,.fr-desktop.fr-disabled .fr-command.fr-selected{background:transparent}.fr-toolbar.fr-mobile .fr-command.fr-blink,.fr-popup.fr-mobile .fr-command.fr-blink{background:#d6d6d6}.fr-popup.fr-mobile .fr-command:focus-visible{outline:none}.fr-command.fr-btn.fr-options{width:16px;margin-left:-5px}.fr-command.fr-btn.fr-options.fr-btn-hover,.fr-command.fr-btn.fr-options:hover,.fr-command.fr-btn.fr-options:focus{border-left:solid 1px #FAFAFA;-webkit-transition:border-left 0s, background-color 0.5s;-moz-transition:border-left 0s, background-color 0.5s;-ms-transition:border-left 0s, background-color 0.5s;-o-transition:border-left 0s, background-color 0.5s}.fr-command.fr-btn+.fr-dropdown-menu{background:#FFF;display:inline-block;position:absolute;right:auto;bottom:auto;height:auto;z-index:4;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-overflow-scrolling:touch;overflow:hidden;zoom:1;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12)}.fr-command.fr-btn+.fr-dropdown-menu.test-height .fr-dropdown-wrapper{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;height:auto;max-height:275px}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper{padding:0;margin:auto;display:inline-block;text-align:left;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:height 0.3s;-moz-transition:height 0.3s;-ms-transition:height 0.3s;-o-transition:height 0.3s;margin-top:0;float:left;height:0;margin-top:0 !important}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content{position:relative}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list{list-style-type:none;margin:0;padding:8px 0;min-width:72px}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li{padding:0;margin:0;font-size:15px}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a{padding:0 20px;line-height:200%;display:flex;cursor:pointer;white-space:nowrap;color:inherit;text-decoration:none;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a svg{width:24px;height:24px;margin:3px 4px}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a svg path{fill:#333333}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{background:#d6d6d6}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:focus:not(.fr-table-cell),.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:hover:not(.fr-table-cell){outline:1px solid #0098f7;outline-offset:-1px}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-disabled{color:#bdbdbd;cursor:default}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a .fr-shortcut{margin-left:20px;font-weight:bold;-webkit-opacity:0.75;-moz-opacity:0.75;opacity:0.75}.fr-command.fr-btn.fr-active+.fr-dropdown-menu{display:inline-block;-webkit-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12)}.fr-bottom>.fr-command.fr-btn+.fr-dropdown-menu{border-radius:2px 2px 0 0;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-rtl .fr-dropdown-wrapper,.fr-popup.fr-rtl .fr-dropdown-wrapper{text-align:right !important}body.fr-prevent-scroll{overflow:hidden}body.fr-prevent-scroll.fr-mobile{position:fixed;-webkit-overflow-scrolling:touch}.fr-modal{color:#222222;font-family:Arial, Helvetica, sans-serif;position:fixed;overflow-x:auto;overflow-y:scroll;top:0;left:0;bottom:0;right:0;width:100%;z-index:2147483640;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-align:center;line-height:1.2}.fr-modal.fr-middle .fr-modal-wrapper{margin-top:0;margin-bottom:0;margin-left:auto;margin-right:auto;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);position:absolute}.fr-modal .fr-modal-wrapper{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-clip:padding-box;margin:20px auto;display:inline-block;background:#FFF;min-width:300px;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);border:0;overflow:hidden;width:90%;position:relative}@media (min-width: 768px) and (max-width: 991px){.fr-modal .fr-modal-wrapper{margin:30px auto;width:70%}}@media (min-width: 992px){.fr-modal .fr-modal-wrapper{margin:50px auto;width:960px}}.fr-modal .fr-modal-wrapper .fr-modal-head{background:#FFF;overflow:hidden;position:absolute;width:100%;min-height:42px;z-index:3;border-bottom:solid #efefef 1px;-webkit-transition:all 0.2s ease 0s;-moz-transition:all 0.2s ease 0s;-ms-transition:all 0.2s ease 0s;-o-transition:all 0.2s ease 0s}.fr-modal .fr-modal-wrapper .fr-modal-head .fr-modal-head-line{height:56px;padding:0 10px}.fr-modal .fr-modal-wrapper .fr-modal-head .fr-modal-close{margin:10px;position:absolute;top:0;right:0}.fr-modal .fr-modal-wrapper .fr-modal-head h4{font-size:20px;padding:19px 10px;margin:0;font-weight:400;line-height:18px;display:inline-block;float:left}.fr-modal .fr-modal-wrapper div.fr-modal-body{height:100%;min-height:150px;overflow-y:auto;padding-bottom:20px}.fr-modal .fr-modal-wrapper div.fr-modal-body:focus{outline:0}.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command{height:36px;line-height:1;color:#0098f7;padding:10px;cursor:pointer;text-decoration:none;border:none;background:none;font-size:16px;outline:none;-webkit-transition:background 0.2s ease 0s;-moz-transition:background 0.2s ease 0s;-ms-transition:background 0.2s ease 0s;-o-transition:background 0.2s ease 0s;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command+button{margin-left:24px}.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:hover,.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:focus{background:#ebebeb;color:#0098f7}.fr-modal .fr-modal-wrapper div.fr-modal-body button.fr-command:active{background:#d6d6d6;color:#0098f7}.fr-modal .fr-modal-wrapper div.fr-modal-body button::-moz-focus-inner{border:0}.fr-desktop .fr-modal-wrapper .fr-modal-head i:hover{background:#ebebeb}.fr-overlay{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;-webkit-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";z-index:2147483639}ol.decimal_type{counter-reset:item}ol.decimal_type>li{display:block;position:relative}ol.decimal_type>li:before{content:counters(item,".") ". ";counter-increment:item;position:absolute;margin-right:100%;right:10px}.fr-popup{position:absolute;display:none;color:#222222;background:#FFF;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);font-family:Arial, Helvetica, sans-serif;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;margin-top:10px;z-index:2147483635;text-align:left;border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.2}.fr-popup .fr-icon{text-align:center;vertical-align:middle;font-size:20px;line-height:1;cursor:pointer;font-weight:400;box-sizing:content-box;padding:6px}.fr-popup .fr-icon-container{padding:20px;max-height:200px;overflow:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@supports not (-ms-high-contrast: none){.fr-popup .fr-icon-container{grid-template-columns:repeat(auto-fill, minmax(36px, 36px));display:grid}}@media (min-width: 768px){.fr-popup .fr-icon-container{min-width:276px}}@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){.fr-popup .fr-icon-container{display:inline-flex;-ms-flex-flow:row wrap}}@media screen and (-ms-high-contrast: active) and (max-width: 768px), (-ms-high-contrast: none) and (max-width: 768px){.fr-popup .fr-icon-container{width:236px}}.fr-popup .fr-input-focus{background:whitesmoke}.fr-popup.fr-above{margin-top:-10px;border-top:0}.fr-popup.fr-active{display:block}.fr-popup.fr-hidden{display:none !important}.fr-popup.fr-empty{display:none !important}.fr-popup .fr-hs{display:block !important}.fr-popup .fr-hs.fr-hidden{display:none !important}.fr-popup .fr-input-line{position:relative;padding:15px 0}.fr-popup .fr-input-line input[type="text"],.fr-popup .fr-input-line input[type="number"],.fr-popup .fr-input-line textarea{width:100%;margin-bottom:1px;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;border:solid 1px #999999;color:#222222;font-size:14px;background:#FFF;position:relative;z-index:2;padding:4px 12px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:border 0.5s, padding 0.5s;-moz-transition:border 0.5s, padding 0.5s;-ms-transition:border 0.5s, padding 0.5s;-o-transition:border 0.5s, padding 0.5s}.fr-popup .fr-input-line input[type="text"]:hover,.fr-popup .fr-input-line input[type="number"]:hover,.fr-popup .fr-input-line textarea:hover{border:solid 1px #515151}.fr-popup .fr-input-line input[type="text"]:focus,.fr-popup .fr-input-line input[type="number"]:focus,.fr-popup .fr-input-line textarea:focus{border:solid 2px #0098f7;padding:3px 11px}.fr-popup .fr-input-line input[type="text"],.fr-popup .fr-input-line input[type="number"]{height:46px}.fr-popup .fr-input-line input+label,.fr-popup .fr-input-line textarea+label{position:absolute;top:29px;left:12px;font-size:14px;color:grey;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;z-index:3;display:block;background:#FFF;padding:0;cursor:text}.fr-popup .fr-input-line input.fr-not-empty+label,.fr-popup .fr-input-line textarea.fr-not-empty+label{color:gray;width:auto;left:4px;padding:0 4px;font-size:11px;top:9px}.fr-popup input,.fr-popup textarea{user-select:text;-o-user-select:text;-moz-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-ms-user-select:text;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;outline:none}.fr-popup textarea{resize:none}.fr-popup .fr-buttons{white-space:nowrap;line-height:0}.fr-popup .fr-buttons .fr-btn{margin-left:4px;margin-right:4px;display:inline-block;float:none}.fr-popup .fr-buttons .fr-btn i{float:left}.fr-popup .fr-buttons .fr-separator{display:inline-block;float:none}.fr-popup .fr-buttons.fr-tabs{border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#f5f5f5;overflow:hidden}@media (max-width: 768px){.fr-popup .fr-buttons.fr-tabs.fr-tabs-scroll{overflow:scroll;overflow-y:hidden;width:276px}}.fr-popup .fr-buttons:not(.fr-tabs){padding:5px}.fr-popup .fr-layer{border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;width:195px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:20px;display:none}@media (min-width: 768px){.fr-popup .fr-layer{width:260px}}.fr-popup .fr-layer.fr-active{display:inline-block}.fr-popup .fr-action-buttons{z-index:7;height:36px;text-align:right}.fr-popup .fr-action-buttons button.fr-command{height:36px;line-height:1;color:#0098f7;padding:10px;cursor:pointer;text-decoration:none;border:none;background:none;font-size:16px;outline:none;-webkit-transition:background 0.2s ease 0s;-moz-transition:background 0.2s ease 0s;-ms-transition:background 0.2s ease 0s;-o-transition:background 0.2s ease 0s;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-popup .fr-action-buttons button.fr-command+button{margin-left:24px}.fr-popup .fr-action-buttons button.fr-command:hover,.fr-popup .fr-action-buttons button.fr-command:focus{background:#ebebeb;color:#0098f7}.fr-popup .fr-action-buttons button.fr-command:active{background:#d6d6d6;color:#0098f7}.fr-popup .fr-action-buttons button::-moz-focus-inner{border:0}.fr-popup .fr-checkbox{position:relative;display:inline-block;width:18px;height:18px;padding:10px;border-radius:100%;line-height:1;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;vertical-align:middle}.fr-popup .fr-checkbox svg{margin-left:2px;margin-top:2px;display:none;width:10px;height:10px}.fr-popup .fr-checkbox span{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;width:18px;height:18px;display:inline-block;position:relative;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-moz-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-ms-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-o-transition:background 0.2s ease 0s, border-color 0.2s ease 0s}.fr-popup .fr-checkbox input{position:absolute;z-index:2;-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";border:0 none;cursor:pointer;height:18px;margin:0;padding:0;width:18px;top:7px;left:7px}.fr-popup .fr-checkbox input:not(:checked)+span{border:solid 2px #999999}.fr-popup .fr-checkbox input:not(:checked):active+span{background-color:#f5f5f5}.fr-popup .fr-checkbox input:not(:checked):focus+span,.fr-popup .fr-checkbox input:not(:checked):hover+span{border-color:#515151}.fr-popup .fr-checkbox input:checked+span{background:#0098f7;border:solid 2px #0098f7}.fr-popup .fr-checkbox input:checked+span svg{display:block}.fr-popup .fr-checkbox input:checked:active+span{background-color:#EcF5Ff}.fr-popup .fr-checkbox input:checked:focus+span,.fr-popup .fr-checkbox input:checked:hover+span{-webkit-opacity:0.8;-moz-opacity:0.8;opacity:0.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-popup .fr-checkbox-line{font-size:14px;line-height:1.4px;margin-top:10px}.fr-popup .fr-checkbox-line label{cursor:pointer;margin:0 5px;vertical-align:middle}.fr-popup.fr-rtl{direction:rtl;text-align:right}.fr-popup.fr-rtl .fr-action-buttons{text-align:left}.fr-popup.fr-rtl .fr-input-line input+label,.fr-popup.fr-rtl .fr-input-line textarea+label{left:auto;right:0}.fr-popup.fr-rtl .fr-buttons .fr-separator.fr-vs{float:right}.fr-text-edit-layer{width:250px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block !important}.fr-toolbar{color:#222222;background:#FFF;position:relative;font-family:Arial, Helvetica, sans-serif;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;text-align:left;border:1px solid #CCCCCC;text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.2;padding-bottom:0;-webkit-transition:padding-bottom 0.5s;-moz-transition:padding-bottom 0.5s;-ms-transition:padding-bottom 0.5s;-o-transition:padding-bottom 0.5s}.fr-toolbar::after{clear:both;display:block;content:"";height:0}.fr-toolbar::after{height:0}.fr-toolbar .fr-newline{clear:both;display:block;content:"";margin-left:9px;margin-right:9px;background:#efefef;height:1px;-webkit-transition:height 0.5s;-moz-transition:height 0.5s;-ms-transition:height 0.5s;-o-transition:height 0.5s}.fr-toolbar.fr-toolbar-open .fr-newline{height:0}.fr-toolbar .fr-float-right{float:right}.fr-toolbar .fr-float-left{float:left}.fr-toolbar .fr-more-toolbar{float:left;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#f5f5f5;-webkit-transition:height 0.5s;-moz-transition:height 0.5s;-ms-transition:height 0.5s;-o-transition:height 0.5s;height:0;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.fr-toolbar .fr-more-toolbar.fr-expanded{height:48px}.fr-toolbar .fr-more-toolbar.fr-overflow-visible{overflow:visible}.fr-toolbar .fr-more-toolbar>.fr-command.fr-btn{margin-left:4px;margin-right:4px}.fr-toolbar .fr-btn-grp{display:inline-block;margin:0 17px 0 12px}@media (max-width: 768px){.fr-toolbar .fr-btn-grp{margin:0 7px 0 6px}}.fr-toolbar .fr-command.fr-btn.fr-open{margin-top:10px;margin-bottom:-1px;border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar .fr-command.fr-btn.fr-open:not(:hover):not(:focus):not(:active){background:#f5f5f5}.fr-toolbar .fr-popup .fr-command:focus-visible{outline:none}.fr-toolbar.fr-rtl{text-align:right}.fr-toolbar.fr-inline{display:none;-webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12);border:0;white-space:nowrap;position:absolute;margin-top:5px;z-index:2147483630}.fr-toolbar.fr-inline.fr-above{margin-top:-10px;border-top:0}.fr-toolbar.fr-inline .fr-newline{height:0}.fr-toolbar.fr-inline .fr-more-toolbar{position:absolute !important}.fr-toolbar.fr-inline .fr-more-toolbar.fr-expanded{position:relative !important}.fr-toolbar.fr-top{top:0;border-bottom:0;border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-bottom{bottom:0;border-top:0;padding-bottom:0;border-radius:0 0 10px 10px;-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-bottom .fr-newline{padding-top:0;-webkit-transition:padding-top 0.5s;-moz-transition:padding-top 0.5s;-ms-transition:padding-top 0.5s;-o-transition:padding-top 0.5s}.fr-toolbar.fr-bottom.fr-toolbar-open .fr-newline{padding-top:48px;background:#FFF}.fr-toolbar.fr-bottom .fr-command.fr-btn.fr-open{margin-top:-1px;margin-bottom:10px;border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-toolbar.fr-sticky-on{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-separator{background:#ebebeb;display:block;vertical-align:top;float:left}.fr-separator+.fr-separator{display:none}.fr-separator.fr-vs{height:32px;width:1px;margin:8px 4px}.fr-separator.fr-hs{clear:both;width:calc(100% - (2 * 4px));margin:0 4px;height:1px}.fr-separator.fr-hidden{display:none !important}.fr-rtl .fr-separator{float:right}.fr-toolbar.fr-inline .fr-separator.fr-hs{float:none}.fr-toolbar.fr-inline .fr-separator.fr-vs{display:inline-block}.fr-second-toolbar{border:1px solid #CCCCCC;border-top:0;background:#FFF;line-height:1.4;border-radius:0 0 10px 10px;-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-second-toolbar::after{clear:both;display:block;content:"";height:0}.fr-second-toolbar:empty{min-height:calc(10px);position:relative;margin-top:calc(-1px);z-index:2}#fr-logo{float:left;outline:none}#fr-logo>span{display:inline-block;float:left;font-family:sans-serif;padding:11px 5px 10px 15px;font-size:12px;font-weight:500;color:#b1b2b7;-webkit-transition:color 0.3s;-moz-transition:color 0.3s;-ms-transition:color 0.3s;-o-transition:color 0.3s}#fr-logo>svg{height:20px;width:47px;margin:7px 0;cursor:pointer}#fr-logo>svg *{-webkit-transition:fill 0.3s;-moz-transition:fill 0.3s;-ms-transition:fill 0.3s;-o-transition:fill 0.3s}#fr-logo:hover>span,#fr-logo:focus>span{color:#0098f7}#fr-logo:hover>svg .fr-logo,#fr-logo:focus>svg .fr-logo{fill:#0098f7}.fr-visibility-helper{display:none;margin-left:0 !important}@media (min-width: 768px){.fr-visibility-helper{margin-left:1px !important}}@media (min-width: 992px){.fr-visibility-helper{margin-left:2px !important}}@media (min-width: 1200px){.fr-visibility-helper{margin-left:3px !important}}.fr-opacity-0{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-box{position:relative}.fr-sticky{position:-webkit-sticky;position:-moz-sticky;position:-ms-sticky;position:-o-sticky;position:sticky}.fr-sticky-off{position:relative}.fr-sticky-on{position:fixed;z-index:10}.fr-sticky-on.fr-sticky-ios{position:-webkit-sticky;left:0;right:0;width:auto !important}.modal .fr-sticky-on{position:sticky}.fr-sticky-dummy{display:none}.fr-sticky-on+.fr-sticky-dummy,.fr-sticky-box>.fr-sticky-dummy{display:block}span.fr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-view .fr-highlight-change,.fr-highlight-change>img,.fr-highlight-change>.fr-video>video,.fr-highlight-change>.fr-video>embed,.fr-highlight-change>.fr-video>iframe,.fr-highlight-change>.fr-embedly>.embedly-card>.embedly-card-hug>iframe,.fr-highlight-change>p,.fr-view .fr-highlight-change>span:not(.fr-tracking-deleted){background-color:#f3eec3;opacity:0.5}.fr-view .fr-highlight-table,.fr-view .fr-highlight-table>span{opacity:1}.fr-highlight-change.fr-highlight-change>table td,.fr-highlight-change.fr-highlight-change>hr{border-color:#f3eec3}.fr-tracking-deleted.fr-tracking-deleted>table td,.fr-tracking-deleted.fr-tracking-deleted>hr{border-color:#dc3545}.fr-tracking-deleted img,.fr-tracking-deleted>.fr-video>video,.fr-tracking-deleted>.fr-video>iframe,.fr-tracking-deleted>.fr-embedly>.embedly-card>.embedly-card-hug>iframe{opacity:0.5;background-color:#dc3545}.fr-view .fr-tracking-deleted{background-color:#dc3545;text-decoration:line-through;pointer-events:none;user-select:none;opacity:1}.fr-highlight-change>.fr-video>iframe,.fr-tracking-deleted>.fr-video>iframe,.fr-highlight-change>.fr-video>video,.fr-tracking-deleted>.fr-video>video,.fr-highlight-change>.fr-video>embed,.fr-highlight-change>.fr-embedly>.embedly-card>.embedly-card-hug>iframe,.fr-tracking-deleted>.fr-embedly>.embedly-card>.embedly-card-hug>iframe{padding:10px !important}.fr-tracking-deleted img,.fr-highlight-change img{border:2px solid #f3eec3}.fr-highlight-change #isPasted *:not(table):not(tbody):not(tr):not(td){opacity:0.5;background-color:#f3eec3}.fr-highlight-change #isPasted>table td{opacity:0.5;border-color:#f3eec3}.fr-track-hide{display:none}.fr-track-hide-mobile{width:0;height:0;overflow:hidden;position:absolute}.fr-ios-mobile-disable-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.fr-bottom-extended{flex-wrap:wrap;display:flex;box-sizing:border-box}.position-relative{position:relative !important}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-box .fr-counter{padding:10px;float:right;color:#999999;content:attr(data-chars);font-size:14px;font-family:sans-serif;z-index:1;border-radius:2px 0 0 0;-moz-border-radius:2px 0 0 0;-webkit-border-radius:2px 0 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-rtl .fr-counter{left:0;right:auto;border-left:none;border-radius:0 2px 0 0;-moz-border-radius:0 2px 0 0;-webkit-border-radius:0 2px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-code-view .fr-counter{display:none}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}textarea.fr-code{display:none;width:100%;resize:none;-moz-resize:none;-webkit-resize:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:none;padding:10px;margin:0;font-family:"Courier New",monospace;font-size:14px;background:#FFF;color:#000;outline:none}.fr-box.fr-rtl textarea.fr-code{direction:rtl}.fr-box .CodeMirror{display:none}.fr-box.fr-code-view textarea.fr-code{display:block}.fr-box.fr-code-view .fr-element,.fr-box.fr-code-view .fr-placeholder,.fr-box.fr-code-view .fr-iframe{display:none}.fr-box.fr-code-view .CodeMirror{display:block}.fr-box.fr-inline.fr-code-view .fr-command.fr-btn.html-switch{display:block}.fr-box.fr-inline .fr-command.fr-btn.html-switch{display:none;position:absolute;top:0;right:0;display:none;background:#FFF;color:#333333;-moz-outline:0;outline:0;border:0;line-height:1;cursor:pointer;text-align:left;padding:8px 7px;-webkit-transition:background 0.2s ease 0s;-moz-transition:background 0.2s ease 0s;-ms-transition:background 0.2s ease 0s;-o-transition:background 0.2s ease 0s;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;z-index:2;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-decoration:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-box.fr-inline .fr-command.fr-btn.html-switch i{font-size:24px;width:24px;text-align:center}.fr-box.fr-inline .fr-command.fr-btn.html-switch.fr-desktop:hover{background:#ebebeb}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-popup .fr-layer.fr-color-hex-layer{margin:0;padding:20px;padding-top:0;float:left}.fr-popup .fr-layer.fr-color-hex-layer .fr-input-line{float:left;width:calc(100% - 50px);padding:15px 0 0}.fr-popup .fr-layer.fr-color-hex-layer .fr-action-buttons{float:right;width:38px;height:40px;padding:17px 0 0;margin:0}.fr-popup .fr-layer.fr-color-hex-layer .fr-action-buttons button.fr-command{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;font-size:13px;height:40px;width:38px}.fr-popup .fr-separator+.fr-colors-tabs{margin-left:2px;margin-right:2px}.fr-popup .fr-color-set{line-height:0;display:none}.fr-popup .fr-color-set.fr-selected-set{display:block;padding:20px;padding-bottom:0}.fr-popup .fr-color-set>span{display:inline-block;width:32px;height:32px;position:relative;z-index:1}.fr-popup .fr-color-set>span>i,.fr-popup .fr-color-set>span>svg{text-align:center;line-height:32px;height:24px;width:24px;margin:4px;font-size:13px;position:absolute;bottom:0;cursor:default;left:0}.fr-popup .fr-color-set>span>i path,.fr-popup .fr-color-set>span>svg path{fill:#222222}.fr-popup .fr-color-set>span .fr-selected-color{color:#FFF;font-family:FontAwesome;font-size:13px;font-weight:400;line-height:32px;position:absolute;top:0;bottom:0;right:0;left:0;text-align:center;cursor:default}.fr-popup .fr-color-set>span:hover,.fr-popup .fr-color-set>span:focus,.fr-popup .fr-color-set>span:not(.fr-table-cell):hover,.fr-popup .fr-color-set>span:not(.fr-table-cell):focus{outline:1px solid #222222;z-index:2}.fr-rtl .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0)}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-drag-helper{background:#0098f7;height:2px;margin-top:-1px;-webkit-opacity:0.2;-moz-opacity:0.2;opacity:0.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";position:absolute;z-index:2147483640;display:none}.fr-drag-helper.fr-visible{display:block}.fr-dragging{-webkit-opacity:0.4;-moz-opacity:0.4;opacity:0.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-popup .fr-emoticon{width:24px;height:24px;font-family:"Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols}.fr-popup .fr-emoticon img{height:24px;width:24px}.fr-popup .fr-command.fr-btn.fr-tabs-unicode{padding:0 0 0 14px}@media screen and (-ms-high-contrast: active) and (min-width: 768px), (-ms-high-contrast: none) and (min-width: 768px){.fr-popup .fr-icon-container.fr-emoticon-container{width:368px}}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-popup .fr-file-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;margin:20px;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;text-align:center}.fr-popup .fr-file-upload-layer:hover{background:#ebebeb}.fr-popup .fr-file-upload-layer.fr-drop{background:#ebebeb;border-color:#0098f7}.fr-popup .fr-file-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0 !important;padding:0 !important;width:100% !important}.fr-popup .fr-file-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-file-progress-bar-layer{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-popup .fr-file-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:normal}.fr-popup .fr-file-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-file-progress-bar-layer>div.fr-loader{background:#b3e0fd;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-file-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0%;background:#0098f7;-webkit-transition:width 0.2s ease 0s;-moz-transition:width 0.2s ease 0s;-ms-transition:width 0.2s ease 0s;-o-transition:width 0.2s ease 0s}.fr-popup .fr-file-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30% !important;position:absolute;top:0;-webkit-animation:loading 2s linear infinite;-moz-animation:loading 2s linear infinite;-o-animation:loading 2s linear infinite;animation:loading 2s linear infinite}.fr-popup .fr-file-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-file-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}@keyframes loading{from{left:-25%}to{left:100%}}@-webkit-keyframes loading{from{left:-25%}to{left:100%}}@-moz-keyframes loading{from{left:-25%}to{left:100%}}@-o-keyframes loading{from{left:-25%}to{left:100%}}@keyframes loading{from{left:-25%}to{left:100%}}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-element img{cursor:pointer;padding:0 1px}.fr-height-auto{height:auto !important}.fr-file-loader{border:4px solid #f3f3f3;border-radius:50%;border-top:4px solid #53777a;display:inline-block !important;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;width:20px;height:20px;display:block !important;align-items:center}.fr-trim-button{margin-top:5px;height:36px;line-height:1;color:#0098f7;padding:10px;cursor:pointer;text-decoration:none;border:none;background:none;font-size:16px;border-radius:5px;background-color:#eff5fa;outline:none}.fr-trim-button:hover{background:#ebebeb}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.fr-image-resizer{position:absolute;border:solid 1px #0098f7;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-image-resizer.fr-active{display:block}.fr-image-resizer .fr-handler{display:block;position:absolute;background:#0098f7;border:solid 1px #FFF;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;z-index:4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-image-resizer .fr-handler.fr-hnw{cursor:nw-resize}.fr-image-resizer .fr-handler.fr-hne{cursor:ne-resize}.fr-image-resizer .fr-handler.fr-hsw{cursor:sw-resize}.fr-image-resizer .fr-handler.fr-hse{cursor:se-resize}.fr-image-resizer .fr-handler{width:12px;height:12px}.fr-image-resizer .fr-handler.fr-hnw{left:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hne{right:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hsw{left:-6px;bottom:-6px}.fr-image-resizer .fr-handler.fr-hse{right:-6px;bottom:-6px}@media (min-width: 1200px){.fr-image-resizer .fr-handler{width:10px;height:10px}.fr-image-resizer .fr-handler.fr-hnw{left:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hne{right:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hsw{left:-5px;bottom:-5px}.fr-image-resizer .fr-handler.fr-hse{right:-5px;bottom:-5px}}.fr-image-overlay{position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483640;display:none}.fr-by-url-padding{padding:11.5px 0}.fr-popup .fr-upload-progress-layer{border-radius:0;box-sizing:border-box;padding-left:20px;padding-top:15px;margin:auto !important;max-height:100%;overflow-y:auto;overflow-x:hidden;width:100% !important;overscroll-behavior:contain}.fr-popup .fr-files-by-url-layer{width:calc(100% - 40px) !important}.fr-popup .fr-files-embed-layer{width:calc(100% - 40px) !important}.fr-popup .fr-files-upload-layer{border:dashed 2px #bdbdbd;margin:20px;position:relative;font-size:10px;letter-spacing:1px;line-height:140%;text-align:center;width:calc(100% - 40px) !important}.fr-popup .fr-files-upload-layer:hover{background:#ebebeb}.fr-popup .fr-files-upload-layer.fr-drop{background:#ebebeb;border-color:#0098f7}.fr-popup .fr-files-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0 !important;padding:0 !important;width:100% !important}.fr-popup .fr-files-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-files-progress-bar-layer{width:calc(100% - 40px);width:-moz-available;width:-webkit-stretch;width:stretch}.fr-popup .fr-files-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:normal}.fr-popup .fr-files-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-files-progress-bar-layer>div.fr-loader{background:#b3e0fd;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-files-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0%;background:#0098f7;-webkit-transition:width 0.2s ease 0s;-moz-transition:width 0.2s ease 0s;-ms-transition:width 0.2s ease 0s;-o-transition:width 0.2s ease 0s}.fr-popup .fr-files-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30% !important;position:absolute;top:0;-webkit-animation:loading 2s linear infinite;-moz-animation:loading 2s linear infinite;-o-animation:loading 2s linear infinite;animation:loading 2s linear infinite}.fr-popup .fr-files-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-files-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}.fr-image-size-layer .fr-image-group .fr-input-line{width:calc(50% - 5px);display:inline-block}.fr-image-size-layer .fr-image-group .fr-input-line+.fr-input-line{margin-left:10px}.fr-progress-bar-style{width:calc(100% - 40px)}.fr-progress-bar{position:relative;background-color:#4CAF50;height:8px;margin-bottom:8px;margin-left:20px;margin-right:20px;width:100%;width:-moz-available;width:-webkit-stretch;width:stretch}.fr-uploading{-webkit-opacity:0.4;-moz-opacity:0.4;opacity:0.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}@-webkit-keyframes loading{from{left:-25%}to{left:100%}}@-moz-keyframes loading{from{left:-25%}to{left:100%}}@-o-keyframes loading{from{left:-25%}to{left:100%}}@keyframes loading{from{left:-25%}to{left:100%}}.fr-pull-left{float:left}.fr-pull-right{float:right}.fr-icons{padding:10px 20px 0;display:inline}.fr-transform-135{transform:rotate(135deg)}.fr-icons i{margin:4px;padding:2px;cursor:pointer;color:#999588;font-size:20px}.fr-blue-decorator{background:#4a7fba;color:white;display:grid;padding:5px}.fr-upload-progress{padding:1px}.fr-upload-section{position:relative;width:100%;width:-moz-available;width:-webkit-stretch;width:stretch}@media screen and (max-width: 399px){.fr-upload-section{margin-left:7px;margin-right:7px}.fr-files-upload-layer{padding-top:7px;padding-bottom:7px}}@media screen and (min-width: 400px) and (max-width: 469px){.fr-upload-section{margin-left:7px;margin-right:7px}.fr-files-upload-layer{padding-top:7px;padding-bottom:7px}}@media screen and (min-width: 470px) and (max-width: 680px){.fr-upload-section{margin-left:7px;margin-right:7px}.fr-files-upload-layer{padding-top:7px;padding-bottom:7px}}@media screen and (min-width: 681px){.fr-upload-section{margin-left:35px;margin-right:35px}.fr-files-upload-layer{padding-top:20px;padding-bottom:20px}}.fr-half-circle{width:60px;height:25px;background-color:white;border-top-left-radius:110px;border-top-right-radius:110px;transform:rotate(180deg);border-bottom:0;position:relative;left:50%;z-index:1;left:50%;margin-top:-1px;margin-left:-25px}.fr-decorated{overflow:hidden;text-align:center}.fr-decorated>span{position:relative;display:inline-block}.fr-decorated>span:before,.fr-decorated>span:after{content:'';position:absolute;top:50%;border-bottom:2px solid #ffffff;width:100%;margin:0 20px}.fr-decorated>span:before{right:100%}.fr-decorated>span:after{left:100%}.fr-align-right{float:right}.fr-checkbox-container{display:inline-block;position:relative;padding-left:20px;margin-bottom:12px;cursor:pointer;font-size:13px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fr-files-checkbox-line{display:flex;align-items:center;font-size:10px}.fr-files-checkbox-line label{cursor:pointer;vertical-align:middle}.fr-insert-checkbox input{height:13px !important;width:13px !important}.fr-autoplay-checkbox input{height:13px !important;width:13px !important}button[data-cmd="insertFiles"]{padding-left:2px !important;padding-top:2.7px !important}button[data-cmd="autoplay"] svg{position:relative !important;top:3.2px !important}button[data-cmd="insertAll"]{padding-left:4px !important}button[data-cmd="insertAll"] svg{position:relative !important;top:3.2px !important}.fr-checkbox-container input{position:absolute;opacity:0;cursor:pointer;height:0;width:0}.fr-checkmark{position:absolute;top:0;left:0;height:15px;width:15px;background-color:#eee}.fr-file-list-item{display:flex;justify-content:space-between;align-items:center;padding-top:7px;flex-wrap:wrap;position:relative;top:-20px;border-bottom:1px solid #ddd;padding-bottom:7px}.fr-file-item-left{display:flex;flex-wrap:wrap}.fr-file-item-icon{display:flex;align-items:center;padding-left:7px}.fr-file-item-description{display:flex;flex-wrap:wrap;flex-direction:column;justify-content:center;max-width:400px;margin-left:5px}.fr-cloud-icon{height:30px;width:32px;background-color:white;border-radius:50%;display:flex;justify-content:center;position:relative;margin:0 auto;margin-top:-18px}.fr-files-checkbox{position:relative;display:inline-block;width:13px;height:13px;padding-right:5px;border-radius:100%;line-height:1;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;vertical-align:middle}.fr-files-checkbox svg{margin-left:0px;margin-top:0px;display:none;width:10px;height:10px}.fr-files-checkbox span{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;width:15px;height:15px;display:inline-block;position:relative;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-moz-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-ms-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-o-transition:background 0.2s ease 0s, border-color 0.2s ease 0s}.fr-files-checkbox input{position:absolute;z-index:2;-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";border:0 none;cursor:pointer;height:18px;margin:0;padding:0;width:18px}.fr-files-checkbox input:not(:checked)+span{border:solid 2px #999999}.fr-files-checkbox input:not(:checked):active+span{background-color:#f5f5f5}.fr-files-checkbox input:not(:checked):focus+span,.fr-files-checkbox input:not(:checked):hover+span{border-color:#515151}.fr-files-checkbox input:checked+span{background:#0098f7;border:solid 2px #0098f7}.fr-files-checkbox input:checked+span svg{display:block}.fr-files-checkbox input:checked:active+span{background-color:#EcF5Ff}.fr-files-checkbox input:checked:focus+span,.fr-files-checkbox input:checked:hover+span{-webkit-opacity:0.8;-moz-opacity:0.8;opacity:0.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-checkbox-disabled{opacity:0.4;position:relative;display:inline-block;width:13px !important;height:13px !important;padding-right:5px;border-radius:100%;line-height:1;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;vertical-align:middle}.fr-checkbox-disabled svg{margin-left:2px;margin-top:2px;display:none;width:10px;height:10px}.fr-checkbox-disabled span{border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;width:15px;height:15px;display:inline-block;position:relative;z-index:1;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-moz-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-ms-transition:background 0.2s ease 0s, border-color 0.2s ease 0s;-o-transition:background 0.2s ease 0s, border-color 0.2s ease 0s}.fr-checkbox-disabled input{position:absolute;z-index:2;-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";border:0 none;cursor:default;height:13px !important;margin:0;padding:0;width:13px !important;top:7px;left:7px}.fr-checkbox-disabled input:not(:checked)+span{border:solid 2px #999999}.fr-checkbox-disabled input:not(:checked):active+span{background-color:#f5f5f5}.fr-checkbox-disabled input:checked+span{background:#0098f7;border:solid 2px #0098f7}.fr-checkbox-disabled input:checked+span svg{display:block}.fr-checkbox-disabled input:checked:active+span{background-color:#EcF5Ff}.fr-file-view{position:absolute;max-width:60%;right:10%;z-index:2147483642}.fr-file-item-thumbnail-hover{transition:transform .2s}.fr-file-item-thumbnail-hover:hover{-ms-transform:scale(1.3);-webkit-transform:scale(1.3);transform:scale(1.3)}.fr-file-name{padding-top:5px;font-size:12px;font-weight:bold}.fr-margin-16{margin-bottom:16px}.fr-none{display:none}.fr-display-block{display:block}.fr-files-manager-tooltip{position:relative}.padding-top-15{padding-top:15px !important;padding-bottom:0px !important}.fr-files-manager-tooltip .tooltiptext{visibility:hidden;width:max-content;max-width:250px;word-break:break-word;word-wrap:break-word;background-color:black;color:#fff;text-align:left;padding:4px;border-radius:2px;font-weight:100;font-size:10px;position:absolute;top:80%;left:50%;z-index:2147483647}.fr-files-manager-tooltip:hover .tooltiptext{visibility:visible}.fr-file-details{display:flex;flex-wrap:wrap;font-size:10px}.fr-file-date{word-break:break-word;word-wrap:break-word;max-width:110px;color:#444;padding-top:2px;padding-bottom:2px}.fr-file-size{color:#444;padding-top:2px;padding-bottom:2px}.dot{width:20px;height:20px;background-image:radial-gradient(circle, grey 1px, transparent 2px);background-size:100% 33.33%;margin-left:2px;margin-right:2px}.fr-file-action-icons{margin-right:5px;margin-left:5px !important;color:#999;height:25px !important;padding:5px !important}@media screen and (max-width: 700px){.fr-files-manager-tooltip .tooltiptext{max-width:250px;visibility:hidden;word-break:break-word;word-wrap:break-word;top:90%;left:0%;font-size:8px}}@media screen and (max-width: 500px){.fr-files-manager-tooltip .tooltiptext{max-width:100px;visibility:hidden;word-break:break-word;word-wrap:break-word;top:90%;left:0%}.fr-file-item-description{width:130px}.fr-file-item-right{width:100%}.progress-circle{font-size:6px}}@media screen and (max-width: 320px){.fr-files-manager-tooltip .tooltiptext{max-width:100px;visibility:hidden;word-break:break-word;word-wrap:break-word;top:90%;left:-50%;font-size:8px}.dot{width:20px;margin-left:0px;margin-right:3px}.fr-file-item-description{width:80px}.fr-file-details{display:flex;flex-wrap:wrap;font-size:9px}.fr-file-name{font-size:10px}.fr-file-action-icons{padding:0px !important}}@media screen and (min-width: 501px){.progress-circle{font-size:9px}}.fr-file-view-modal{display:block;position:fixed;position:-ms-page;z-index:2147483641;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:black;background-color:rgba(0,0,0,0.7)}.fr-file-view-modal-content{display:inline-block;text-align:center}.fr-file-view-image{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;max-width:80%;max-height:70%}.fr-file-view-close{position:absolute;top:15px;right:35px;color:#f1f1f1;font-size:40px;font-weight:bold;transition:0.3s}.fr-file-view-close:hover,.fr-file-view-close:focus{color:#bbb;text-decoration:none;cursor:pointer}.fr-file-error{color:red;font-weight:200;font-size:12px;padding-bottom:5px}.fr-file-error-h5{margin:0}.fr-file-item-right{display:flex;align-items:center;justify-content:flex-end;margin-right:20px}.fr-file-item-action-buttons{display:flex;align-items:center;justify-content:space-around}.fr-file-item-autoplay-checkbox{align-items:center;margin:0px;padding:0px;margin-right:5px}.fr-autoplay-checkbox-label{margin:0;cursor:default !important}.fr-checkbox-container:hover input ~ .fr-checkmark{background-color:#ccc}.fr-checkbox-container input:checked ~ .fr-checkmark{background-color:#2196F3}.fr-checkmark:after{content:"";position:absolute;display:none}.fr-checkbox-container input:checked ~ .fr-checkmark:after{display:block}.fr-container .fr-checkmark:after{left:5px;top:2px;width:3px;height:7px;border:solid white;border-width:0 3px 3px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.fr-file-item-details .file-name{font-weight:bold;display:inline}.fr-file-item-details .file-description{font-weight:300;font-size:11px;display:inline}.fr-width-10{width:10%;display:inline-block}.fr-width-20{width:20%;display:inline-block}.fr-width-30{width:30%;display:inline-block}.fr-width-40{width:40%;display:inline-block}.fr-width-50{width:50%;display:inline-block}.fr-width-60{width:60%;display:inline-block}.fr-width-100{width:100%;display:inline-block}.fr-width-80{width:80%;display:inline-block}.fr-width-90{width:90%;display:inline-block}.fr-width-85{width:85%;display:inline-block}.fr-width-5{width:5%;display:inline-block}.fr-width-7{width:7%;display:inline-block}.fr-img-icon{color:#aaaaaa;font-size:16px;padding:0px 4px}.fr-position-content{position:relative;top:10px}.file-error{color:red}#myprogressBar{width:10%;height:5px;background-color:#4CAF50;position:relative;top:-30px}.fr-files-manager{z-index:2147483641 !important}.progress-circle{margin:0px;margin-left:10px;position:relative;padding:0;width:5em;height:5.1em;background-color:#f2e9e1;border-radius:50%;line-height:5em}.progress-circle:after{border:none;position:absolute;top:0.35em;left:0.35em;text-align:center;display:block;border-radius:50%;width:4.3em;height:4.3em;background-color:white;content:" "}.progress-circle span{position:absolute;line-height:5em;width:5em;text-align:center;display:block;color:#53777a;z-index:2}.progress-circle.over50 .left-half-clipper{clip:rect(auto, auto, auto, auto)}.progress-circle.over50 .first50-bar{position:absolute;clip:rect(0, 5em, 5em, 2.5em);background-color:#53777a;border-radius:50%;width:5em;height:5em}.progress-circle:not(.over50) .first50-bar{display:none}.progress-circle.p0 .value-bar{display:none}.progress-circle.p1 .value-bar{transform:rotate(4deg)}.progress-circle.p2 .value-bar{transform:rotate(7deg)}.progress-circle.p3 .value-bar{transform:rotate(11deg)}.progress-circle.p4 .value-bar{transform:rotate(14deg)}.progress-circle.p5 .value-bar{transform:rotate(18deg)}.progress-circle.p6 .value-bar{transform:rotate(22deg)}.progress-circle.p7 .value-bar{transform:rotate(25deg)}.progress-circle.p8 .value-bar{transform:rotate(29deg)}.progress-circle.p9 .value-bar{transform:rotate(32deg)}.progress-circle.p10 .value-bar{transform:rotate(36deg)}.progress-circle.p11 .value-bar{transform:rotate(40deg)}.progress-circle.p12 .value-bar{transform:rotate(43deg)}.progress-circle.p13 .value-bar{transform:rotate(47deg)}.progress-circle.p14 .value-bar{transform:rotate(50deg)}.progress-circle.p15 .value-bar{transform:rotate(54deg)}.progress-circle.p16 .value-bar{transform:rotate(58deg)}.progress-circle.p17 .value-bar{transform:rotate(61deg)}.progress-circle.p18 .value-bar{transform:rotate(65deg)}.progress-circle.p19 .value-bar{transform:rotate(68deg)}.progress-circle.p20 .value-bar{transform:rotate(72deg)}.progress-circle.p21 .value-bar{transform:rotate(76deg)}.progress-circle.p22 .value-bar{transform:rotate(79deg)}.progress-circle.p23 .value-bar{transform:rotate(83deg)}.progress-circle.p24 .value-bar{transform:rotate(86deg)}.progress-circle.p25 .value-bar{transform:rotate(90deg)}.progress-circle.p26 .value-bar{transform:rotate(94deg)}.progress-circle.p27 .value-bar{transform:rotate(97deg)}.progress-circle.p28 .value-bar{transform:rotate(101deg)}.progress-circle.p29 .value-bar{transform:rotate(104deg)}.progress-circle.p30 .value-bar{transform:rotate(108deg)}.progress-circle.p31 .value-bar{transform:rotate(112deg)}.progress-circle.p32 .value-bar{transform:rotate(115deg)}.progress-circle.p33 .value-bar{transform:rotate(119deg)}.progress-circle.p34 .value-bar{transform:rotate(122deg)}.progress-circle.p35 .value-bar{transform:rotate(126deg)}.progress-circle.p36 .value-bar{transform:rotate(130deg)}.progress-circle.p37 .value-bar{transform:rotate(133deg)}.progress-circle.p38 .value-bar{transform:rotate(137deg)}.progress-circle.p39 .value-bar{transform:rotate(140deg)}.progress-circle.p40 .value-bar{transform:rotate(144deg)}.progress-circle.p41 .value-bar{transform:rotate(148deg)}.progress-circle.p42 .value-bar{transform:rotate(151deg)}.progress-circle.p43 .value-bar{transform:rotate(155deg)}.progress-circle.p44 .value-bar{transform:rotate(158deg)}.progress-circle.p45 .value-bar{transform:rotate(162deg)}.progress-circle.p46 .value-bar{transform:rotate(166deg)}.progress-circle.p47 .value-bar{transform:rotate(169deg)}.progress-circle.p48 .value-bar{transform:rotate(173deg)}.progress-circle.p49 .value-bar{transform:rotate(176deg)}.progress-circle.p50 .value-bar{transform:rotate(180deg)}.progress-circle.p51 .value-bar{transform:rotate(184deg)}.progress-circle.p52 .value-bar{transform:rotate(187deg)}.progress-circle.p53 .value-bar{transform:rotate(191deg)}.progress-circle.p54 .value-bar{transform:rotate(194deg)}.progress-circle.p55 .value-bar{transform:rotate(198deg)}.progress-circle.p56 .value-bar{transform:rotate(202deg)}.progress-circle.p57 .value-bar{transform:rotate(205deg)}.progress-circle.p58 .value-bar{transform:rotate(209deg)}.progress-circle.p59 .value-bar{transform:rotate(212deg)}.progress-circle.p60 .value-bar{transform:rotate(216deg)}.progress-circle.p61 .value-bar{transform:rotate(220deg)}.progress-circle.p62 .value-bar{transform:rotate(223deg)}.progress-circle.p63 .value-bar{transform:rotate(227deg)}.progress-circle.p64 .value-bar{transform:rotate(230deg)}.progress-circle.p65 .value-bar{transform:rotate(234deg)}.progress-circle.p66 .value-bar{transform:rotate(238deg)}.progress-circle.p67 .value-bar{transform:rotate(241deg)}.progress-circle.p68 .value-bar{transform:rotate(245deg)}.progress-circle.p69 .value-bar{transform:rotate(248deg)}.progress-circle.p70 .value-bar{transform:rotate(252deg)}.progress-circle.p71 .value-bar{transform:rotate(256deg)}.progress-circle.p72 .value-bar{transform:rotate(259deg)}.progress-circle.p73 .value-bar{transform:rotate(263deg)}.progress-circle.p74 .value-bar{transform:rotate(266deg)}.progress-circle.p75 .value-bar{transform:rotate(270deg)}.progress-circle.p76 .value-bar{transform:rotate(274deg)}.progress-circle.p77 .value-bar{transform:rotate(277deg)}.progress-circle.p78 .value-bar{transform:rotate(281deg)}.progress-circle.p79 .value-bar{transform:rotate(284deg)}.progress-circle.p80 .value-bar{transform:rotate(288deg)}.progress-circle.p81 .value-bar{transform:rotate(292deg)}.progress-circle.p82 .value-bar{transform:rotate(295deg)}.progress-circle.p83 .value-bar{transform:rotate(299deg)}.progress-circle.p84 .value-bar{transform:rotate(302deg)}.progress-circle.p85 .value-bar{transform:rotate(306deg)}.progress-circle.p86 .value-bar{transform:rotate(310deg)}.progress-circle.p87 .value-bar{transform:rotate(313deg)}.progress-circle.p88 .value-bar{transform:rotate(317deg)}.progress-circle.p89 .value-bar{transform:rotate(320deg)}.progress-circle.p90 .value-bar{transform:rotate(324deg)}.progress-circle.p91 .value-bar{transform:rotate(328deg)}.progress-circle.p92 .value-bar{transform:rotate(331deg)}.progress-circle.p93 .value-bar{transform:rotate(335deg)}.progress-circle.p94 .value-bar{transform:rotate(338deg)}.progress-circle.p95 .value-bar{transform:rotate(342deg)}.progress-circle.p96 .value-bar{transform:rotate(346deg)}.progress-circle.p97 .value-bar{transform:rotate(349deg)}.progress-circle.p98 .value-bar{transform:rotate(353deg)}.progress-circle.p99 .value-bar{transform:rotate(356deg)}.progress-circle.p100 .value-bar{transform:rotate(360deg)}.left-half-clipper{border-radius:50%;width:5em;height:5em;position:absolute;clip:rect(0, 5em, 5em, 2.5em)}.value-bar{position:absolute;clip:rect(0, 2.5em, 5em, 0);width:5em;height:5em;border-radius:50%;border:0.45em solid #53777a;box-sizing:border-box}.align-autoplay{align-items:flex-end;margin-right:7px}.fr-hovered-over-file{background-color:#F0F0F0}.fr-thumbnail-padding{padding-right:4px}.fr-popup .fr-command.fr-btn[data-cmd="filestackIcon"] svg path,.fr-popup .fr-command.fr-btn[data-cmd="openFilePickerVideo"] svg path,.fr-popup .fr-command.fr-btn[data-cmd="openFilePickerImage"] svg path,.fr-toolbar .fr-command.fr-btn[data-cmd="openFilePicker"] svg path,.fr-toolbar .fr-command.fr-btn[data-cmd="openFilePickerImage"] svg path,.fr-popup .fr-tabs .fr-command.fr-btn[data-cmd="openFilePicker"] svg path,.fr-popup .fr-tabs .fr-command.fr-btn[data-cmd="openFilePickerImage"] svg path,.fr-popup .fr-tabs .fr-command.fr-btn[data-cmd="openFilePickerVideo"] svg path,.fr-command.fr-btn[data-cmd="openFilePickerReplaceImageOnly"] svg path,.fr-command.fr-btn[data-cmd="openFilePickerReplaceVideoOnly"] svg path,.fr-toolbar .fr-command.fr-btn[data-cmd="openFilePickerVideo"] svg path,.fr-toolbar .fr-command.fr-btn[data-cmd="openFilePickerImageOnly"] svg path:last-child,.fr-toolbar .fr-command.fr-btn[data-cmd="openFilePickerVideoOnly"] svg path:last-child,.fr-popup .fr-command.fr-btn[data-cmd="openFilePickerImage"] svg path,.fr-popup .fr-command.fr-btn[data-cmd="openFilePickerVideo"] svg path,.fr-popup .fr-command.fr-btn[data-cmd="filestackIcon"] svg path,.fr-popup .fr-command.fr-btn[data-cmd="openFilePickerFile"] svg path{fill:#ef4a25}.fr-command.fr-filestack-active.fr-btn.fr-filestack-active svg path{fill:#0098F7}.fsp-picker-appear-active{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);z-index:9}body.fr-fullscreen .fs-transforms-container{position:absolute;z-index:2247483660}.fsp-notifications__container{position:fixed !important}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-find-replace-layer .fr-header{padding:15px}.fr-find-replace-layer .fr-body{padding:0 15px 15px}.fr-find-replace-layer .fr-drag-handle{cursor:move}.fr-find-replace-layer h3{margin:0;font-size:16px;text-align:left;font-weight:bold}.fr-find-replace-layer .fr-body .fr-input-line input.fr-disabled{background-color:#f5f5f5;color:#a9a9a9;border:1px solid #d1d1d1;cursor:not-allowed}.fr-find-replace-layer .fr-body .fr-input-line input#fr-findText::placeholder,.fr-find-replace-layer .fr-body .fr-input-line input#fr-replaceText::placeholder{color:#a9a9a9}.fr-find-replace-layer .fr-body .fr-input-line.fr-find-field{width:227px;padding-bottom:5px}.fr-find-replace-layer .fr-body .fr-input-line.fr-replace-field{top:-8px;padding-bottom:0px}.fr-find-replace-layer .fr-body .fr-label-disabled{background-color:#f5f5f5}.fr-find-replace-layer .fr-body .fr-close-btn{position:absolute;top:2px;right:10px;font-size:25px;background:none;border:none;cursor:pointer;color:#333333}.fr-find-replace-layer .fr-body .fr-close-btn:hover{color:#CCCCCC}.fr-find-replace-layer .fr-body .fr-toggle-advanced-options{display:flex;align-items:center;justify-content:space-between;padding:10px 0px;background-color:#f5f5f5;border-radius:4px;cursor:pointer;font-weight:bold;transition:background-color 0.3s ease;width:auto;background:none;color:#333333}.fr-find-replace-layer .fr-body input{padding:8px;font-size:14px;border:1px solid #CCCCCC;border-radius:4px;margin-left:0px}.fr-find-replace-layer .fr-body .fr-input-container{position:relative;display:flex;align-items:center;width:100%}.fr-find-replace-layer .fr-body .fr-arrow-buttons{display:flex;flex-direction:row;gap:5px;margin-left:10px;margin-top:10px}.fr-find-replace-layer .fr-body .fr-arrow-buttons button{border:none;background:none;cursor:pointer;padding:2px 4px;margin-bottom:12px;font-size:12px}.fr-find-replace-layer .fr-body .fr-arrow-buttons .fr-disabled{pointer-events:none;cursor:not-allowed;color:#a9a9a9}.fr-find-replace-layer .fr-body .fr-button-group{display:flex;gap:10px;justify-content:flex-end;margin-top:10px}.fr-find-replace-layer .fr-body .fr-button-group button.fr-find-btn{background-color:#FFF;color:#0098f7;margin-top:10px;border:1px solid #0098f7}.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-btn{background-color:#FFF;color:#0098f7;font-size:14px;margin-top:10px}.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-btn.fr-disabled{pointer-events:none;cursor:not-allowed;color:#a9a9a9}.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-all-btn{background-color:#FFF;color:#0098f7;font-size:14px;margin-top:10px}.fr-find-replace-layer .fr-body .fr-button-group button.fr-replace-all-btn.fr-disabled{pointer-events:none;cursor:not-allowed;color:#a9a9a9}.fr-find-replace-layer .fr-body button{padding:8px 12px;font-size:14px;border:none;border-radius:4px;cursor:pointer}.fr-find-replace-layer .fr-body .fr-input-container{position:relative;display:flex;align-items:center}.fr-find-replace-layer .fr-body #fr-replaceText{width:77%}.fr-find-replace-layer .fr-body #fr-findText{position:relative;padding-right:40px;font-size:14px;border:1px solid #CCCCCC;border-radius:4px}.fr-find-replace-layer .fr-body #fr-findText:focus{border:2px solid #0098f7}.fr-find-replace-layer .fr-body .fr-find-error{color:#f70000;font-size:12px;display:none;max-width:300px;overflow-wrap:break-word}.fr-find-replace-layer .fr-body #fr-findText.error{border-color:#f70000}.fr-find-replace-layer .fr-body .fr-count-indicator{position:absolute;right:80px;top:57%;transform:translateY(-50%);color:#CCCCCC;font-size:12px;pointer-events:none;visibility:hidden;z-index:10}.fr-find-replace-layer .fr-body .fr-toggle-advanced-options .arrow{font-size:15px;transition:transform 0.3s ease;margin-right:10px;font-size:14px;margin-right:4px;margin-top:2px;font-weight:100}.fr-find-replace-layer .fr-body .fr-advanced-options-panel{border-radius:4px}.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group{display:flex;flex-direction:column;gap:8px}.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group .fr-checkbox-row{display:flex;align-items:center;gap:6px;font-size:14px}.fr-find-replace-layer .fr-body .fr-advanced-options-panel .fr-checkbox-group .fr-checkbox-row input[type="checkbox"]:focus-visible{outline:2px solid #0098f7;outline-offset:2px}.fr-find-replace-layer .fr-body .fr-toggle-btn{width:40px;height:20px;background-color:#CCCCCC;border-radius:10px;position:relative;cursor:pointer;margin-right:10px;display:inline-block;vertical-align:middle}.fr-find-replace-layer .fr-body .fr-arrow{margin-right:5px;font-size:12px;margin-top:1px;position:absolute;right:15px}.fr-find-replace-layer .fr-body .fr-disabled svg.fr-arrow-button{fill:#a9a9a9}.fr-find-replace-layer .fr-body .fr-arrow-button{width:12px;height:12px}.fr-find-replace-layer .fr-body .fr-btn-active-popup{background:#d6d6d6}.fr-find-replace-highlight{background-color:#ffff00}.fr-find-replace-current-highlight{background-color:#ffa500}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}body.fr-fullscreen{overflow:hidden;height:100%;width:100%;position:fixed}.fr-box.fr-fullscreen{margin:0 !important;position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483630 !important;width:auto !important}.fr-box.fr-fullscreen .fr-wrapper{background-color:#FFF}.fr-box.fr-fullscreen.fr-basic.fr-top .fr-wrapper{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-fullscreen.fr-basic.fr-bottom .fr-wrapper{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-fullscreen .fr-toolbar{border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-box.fr-fullscreen .fr-toolbar.fr-top{top:0 !important}.fr-box.fr-fullscreen .fr-toolbar.fr-bottom{bottom:0 !important}.fr-box.fr-fullscreen .fr-second-toolbar{margin-top:0;border-radius:0;-moz-border-radius:0;-webkit-border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-fullscreen-wrapper{z-index:2147483640 !important;width:100% !important;margin:0 !important;padding:0 !important;overflow:visible !important}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal{text-align:left;padding:20px 20px 10px}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table{border-collapse:collapse;font-size:14px;line-height:1.5;width:100%}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table+table{margin-top:20px}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tr{border:0}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table th{text-align:left}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table th,.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table td{padding:6px 0 4px}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody tr{border-bottom:solid 1px #ebebeb}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:first-child{width:60%;color:#646464}.fr-modal .fr-modal-wrapper .fr-modal-body .fr-help-modal table tbody td:nth-child(n+2){letter-spacing:0.5px}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-element img{cursor:pointer;padding:0 1px}.fr-image-resizer{position:absolute;border:solid 1px #0098f7;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-image-resizer.fr-active{display:block}.fr-image-resizer .fr-handler{display:block;position:absolute;background:#0098f7;border:solid 1px #FFF;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;z-index:4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-image-resizer .fr-handler.fr-hnw{cursor:nw-resize}.fr-image-resizer .fr-handler.fr-hne{cursor:ne-resize}.fr-image-resizer .fr-handler.fr-hsw{cursor:sw-resize}.fr-image-resizer .fr-handler.fr-hse{cursor:se-resize}.fr-image-resizer .fr-handler{width:12px;height:12px}.fr-image-resizer .fr-handler.fr-hnw{left:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hne{right:-6px;top:-6px}.fr-image-resizer .fr-handler.fr-hsw{left:-6px;bottom:-6px}.fr-image-resizer .fr-handler.fr-hse{right:-6px;bottom:-6px}@media (min-width: 1200px){.fr-image-resizer .fr-handler{width:10px;height:10px}.fr-image-resizer .fr-handler.fr-hnw{left:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hne{right:-5px;top:-5px}.fr-image-resizer .fr-handler.fr-hsw{left:-5px;bottom:-5px}.fr-image-resizer .fr-handler.fr-hse{right:-5px;bottom:-5px}}.fr-image-overlay{position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483640;display:none}.fr-popup .fr-image-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;margin:20px;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;text-align:center}.fr-popup .fr-image-upload-layer:hover,.fr-popup .fr-image-upload-layer:has(.fr-not-empty){background:#ebebeb}.fr-popup .fr-image-upload-layer.fr-drop{background:#ebebeb;border-color:#0098f7}.fr-popup .fr-image-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0 !important;padding:0 !important;width:100% !important}.fr-popup .fr-image-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:100%;height:100%;margin:0;font-size:400px}.fr-popup .fr-image-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:normal}.fr-popup .fr-image-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-image-progress-bar-layer>div.fr-loader{background:#b3e0fd;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-image-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0%;background:#0098f7;-webkit-transition:width 0.2s ease 0s;-moz-transition:width 0.2s ease 0s;-ms-transition:width 0.2s ease 0s;-o-transition:width 0.2s ease 0s}.fr-popup .fr-image-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30% !important;position:absolute;top:0;-webkit-animation:loading 2s linear infinite;-moz-animation:loading 2s linear infinite;-o-animation:loading 2s linear infinite;animation:loading 2s linear infinite}.fr-popup .fr-image-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-image-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}.fr-image-size-layer .fr-image-group .fr-input-line{width:calc(50% - 5px);display:inline-block}.fr-image-size-layer .fr-image-group .fr-input-line+.fr-input-line{margin-left:10px}.fr-uploading{-webkit-opacity:0.4;-moz-opacity:0.4;opacity:0.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}@-webkit-keyframes loading{from{left:-25%}to{left:100%}}@-moz-keyframes loading{from{left:-25%}to{left:100%}}@-o-keyframes loading{from{left:-25%}to{left:100%}}@keyframes loading{from{left:-25%}to{left:100%}}img.fr-draggable{user-select:none}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-modal .fr-modal-head .fr-modal-head-line::after{clear:both;display:block;content:"";height:0}.fr-modal .fr-modal-head .fr-modal-head-line .fr-modal-more{margin-top:10px}.fr-modal .fr-modal-head .fr-modal-head-line .fr-modal-more.fr-not-available{opacity:0;width:0;padding:12px 0}.fr-modal .fr-modal-head .fr-modal-tags{padding:0 20px;display:none;text-align:left}.fr-modal .fr-modal-head .fr-modal-tags a{display:inline-block;opacity:0;padding:6px 12px;margin:8px 0 8px 8px;text-decoration:none;border-radius:32px;-moz-border-radius:32px;-webkit-border-radius:32px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-transition:opacity 0.2s ease 0s, background 0.2s ease 0s;-moz-transition:opacity 0.2s ease 0s, background 0.2s ease 0s;-ms-transition:opacity 0.2s ease 0s, background 0.2s ease 0s;-o-transition:opacity 0.2s ease 0s, background 0.2s ease 0s;cursor:pointer;background-color:#f5f5f5}.fr-modal .fr-modal-head .fr-modal-tags a:focus{outline:none;background-color:#ebebeb}.fr-modal .fr-modal-head .fr-modal-tags a:hover{background-color:#ebebeb}.fr-modal .fr-modal-head .fr-modal-tags a:active{background-color:#d6d6d6}.fr-modal .fr-modal-head .fr-modal-tags a.fr-selected-tag{background-color:#EcF5Ff;color:#0098f7}.fr-modal .fr-modal-head .fr-modal-tags a.fr-selected-tag:focus{outline:none;background-color:#ebebeb}.fr-modal .fr-modal-head .fr-modal-tags a.fr-selected-tag:hover{background-color:#ebebeb}.fr-modal .fr-modal-head .fr-modal-tags a.fr-selected-tag:active{background-color:#d6d6d6}.fr-show-tags .fr-modal-more svg path{fill:#0098f7}div.fr-modal-body{-webkit-transition:background 0.2s ease 0s;-moz-transition:background 0.2s ease 0s;-ms-transition:background 0.2s ease 0s;-o-transition:background 0.2s ease 0s}div.fr-modal-body .fr-preloader{display:block;margin:50px auto}div.fr-modal-body div.fr-image-list{text-align:center;margin:0 20px;padding:0}div.fr-modal-body div.fr-image-list .fr-list-column{float:left;width:calc((100% - 20px) / 2)}@media (min-width: 768px) and (max-width: 1199px){div.fr-modal-body div.fr-image-list .fr-list-column{width:calc((100% - 40px) / 3)}}@media (min-width: 1200px){div.fr-modal-body div.fr-image-list .fr-list-column{width:calc((100% - 60px) / 4)}}div.fr-modal-body div.fr-image-list .fr-list-column+.fr-list-column{margin-left:20px}div.fr-modal-body div.fr-image-list div.fr-image-container{position:relative;width:100%;display:block;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;overflow:hidden}div.fr-modal-body div.fr-image-list div.fr-image-container:first-child{margin-top:20px}div.fr-modal-body div.fr-image-list div.fr-image-container+div{margin-top:20px}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::after{position:absolute;-webkit-opacity:0.5;-moz-opacity:0.5;opacity:0.5;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";-webkit-transition:opacity 0.2s ease 0s;-moz-transition:opacity 0.2s ease 0s;-ms-transition:opacity 0.2s ease 0s;-o-transition:opacity 0.2s ease 0s;background:#000;content:"";top:0;left:0;bottom:0;right:0;z-index:2}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-image-deleting::before{content:attr(data-deleting);color:#FFF;top:0;left:0;bottom:0;right:0;margin:auto;position:absolute;z-index:3;font-size:15px;height:20px}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty{height:95px;background:#CCCCCC;z-index:1}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-empty::after{position:absolute;margin:auto;top:0;bottom:0;left:0;right:0;content:attr(data-loading);display:inline-block;height:20px}div.fr-modal-body div.fr-image-list div.fr-image-container img{width:100%;vertical-align:middle;position:relative;z-index:2;-webkit-opacity:1;-moz-opacity:1;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";-webkit-transition:opacity 0.2s ease 0s, filter 0.2s ease 0s;-moz-transition:opacity 0.2s ease 0s, filter 0.2s ease 0s;-ms-transition:opacity 0.2s ease 0s, filter 0.2s ease 0s;-o-transition:opacity 0.2s ease 0s, filter 0.2s ease 0s;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0)}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected img{-webkit-opacity:0.75;-moz-opacity:0.75;opacity:0.75;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-delete-img,div.fr-modal-body div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-insert-img{display:inline-block}div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img,div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img{display:none;top:50%;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;-webkit-transition:background 0.2s ease 0s, color 0.2s ease 0s;-moz-transition:background 0.2s ease 0s, color 0.2s ease 0s;-ms-transition:background 0.2s ease 0s, color 0.2s ease 0s;-o-transition:background 0.2s ease 0s, color 0.2s ease 0s;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:absolute;cursor:pointer;margin:0;line-height:40px;text-decoration:none;z-index:3}div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img{background:#B8312F;fill:#FFF;padding:8px;left:50%;-webkit-transform:translateY(-50%) translateX(25%);-moz-transform:translateY(-50%) translateX(25%);-ms-transform:translateY(-50%) translateX(25%);-o-transform:translateY(-50%) translateX(25%)}div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img{background:#FFF;fill:#0098f7;padding:8px;left:50%;-webkit-transform:translateY(-50%) translateX(-125%);-moz-transform:translateY(-50%) translateX(-125%);-ms-transform:translateY(-50%) translateX(-125%);-o-transform:translateY(-50%) translateX(-125%)}.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover img{-webkit-opacity:0.75;-moz-opacity:0.75;opacity:0.75;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"}.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-delete-img,.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container:hover .fr-insert-img{display:inline-block;width:40px;height:40px}.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-delete-img:hover{background:#bf4644;color:#FFF}.fr-desktop .fr-modal-wrapper div.fr-modal-body div.fr-image-list div.fr-image-container .fr-insert-img:hover{background:#ebebeb}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-line-breaker{cursor:text;border-top:1px solid #0098f7;position:fixed;z-index:2;display:none}.fr-line-breaker.fr-visible{display:block}.fr-line-breaker a.fr-floating-btn{position:absolute;left:calc(50% - (40px / 2));top:-20px}.fr-line-breaker a.fr-floating-btn svg{margin:8px;height:24px;width:24px}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-wrapper-markdown{display:flex}.fr-markdown-view{width:calc(52% - 1px);box-sizing:inherit}.fr-markdown-editor{width:calc(48% - 1px);box-sizing:inherit;background-color:#eee}.fr-markdown-editor>p{margin:0}.fr-markdown-view>p{margin-top:0}.gutter-horizontal{display:flex;z-index:9;background-color:#dadada;cursor:col-resize;width:2px}.e-resize-handler{z-index:9;width:1px;display:flex;justify-content:center;align-items:center;align-self:center;position:relative;font-size:10px;color:#c5c5c5}.fr-markdown-view>dl{margin-top:0;margin-bottom:1rem}.fr-markdown-view>dt{font-weight:700}.fr-markdown-view>dd{margin-bottom:.5rem;margin-left:0}.fr-markdown-view>pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;background-color:#f8f8f8;border:1px solid #dfdfdf;margin-top:1.5em;margin-bottom:1.5em;padding:0.125rem 0.3125rem 0.0625rem}.fr-markdown-view>code{background-color:#f8f8f8;border-color:#dfdfdf;border-style:solid;border-width:1px;color:#333;font-family:Consolas,"Liberation Mono",Courier,monospace;font-weight:normal;padding:0.125rem 0.3125rem 0.0625rem}.fr-markdown-view>pre code{background-color:transparent;border:0;padding:0}.fr-markdown-view>sup{top:-.5em}.footnote-a{color:#007bff;text-decoration:none;background-color:transparent}.fr-markdown-view>hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}.blockquote{margin:0 0 1rem;border-left:5px solid #eee;padding:10px 20px;font-size:1.25rem}.fr-markdown-view>table{width:100%;max-width:100%;margin-bottom:20px;background-color:transparent;border-spacing:0;border-collapse:collapse}.fr-markdown-view>table>tbody>tr>td,.fr-markdown-view>table>tbody>tr>th,.fr-markdown-view>table>thead>tr>td,.fr-markdown-view>table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border:1px solid #ddd}.fr-markdown-view>table>thead>tr>td,.fr-markdown-view>table>thead>tr>th{border-bottom-width:2px}.fr-markdown-view>table>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.fr-markdown-view>a{color:#337ab7;text-decoration:none}.fr-markdown-view>h1{font-size:2em !important}.fr-markdown-view>h2{font-size:1.5em !important}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-quick-insert{position:absolute;z-index:2147483639;white-space:nowrap;padding-right:10px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-quick-insert a.fr-floating-btn svg{margin:8px;width:24px;height:24px}.fr-quick-insert.fr-on a.fr-floating-btn svg{-webkit-transform:rotate(135deg);-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-o-transform:rotate(135deg)}.fr-quick-insert.fr-hidden{display:none}.fr-qi-helper{position:absolute;z-index:3;padding-left:20px;white-space:nowrap}.fr-qi-helper a.fr-btn.fr-floating-btn{text-align:center;padding:6px 10px 10px 10px;display:inline-block;color:#222222;background:#FFF;-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0)}.fr-qi-helper a.fr-btn.fr-floating-btn svg{fill:#222222}.fr-qi-helper a.fr-btn.fr-floating-btn.fr-size-1{-webkit-opacity:1;-moz-opacity:1;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1)}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-popup .fr-buttons.fr-tabs .fr-special-character-category{padding:10px 15px}.fr-popup .fr-buttons.fr-tabs .fr-special-character-category span{font-weight:normal;font-size:16px}.fr-popup .fr-special-character{width:24px;height:24px}@media screen and (-ms-high-contrast: active) and (min-width: 768px), (-ms-high-contrast: none) and (min-width: 768px){.fr-popup .fr-icon-container.fr-sc-container{width:368px}}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-element table td.fr-selected-cell,.fr-element table th.fr-selected-cell{border:1px double #0098f7;position:relative;background-color:rgba(0,100,255,0.15)}.fr-element table td,.fr-element table th{user-select:text;-o-user-select:text;-moz-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-ms-user-select:text}.fr-element .fr-no-selection table td,.fr-element .fr-no-selection table th{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-table-resizer{cursor:col-resize;position:absolute;z-index:3;display:none}.fr-table-resizer.fr-moving{z-index:2}.fr-table-resizer div{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";border-right:1px solid #0098f7}.fr-no-selection{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-table-selector{display:block;position:absolute;z-index:3;width:16px;height:16px;padding:3px;border:transparent 2px solid;border-radius:4px 4px 0 0}.fr-table-selector a{width:16px;height:16px;display:block}.fr-table-selector a>svg{width:16px;height:16px}.fr-table-selector-active{opacity:1;visibility:visible;border:#F6D146 2px solid;background-color:#F6D146}.fr-table-selector-active a>svg{color:#F6D146}.fr-table-selector-active-selected{border:#0098F7 2px solid;background-color:#0098F7}.fr-table-selector-active-selected a>svg{color:#0098F7}.fr-table-selector-inactive{opacity:0;visibility:hidden}.fr-view .fr-table-selection-hover{outline:#F6D146 2px solid}.fr-view .fr-table-selected{outline:#0098F7 2px solid;caret-color:transparent}.fr-popup .fr-table-size{margin:20px}.fr-popup .fr-table-size .fr-table-size-info{text-align:center;font-size:14px}.fr-popup .fr-table-size .fr-select-table-size{line-height:0;padding:5px;white-space:nowrap}.fr-popup .fr-table-size .fr-select-table-size>span{display:inline-block;padding:0 4px 4px 0;background:transparent}.fr-popup .fr-table-size .fr-select-table-size>span>span{display:inline-block;width:18px;height:18px;border:1px solid #DDD}.fr-popup .fr-table-size .fr-select-table-size>span.hover{background:transparent}.fr-popup .fr-table-size .fr-select-table-size>span.hover>span{background:rgba(0,152,247,0.3);border:solid 1px #0098f7}.fr-popup .fr-table-size .fr-select-table-size .new-line::after{clear:both;display:block;content:"";height:0}.fr-popup.fr-above .fr-table-size .fr-select-table-size>span{display:inline-block !important}.fr-popup .fr-table-colors{display:block;padding:20px;padding-bottom:0}.fr-popup.fr-desktop .fr-table-size .fr-select-table-size>span>span{width:12px;height:12px}.fr-insert-helper{position:absolute;z-index:9999;white-space:nowrap}.fr-view .fr-table-selected *::selection{background:transparent}.fr-view .fr-table-selected *::-moz-selection{background:transparent}.fr-cell-properties-form,.fr-table-properties-form{padding:15px;width:360px;max-width:100%;background-color:#FFF;border-radius:10px}.fr-cell-properties-form .fr-cell-properties-section,.fr-cell-properties-form .fr-table-properties-section,.fr-table-properties-form .fr-cell-properties-section,.fr-table-properties-form .fr-table-properties-section{margin-bottom:12px}.fr-cell-properties-form .fr-cell-properties-section label,.fr-cell-properties-form .fr-table-properties-section label,.fr-table-properties-form .fr-cell-properties-section label,.fr-table-properties-form .fr-table-properties-section label{font-weight:bold;display:block;margin-bottom:6px;font-size:14px}.fr-cell-properties-form .fr-cell-bg-container,.fr-cell-properties-form .fr-table-bg-container,.fr-table-properties-form .fr-cell-bg-container,.fr-table-properties-form .fr-table-bg-container{display:flex;align-items:center;position:relative;width:100%}.fr-cell-properties-form .fr-cell-bg-container .fr-input,.fr-cell-properties-form .fr-table-bg-container .fr-input,.fr-table-properties-form .fr-cell-bg-container .fr-input,.fr-table-properties-form .fr-table-bg-container .fr-input{flex:1;height:36px;padding:4px 12px;border:1px solid #CCCCCC;border-radius:2px 0 0 2px;box-sizing:border-box;font-size:14px}.fr-cell-properties-form .fr-cell-bg-container .fr-input:focus,.fr-cell-properties-form .fr-table-bg-container .fr-input:focus,.fr-table-properties-form .fr-cell-bg-container .fr-input:focus,.fr-table-properties-form .fr-table-bg-container .fr-input:focus{outline:none;border-color:#0098f7}.fr-cell-properties-form .fr-cell-bg-container .fr-input.fr-disabled,.fr-cell-properties-form .fr-table-bg-container .fr-input.fr-disabled,.fr-table-properties-form .fr-cell-bg-container .fr-input.fr-disabled,.fr-table-properties-form .fr-table-bg-container .fr-input.fr-disabled{background-color:#f5f5f5;color:#a9a9a9;border:1px solid #d1d1d1;cursor:not-allowed}.fr-cell-properties-form .fr-cell-bg-container .fr-input::placeholder,.fr-cell-properties-form .fr-table-bg-container .fr-input::placeholder,.fr-table-properties-form .fr-cell-bg-container .fr-input::placeholder,.fr-table-properties-form .fr-table-bg-container .fr-input::placeholder{color:#AAA}.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color{width:36px;height:36px;border:1px solid #CCCCCC;border-left:none;border-radius:0 2px 2px 0;position:relative;padding:0;background:transparent;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;margin:-1px 0 0 -1px}.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color:hover,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color:hover,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color:hover,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color:hover,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color:hover,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color:hover,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color:hover,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color:hover,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color:hover,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color:hover,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color:hover,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color:hover{background-color:#ebebeb}.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview{width:20px;height:20px;border:1px solid #999999;border-radius:2px;position:relative;overflow:hidden}.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-cell-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-cell-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-cell-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-bg-color .fr-table-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-color-preview .fr-table-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-color-preview-indicator,.fr-table-properties-form .fr-table-bg-container .fr-btn-table-border-bg-color .fr-table-color-preview .fr-table-color-preview-indicator{position:absolute;background:red;width:28px;height:1px;top:9px;left:-4px;transform:rotate(-45deg);transform-origin:center}.fr-cell-properties-form .fr-cell-dimensions-container,.fr-table-properties-form .fr-cell-dimensions-container{display:flex;gap:10px;margin-bottom:12px}.fr-cell-properties-form .fr-cell-dimensions-container label,.fr-table-properties-form .fr-cell-dimensions-container label{font-weight:bold;font-size:14px}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section{flex:1}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs{display:flex;gap:6px;align-items:center}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input{width:90px;padding:8px;border:1px solid #CCCCCC;border-radius:2px;font-size:14px}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input:focus,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input:focus{outline:none;border-color:#0098f7}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input.fr-disabled,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input.fr-disabled{background-color:#f5f5f5;color:#a9a9a9;border:1px solid #d1d1d1;cursor:not-allowed}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input::placeholder,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs input::placeholder{color:#AAA}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs .fr-dimension-separator,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-dimension-section .fr-dimension-inputs .fr-dimension-separator{line-height:1;font-size:16px}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section{flex:1}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section label,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section label{font-weight:bold;font-size:14px}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input{width:90px;padding:8px;border:1px solid #CCCCCC;border-radius:2px;font-size:14px}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input:focus,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input:focus{outline:none;border-color:#0098f7}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input.fr-disabled,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input.fr-disabled{background-color:#f5f5f5;color:#a9a9a9;border:1px solid #d1d1d1;cursor:not-allowed}.fr-cell-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input::placeholder,.fr-table-properties-form .fr-cell-dimensions-container .fr-cell-padding-section input::placeholder{color:#AAA}.fr-cell-properties-form .fr-cell-properties-buttons,.fr-cell-properties-form .fr-table-properties-buttons,.fr-table-properties-form .fr-cell-properties-buttons,.fr-table-properties-form .fr-table-properties-buttons{display:flex;justify-content:flex-end;gap:10px;margin-top:20px}.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button,.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button,.fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button,.fr-cell-properties-form .fr-table-properties-buttons .fr-save-button,.fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button,.fr-table-properties-form .fr-cell-properties-buttons .fr-save-button,.fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button,.fr-table-properties-form .fr-table-properties-buttons .fr-save-button{font-size:14px;cursor:pointer;padding:8px 12px;font-weight:500;height:36px;line-height:20px;box-sizing:border-box}.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button.fr-disabled,.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button.fr-disabled,.fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button.fr-disabled,.fr-cell-properties-form .fr-table-properties-buttons .fr-save-button.fr-disabled,.fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button.fr-disabled,.fr-table-properties-form .fr-cell-properties-buttons .fr-save-button.fr-disabled,.fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button.fr-disabled,.fr-table-properties-form .fr-table-properties-buttons .fr-save-button.fr-disabled{pointer-events:none;cursor:not-allowed;color:#a9a9a9}.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button,.fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button,.fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button,.fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button{background:none;border:none;color:#0098f7;border-radius:2px}.fr-cell-properties-form .fr-cell-properties-buttons .fr-cancel-button:hover,.fr-cell-properties-form .fr-table-properties-buttons .fr-cancel-button:hover,.fr-table-properties-form .fr-cell-properties-buttons .fr-cancel-button:hover,.fr-table-properties-form .fr-table-properties-buttons .fr-cancel-button:hover{text-decoration:underline}.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button,.fr-cell-properties-form .fr-table-properties-buttons .fr-save-button,.fr-table-properties-form .fr-cell-properties-buttons .fr-save-button,.fr-table-properties-form .fr-table-properties-buttons .fr-save-button{background-color:#FFF;border:1px solid #0098f7;color:#0098f7;border-radius:2px}.fr-cell-properties-form .fr-cell-properties-buttons .fr-save-button:hover,.fr-cell-properties-form .fr-table-properties-buttons .fr-save-button:hover,.fr-table-properties-form .fr-cell-properties-buttons .fr-save-button:hover,.fr-table-properties-form .fr-table-properties-buttons .fr-save-button:hover{background-color:#ebebeb}.fr-cell-properties-form .fr-error,.fr-table-properties-form .fr-error{color:red;font-size:12px;padding-bottom:5px;display:none}.fr-cell-properties-form input.fr-error,.fr-table-properties-form input.fr-error{border-color:red;display:block}.fr-table-properties-section label:not(:first-child){margin-top:15px}.fr-table-properties-section .fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a{line-height:170%}.fr-table-bg-container .fr-input-line,.fr-table-border-container .fr-input-line,.fr-table-dimentions-container .fr-input-line,.fr-table-style-container .fr-input-line{padding:0px;width:100%}.fr-table-bg-container .fr-input-line input[type="text"],.fr-table-border-container .fr-input-line input[type="text"],.fr-table-dimentions-container .fr-input-line input[type="text"],.fr-table-style-container .fr-input-line input[type="text"]{height:36px;border-color:#CCCCCC}.fr-table-bg-container .fr-input-line input+label,.fr-table-border-container .fr-input-line input+label,.fr-table-dimentions-container .fr-input-line input+label,.fr-table-style-container .fr-input-line input+label{top:-5px;font-weight:100}.fr-table-bg-container .fr-input-line input.fr-not-empty+label,.fr-table-border-container .fr-input-line input.fr-not-empty+label,.fr-table-dimentions-container .fr-input-line input.fr-not-empty+label,.fr-table-style-container .fr-input-line input.fr-not-empty+label{top:-20px;font-weight:100}.fr-table-bg-container .fr-input-line #fr-table-border-style,.fr-table-border-container .fr-input-line #fr-table-border-style,.fr-table-dimentions-container .fr-input-line #fr-table-border-style,.fr-table-style-container .fr-input-line #fr-table-border-style{width:90%;height:36px;border-color:#CCCCCC;border-radius:2px}.fr-table-bg-container .fr-input-line .fr-field-lable,.fr-table-border-container .fr-input-line .fr-field-lable,.fr-table-dimentions-container .fr-input-line .fr-field-lable,.fr-table-style-container .fr-input-line .fr-field-lable{position:absolute;font-size:11px;padding:0px 3px;margin:-6px 5px;background:#FFF;font-weight:100;color:dimgray;z-index:3}.fr-table-bg-container .fr-input-line .fr-buttons,.fr-table-border-container .fr-input-line .fr-buttons,.fr-table-dimentions-container .fr-input-line .fr-buttons,.fr-table-style-container .fr-input-line .fr-buttons{padding:0px}.fr-table-bg-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after,.fr-table-border-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after,.fr-table-dimentions-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after,.fr-table-style-container .fr-input-line .fr-command.fr-btn.fr-dropdown:after{right:10px}.fr-table-bg-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active,.fr-table-border-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active,.fr-table-dimentions-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active,.fr-table-style-container .fr-input-line .fr-command.fr-btn.fr-dropdown.fr-active{background:transparent}.fr-table-bg-container .fr-input-line .fr-dropdown,.fr-table-border-container .fr-input-line .fr-dropdown,.fr-table-dimentions-container .fr-input-line .fr-dropdown,.fr-table-style-container .fr-input-line .fr-dropdown{margin:0px;background:transparent;border:1px solid #CCCCCC;margin-right:10px;height:36px;border-radius:2px}.fr-table-border-container .fr-dropdown-wrapper{width:120px}.fr-table-alignment-section{margin-left:10px}.fr-table-border-container,.fr-table-dimentions-container,.fr-table-dimentions-section{display:flex;margin-top:10px}.fr-table-border-container .fr-dimension-separator,.fr-table-dimentions-container .fr-dimension-separator,.fr-table-dimentions-section .fr-dimension-separator{margin:10px 5px}.fr-table-border-container .fr-btn-table-border-bg-color,.fr-table-dimentions-container .fr-btn-table-border-bg-color,.fr-table-dimentions-section .fr-btn-table-border-bg-color{margin-right:10px;background:transparent;border:1px solid #CCCCCC;border-radius:2px;border-left:0px;height:36px;margin-left:-1px}.fr-table-border-container .fr-btn-table-border-bg-color .fr-border-color-preview,.fr-table-dimentions-container .fr-btn-table-border-bg-color .fr-border-color-preview,.fr-table-dimentions-section .fr-btn-table-border-bg-color .fr-border-color-preview{width:20px;height:20px;border:1px solid #999999;border-radius:2px;position:relative;overflow:hidden}.fr-table-border-container .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator,.fr-table-dimentions-container .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator,.fr-table-dimentions-section .fr-btn-table-border-bg-color .fr-border-color-preview .fr-border-color-preview-indicator{position:absolute;background:red;width:28px;height:1px;top:9px;left:-4px;transform:rotate(-45deg);transform-origin:center}.fr-table-style>button{width:100%}.fr-table-style .fr-dropdown-wrapper{width:200px}.fr-table-alignment-container{height:33px;border:1px solid #CCCCCC;margin-top:10px;border-radius:2px;min-width:130px}.fr-table-alignment-container button{height:30px;width:36px;padding:2px 2px 2px 5px;border:none;background:transparent;margin:2px;cursor:pointer}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}#fr-form-container{margin:auto;position:relative;top:10%;background-color:#f5f5f5;width:60%;border-radius:5px;z-index:9002;overflow:auto;background-color:#fefefe}.fr-trim-video-name{font-family:Arial, Helvetica, sans-serif;padding-top:15px}.fr-file-loader{border:4px solid #f3f3f3;border-radius:50%;border-top:4px solid #53777a;display:inline-block !important;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;width:20px;height:20px;display:block !important;align-items:center}.fr-trim-button{margin-top:5px;height:36px;line-height:1;color:#0098f7;padding:10px;cursor:pointer;text-decoration:none;border:none;background:none;font-size:16px;border-radius:5px;background-color:#eff5fa;outline:none}.fr-trim-button:hover{background:#ebebeb}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.fr-slidecontainer{width:100%}.fr-slider{-webkit-appearance:none;width:100%;height:15px;background:#d3d3d3}.fr-video-trim-buttons{text-align:right;padding-bottom:5px;padding-right:15px;margin-top:10px}.fr-slider::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;width:15px;height:15px;border-radius:50%;cursor:pointer}.fr-slider::-moz-range-thumb{width:15px;height:15px;background:#3498db;border-radius:50%;cursor:pointer}.fr-range-value-start{position:absolute}.fr-range-value-start>span{width:60px;height:24px;line-height:24px;text-align:center;background:#03a9f4;color:#fff;font-size:12px;display:block;position:absolute;left:50%;transform:translate(-85%, 0);border-radius:6px}.fr-range-value-start>span:before{content:"";position:absolute;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;left:86%;margin-left:-5px;margin-top:-1px}.fr-range-value-end{position:absolute}.fr-range-value-end>span{width:60px;height:24px;line-height:24px;text-align:center;background:#03a9f4;color:#fff;font-size:12px;display:block;position:absolute;left:14%;transform:translate(-8%, 0);border-radius:6px}.fr-range-value-end>span:before{content:"";position:absolute;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;left:14%;margin-left:-5px;margin-top:-1px}#startTimeValue{top:-153% !important}#startTimeValue span:before{border-top:10px solid #03a9f4;top:100%}#endTimeValue{top:-153% !important}#endTimeValue span:before{border-top:10px solid #03a9f4;top:100%}.fr-range-slider{position:relative;width:80%;height:15px}.fr-range-slider>input{pointer-events:none;position:absolute;left:0;top:10px;width:100%;outline:none;height:6px;border-radius:10px}.fr-range-slider>input::-webkit-slider-thumb{pointer-events:all;position:relative;z-index:1;-webkit-appearance:none;appearance:none;width:15px;height:15px;background:#3498db;cursor:pointer;border-radius:7px;margin-top:-3.6px}.fr-range-slider>input::-moz-range-thumb{pointer-events:all;position:relative;z-index:10;-moz-appearance:none;width:9px;height:15px;border-radius:7px;margin-top:-3.6px}.fr-range-slider>input::-moz-range-track{position:relative;z-index:-1;background-color:black;border:0;height:15px;border-radius:50%;margin-top:-3.6px}.fr-range-slider>input:last-of-type::-moz-range-track{-moz-appearance:none;background:none transparent;border:0}.fr-range-slider>input[type="range"]::-moz-focus-outer{border:0}@media screen and (max-width: 430px){.range-value span{width:40px;font-size:10px}#fr-form-container{top:20%}}#fr-video-edit{width:80%;text-align:center;height:50%;margin-bottom:20px;padding-top:8px;padding-bottom:8px}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-element .fr-video{user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-element .fr-video::after{position:absolute;content:'';z-index:1;top:0;left:0;right:0;bottom:0;cursor:pointer;display:block;background:transparent}.fr-element .fr-video.fr-active>*{z-index:2;position:relative}.fr-element .fr-video>*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;max-width:100%;border:none}.fr-box .fr-video-resizer{position:absolute;border:solid 1px #0098f7;display:none;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none}.fr-box .fr-video-resizer.fr-active{display:block}.fr-box .fr-video-resizer .fr-handler{display:block;position:absolute;background:#0098f7;border:solid 1px #FFF;z-index:4;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-box .fr-video-resizer .fr-handler.fr-hnw{cursor:nw-resize}.fr-box .fr-video-resizer .fr-handler.fr-hne{cursor:ne-resize}.fr-box .fr-video-resizer .fr-handler.fr-hsw{cursor:sw-resize}.fr-box .fr-video-resizer .fr-handler.fr-hse{cursor:se-resize}.fr-box .fr-video-resizer .fr-handler{width:12px;height:12px}.fr-box .fr-video-resizer .fr-handler.fr-hnw{left:-6px;top:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hne{right:-6px;top:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hsw{left:-6px;bottom:-6px}.fr-box .fr-video-resizer .fr-handler.fr-hse{right:-6px;bottom:-6px}@media (min-width: 1200px){.fr-box .fr-video-resizer .fr-handler{width:10px;height:10px}.fr-box .fr-video-resizer .fr-handler.fr-hnw{left:-5px;top:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hne{right:-5px;top:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hsw{left:-5px;bottom:-5px}.fr-box .fr-video-resizer .fr-handler.fr-hse{right:-5px;bottom:-5px}}.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line{width:calc(50% - 5px);display:inline-block}.fr-popup .fr-video-size-layer .fr-video-group .fr-input-line+.fr-input-line{margin-left:10px}.fr-popup .fr-video-upload-layer{border:dashed 2px #bdbdbd;padding:25px 0;margin:20px;position:relative;font-size:14px;letter-spacing:1px;line-height:140%;text-align:center}.fr-popup .fr-video-upload-layer:hover{background:#ebebeb}.fr-popup .fr-video-upload-layer.fr-drop{background:#ebebeb;border-color:#0098f7}.fr-popup .fr-video-upload-layer .fr-form{-webkit-opacity:0;-moz-opacity:0;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2147483640;overflow:hidden;margin:0 !important;padding:0 !important;width:100% !important}.fr-popup .fr-video-upload-layer .fr-form input{cursor:pointer;position:absolute;right:0;top:0;bottom:0;width:500%;height:100%;margin:0;font-size:400px}.fr-popup .fr-video-progress-bar-layer>h3{font-size:16px;margin:10px 0;font-weight:normal}.fr-popup .fr-video-progress-bar-layer>div.fr-action-buttons{display:none}.fr-popup .fr-video-progress-bar-layer>div.fr-loader{background:#b3e0fd;height:10px;width:100%;margin-top:20px;overflow:hidden;position:relative}.fr-popup .fr-video-progress-bar-layer>div.fr-loader span{display:block;height:100%;width:0%;background:#0098f7;-webkit-transition:width 0.2s ease 0s;-moz-transition:width 0.2s ease 0s;-ms-transition:width 0.2s ease 0s;-o-transition:width 0.2s ease 0s}.fr-popup .fr-video-progress-bar-layer>div.fr-loader.fr-indeterminate span{width:30% !important;position:absolute;top:0;-webkit-animation:loading 2s linear infinite;-moz-animation:loading 2s linear infinite;-o-animation:loading 2s linear infinite;animation:loading 2s linear infinite}.fr-popup .fr-video-progress-bar-layer.fr-error>div.fr-loader{display:none}.fr-popup .fr-video-progress-bar-layer.fr-error>div.fr-action-buttons{display:block}.fr-video-overlay{position:fixed;top:0;left:0;bottom:0;right:0;z-index:2147483640;display:none}.fr-autoplay-margin{margin-top:0px !important}.fr-clearfix::after{clear:both;display:block;content:"";height:0}.fr-hide-by-clipping{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fr-view img.fr-rounded,.fr-view .fr-img-caption.fr-rounded img{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view img.fr-shadow,.fr-view .fr-img-caption.fr-shadow img{-webkit-box-shadow:10px 10px 5px 0px #cccccc;-moz-box-shadow:10px 10px 5px 0px #cccccc;box-shadow:10px 10px 5px 0px #cccccc}.fr-view img.fr-bordered,.fr-view .fr-img-caption.fr-bordered img{border:solid 5px #CCC}.fr-view img.fr-bordered{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fr-view .fr-img-caption.fr-bordered img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.fr-view li img.fr-dii.fr-fil{margin-right:20px}.fr-view{word-wrap:break-word}.fr-view span[style~="color:"] a{color:inherit}.fr-view strong{font-weight:700}.fr-view table[border='0'] td:not([class]),.fr-view table[border='0'] th:not([class]),.fr-view table[border='0'] td[class=""],.fr-view table[border='0'] th[class=""]{border-width:0px}.fr-view table{border:none;border-collapse:collapse;empty-cells:show;max-width:100%;margin:0px}.fr-view table td{min-width:5px}.fr-view table.fr-dashed-borders td,.fr-view table.fr-dashed-borders th{border-style:dashed}.fr-view table.fr-alternate-rows tbody tr:nth-child(2n){background:whitesmoke}.fr-view table td,.fr-view table th{border:1px solid #DDD}.fr-view table td:empty,.fr-view table th:empty{height:20px}.fr-view table td.fr-highlighted,.fr-view table th.fr-highlighted{border:1px double red}.fr-view table td.fr-thick,.fr-view table th.fr-thick{border-width:2px}.fr-view table th{background:#ececec}.fr-view table tfoot td{background:#ececec}.fr-view .fr-mso-hidden{display:none}.fr-view hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;break-after:always;page-break-after:always}.fr-view .fr-file{position:relative}.fr-view .fr-file::after{position:relative;content:"\1F4CE";font-weight:normal}.fr-view pre{white-space:pre-wrap;word-wrap:break-word;overflow:visible}.fr-view[dir="rtl"] blockquote{border-left:none;border-right:solid 2px #5E35B1;margin-right:0;padding-right:5px;padding-left:0}.fr-view[dir="rtl"] blockquote blockquote{border-color:#00BCD4}.fr-view[dir="rtl"] blockquote blockquote blockquote{border-color:#43A047}.fr-view blockquote{border-left:solid 2px #5E35B1;margin-left:0;padding-left:5px;color:#5E35B1}.fr-view blockquote blockquote{border-color:#00BCD4;color:#00BCD4}.fr-view blockquote blockquote blockquote{border-color:#43A047;color:#43A047}.fr-view span.fr-emoticon{font-weight:normal;font-family:"Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";display:inline;line-height:0}.fr-view span.fr-emoticon.fr-emoticon-img{background-repeat:no-repeat !important;font-size:inherit;height:1em;width:1em;min-height:20px;min-width:20px;display:inline-block;margin:-.1em .1em .1em;line-height:1;vertical-align:middle}.fr-view .fr-text-gray{color:#AAA !important}.fr-view .fr-text-bordered{border-top:solid 1px #222;border-bottom:solid 1px #222;padding:10px 0}.fr-view .fr-text-spaced{letter-spacing:1px}.fr-view .fr-text-uppercase{text-transform:uppercase}.fr-view .fr-class-highlighted{background-color:#ffff00}.fr-view .fr-class-code{border-color:#cccccc;border-radius:2px;-moz-border-radius:2px;-webkit-border-radius:2px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background:#f5f5f5;padding:10px;font-family:"Courier New", Courier, monospace}.fr-view .fr-class-transparency{opacity:0.5}.fr-view img{position:relative;max-width:100%}.fr-view img.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view img.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view img.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view img.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}.fr-view img.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}.fr-view img.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}.fr-view span.fr-img-caption{position:relative;max-width:100%}.fr-view span.fr-img-caption.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}.fr-view span.fr-img-caption.fr-dib.fr-fil{margin-left:0;text-align:left}.fr-view span.fr-img-caption.fr-dib.fr-fir{margin-right:0;text-align:right}.fr-view span.fr-img-caption.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}.fr-view span.fr-img-caption.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}.fr-view span.fr-img-caption.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}.fr-view .fr-video{text-align:center;position:relative}.fr-view .fr-video.fr-rv{padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden}.fr-view .fr-video.fr-rv>iframe,.fr-view .fr-video.fr-rv object,.fr-view .fr-video.fr-rv embed{position:absolute !important;top:0;left:0;width:100%;height:100%}.fr-view .fr-video>*{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;max-width:100%;border:none}.fr-view .fr-video.fr-dvb{display:block;clear:both}.fr-view .fr-video.fr-dvb.fr-fvl{text-align:left}.fr-view .fr-video.fr-dvb.fr-fvr{text-align:right}.fr-view .fr-video.fr-dvi{display:inline-block}.fr-view .fr-video.fr-dvi.fr-fvl{float:left}.fr-view .fr-video.fr-dvi.fr-fvr{float:right}.fr-view a.fr-strong{font-weight:700}.fr-view a.fr-green{color:green}.fr-view .fr-img-caption{text-align:center}.fr-view .fr-img-caption .fr-img-wrap{padding:0;margin:auto;text-align:center;width:100%}.fr-view .fr-img-caption .fr-img-wrap a{display:block}.fr-view .fr-img-caption .fr-img-wrap img{display:block;margin:auto;width:100%}.fr-view .fr-img-caption .fr-img-wrap>span{margin:auto;display:block;padding:5px 5px 10px;font-size:14px;font-weight:initial;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-opacity:0.9;-moz-opacity:0.9;opacity:0.9;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";width:100%;text-align:center}.fr-view button.fr-rounded,.fr-view input.fr-rounded,.fr-view textarea.fr-rounded{border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box}.fr-view button.fr-large,.fr-view input.fr-large,.fr-view textarea.fr-large{font-size:24px}.fr-view span.fr-img-caption.fr-dii.fr-fil,.fr-view p img.fr-dii.fr-fil{margin-right:15px}a.fr-view.fr-strong{font-weight:700}a.fr-view.fr-green{color:green}img.fr-view{position:relative;max-width:100%}img.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}img.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}img.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}img.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}img.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}img.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}span.fr-img-caption.fr-view{position:relative;max-width:100%}span.fr-img-caption.fr-view.fr-dib{margin:5px auto;display:block;float:none;vertical-align:top}span.fr-img-caption.fr-view.fr-dib.fr-fil{margin-left:0;text-align:left}span.fr-img-caption.fr-view.fr-dib.fr-fir{margin-right:0;text-align:right}span.fr-img-caption.fr-view.fr-dii{display:inline-block;float:none;vertical-align:bottom;margin-left:5px;margin-right:5px;max-width:calc(100% - (2 * 5px));min-width:10px}span.fr-img-caption.fr-view.fr-dii.fr-fil{float:left;margin:5px 5px 5px 0;max-width:calc(100% - 5px);min-width:5px}span.fr-img-caption.fr-view.fr-dii.fr-fir{float:right;margin:5px 0 5px 5px;max-width:calc(100% - 5px);min-width:5px}

.rtePlaceholderDialog .vdl-mdf-modal-content{margin-top:20px;min-height:100px}.rtePlaceholderDialog.rtePlaceholderDialog-tall .vdl-mdf-modal-content{min-height:305px}.insertPlaceholderContainer{display:flex;padding:5px 0 14px}.insertPlaceholderContainer button{margin-left:10px}.mdf .fr-box .fr-counter,.mdf .fr-box .fr-placeholder{color:var(--neutral-dark)}.mdf .fr-view blockquote{border-color:inherit;color:inherit}.fr-popup .fr-action-buttons button.fr-command,.fr-trim-button{font-weight:var(--button-font-weight);font-size:var(--button-font-size);text-shadow:none;text-transform:var(--button-text-transform);background-image:none;border:0;border-radius:var(--button-border-radius);box-shadow:none;height:var(--button-height);min-height:var(--button-min-height);display:inline-flex;align-items:center;justify-content:center;padding:var(--button-padding);color:var(--white);background-color:var(--button-primary-background)}.fr-popup .fr-action-buttons button.fr-command[disabled],.fr-trim-button[disabled]{background-color:var(--button-primary-disabled-background);color:var(--button-primary-disabled-color);-webkit-text-fill-color:var(--button-primary-disabled-color)}.fr-popup .fr-action-buttons button.fr-command:focus:not([disabled]),.fr-popup .fr-action-buttons button.fr-command:active:not([disabled]),.fr-trim-button:focus:not([disabled]),.fr-trim-button:active:not([disabled]){box-shadow:var(--button-focus)}.fr-popup .fr-action-buttons button.fr-command:hover:not([disabled]),.fr-trim-button:hover:not([disabled]){color:var(--white);background-color:var(--button-primary-hover)}.fr-toolbar .fr-popup .fr-action-buttons button.fr-command:focus{color:var(--white);background-color:var(--button-primary-background)}.fr-desktop .fr-command:active,.fr-desktop .fr-command:hover:not(.fr-table-cell),.fr-desktop .fr-command:focus:not(.fr-table-cell),.fr-desktop .fr-command.fr-btn-hover:not(.fr-table-cell),.fr-desktop .fr-command.fr-expanded:not(.fr-table-cell),.fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active,.fr-toolbar .fr-popup .fr-buttons.fr-tabs{background:var(--neutral-dark-mid)}.fr-toolbar .fr-command.fr-btn.fr-disabled{cursor:not-allowed}.fr-desktop .fr-command.fr-disabled:hover{background:rgba(0,0,0,0)}.fr-toolbar .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-toolbar .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-popup .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path,.fr-modal .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path{fill:var(--button-primary-background)}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active{border:2px solid var(--list-option-focus-border);background-color:var(--accent-0-lighter)}.fr-command.fr-btn+.fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active:hover{background:var(--neutral-dark-mid)}.fr-popup .fr-table-size .fr-select-table-size>span.hover>span{border:1px solid var(--list-option-focus-border);background-color:var(--accent-0-dark)}.fr-plugins-cancel{color:var(--button-secondary-text-color);background-color:var(--button-secondary-background);border:2px solid var(--button-secondary-border-color)}.fr-plugins-cancel[disabled]{background-color:var(--button-secondary-disabled-background);color:var(--button-secondary-disabled-color);-webkit-text-fill-color:var(--button-secondary-disabled-color);border:var(--button-disabled-border);box-shadow:var(--button-secondary-disabled-boxShadow)}.fr-plugins-cancel:focus:not([disabled]),.fr-plugins-cancel:active:not([disabled]){box-shadow:var(--button-focus)}.fr-plugins-cancel:hover:not([disabled]){background-color:var(--button-secondary-hover-background);border:2px solid var(--button-secondary-hover-border);color:var(--button-secondary-hover-color)}.fr-popup .fr-input-line input[type=text]{width:100%;display:inline-block;margin-bottom:5px;font-family:var(--font-family-base);font-weight:400;font-size:var(--font-size-base);box-shadow:none;border-radius:var(--input-border-radius);outline:0 none;padding:10px;appearance:none;background-color:var(--white);border:var(--input-border);height:var(--form-input-height);box-sizing:border-box;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.fr-popup .fr-input-line input[type=text]:-ms-input-placeholder{color:var(--neutral-dark);font-style:italic}.fr-popup .fr-input-line input[type=text]::placeholder{color:var(--neutral-dark);font-style:italic}.fr-popup .fr-input-line input[type=text]:focus{outline:0;border:var(--input-border);box-shadow:var(--input-focus)}.fr-popup .fr-input-line input[type=text]:focus::placeholder{color:var(--neutral-dark)}.fr-popup .fr-input-line input[type=text]:hover{border:var(--input-border-hover)}.fr-popup .fr-input-line input[type=text][disabled]{background-color:var(--neutral-disabled);border:var(--input-border-disabled);color:var(--neutral-darker);cursor:not-allowed}.fr-popup .fr-input-line input[type=text][disabled]::placeholder{color:var(--neutral-dark)}.fr-popup .fr-input-line input+label,.fr-popup .fr-input-line input.fr-not-empty+label{color:var(--neutral-dark)}.fr-popup .fr-checkbox input+span{border-radius:var(--checkbox-border-radius)}.fr-popup .fr-checkbox input:not(:checked):focus+span,.fr-popup .fr-checkbox input:not(:checked)+span{border:var(--input-border)}.fr-popup .fr-checkbox input:checked:not([disabled])+span{background:var(--checkbox-background-color);border:2px solid #324fa5}.fr-popup .fr-checkbox input[type=checkbox]:focus+span{box-shadow:var(--checkbox-box-shadow)}.mdf .fr-popup .fr-color-set>span .fr-selected-color{line-height:20px;top:6px;bottom:auto;right:auto;left:6px;background:var(--black);width:20px;border-radius:50%}iframe.fr-iframe{min-height:100px}
.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2}
/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

/*# sourceMappingURL=mdfComponents.css.map*/