/* 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-marginTop: calc(var(--PhoneInputCountrySelectArrow-height) / 2);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: inherit;
	--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] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-top: var(--PhoneInputCountrySelectArrow-marginTop);
	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);
}
@charset "UTF-8";
/*
Trix 1.1.1
Copyright © 2019 Basecamp, LLC
http://trix-editor.org/*/
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none; }
trix-toolbar * {
  box-sizing: border-box; }
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between; }
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px; }
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 1.5vw; }
    @media (max-device-width: 768px) {
      trix-toolbar .trix-button-group:not(:first-child) {
        margin-left: 0; } }
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1; }
  @media (max-device-width: 768px) {
    trix-toolbar .trix-button-group-spacer {
      display: none; } }
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent; }
  trix-toolbar .trix-button:not(:first-child) {
    border-left: 1px solid #ccc; }
  trix-toolbar .trix-button.trix-active {
    background: #cbeefa;
    color: black; }
  trix-toolbar .trix-button:not(:disabled) {
    cursor: pointer; }
  trix-toolbar .trix-button:disabled {
    color: rgba(0, 0, 0, 0.125); }
  @media (max-device-width: 768px) {
    trix-toolbar .trix-button {
      letter-spacing: -0.01em;
      padding: 0 0.3em; } }
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px; }
  @media (max-device-width: 768px) {
    trix-toolbar .trix-button--icon {
      height: 2em;
      max-width: calc(0.8em + 3.5vw); } }
  trix-toolbar .trix-button--icon::before {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; }
    @media (max-device-width: 768px) {
      trix-toolbar .trix-button--icon::before {
        right: 6%;
        left: 6%; } }
  trix-toolbar .trix-button--icon.trix-active::before {
    opacity: 1; }
  trix-toolbar .trix-button--icon:disabled::before {
    opacity: 0.125; }
trix-toolbar .trix-button--icon-bold::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-italic::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-link::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-strike::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-quote::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-code::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-undo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-redo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E); }
trix-toolbar .trix-dialogs {
  position: relative; }
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5; }
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }
  trix-toolbar .trix-input--dialog.validate:invalid {
    box-shadow: #F00 0px 0px 1.5px 1px; }
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none; }
trix-toolbar .trix-dialog--link {
  max-width: 600px; }
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline; }
  trix-toolbar .trix-dialog__link-fields .trix-input {
    flex: 1; }
  trix-toolbar .trix-dialog__link-fields .trix-button-group {
    flex: 0 0 content;
    margin: 0; }
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none; }
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
  background: none; }

trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight; }
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight; }

trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent; }
trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight; }
trix-editor .attachment {
  position: relative; }
  trix-editor .attachment:hover {
    cursor: default; }
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text; }
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in; }
  trix-editor .attachment__progress[value="100"] {
    opacity: 0; }
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none; }
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center; }
trix-editor .trix-button-group {
  display: inline-flex; }
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent; }
  trix-editor .trix-button:not(:first-child) {
    border-left: 1px solid #ccc; }
  trix-editor .trix-button.trix-active {
    background: #cbeefa; }
  trix-editor .trix-button:not(:disabled) {
    cursor: pointer; }
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25); }
  trix-editor .trix-button--remove::before {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.7;
    content: "";
    background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%; }
  trix-editor .trix-button--remove:hover {
    border-color: #333; }
    trix-editor .trix-button--remove:hover::before {
      opacity: 1; }
trix-editor .attachment__metadata-container {
  position: relative; }
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px; }
  trix-editor .attachment__metadata .attachment__name {
    display: inline-block;
    max-width: 100%;
    vertical-align: bottom;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  trix-editor .attachment__metadata .attachment__size {
    margin-left: 0.2em;
    white-space: nowrap; }
@charset "UTF-8";
.trix-content {
  line-height: 1.5; }
  .trix-content * {
    box-sizing: border-box; }
  .trix-content h1 {
    font-size: 1.2em;
    line-height: 1.2;
    margin: 0; }
  .trix-content blockquote {
    margin: 0 0 0 0.3em;
    padding: 0 0 0 0.6em;
    border-left: 0.3em solid #ccc; }
  .trix-content pre {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-family: monospace;
    font-size: 0.9em;
    margin: 0;
    padding: 0.5em;
    white-space: pre;
    background-color: #eee;
    overflow-x: auto; }
  .trix-content ul, .trix-content ol, .trix-content li {
    margin: 0;
    padding: 0; }
    .trix-content ul li, .trix-content ol li, .trix-content li li {
      margin-left: 1em; }
  .trix-content img {
    max-width: 100%;
    height: auto; }
  .trix-content .attachment {
    display: inline-block;
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0; }
    .trix-content .attachment a {
      color: inherit;
      text-decoration: none; }
      .trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
        color: inherit; }
  .trix-content .attachment__caption {
    padding: 0;
    text-align: center; }
    .trix-content .attachment__caption .attachment__name + .attachment__size::before {
      content: ' · '; }
  .trix-content .attachment--preview {
    width: 100%;
    text-align: center; }
    .trix-content .attachment--preview .attachment__caption {
      color: #666;
      font-size: 0.9em;
      line-height: 1.2; }
  .trix-content .attachment--file {
    color: #333;
    line-height: 1;
    margin: 0 2px 2px 0;
    padding: 0.4em 1em;
    border: 1px solid #bbb;
    border-radius: 5px; }
  .trix-content .attachment-gallery {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0;
    padding: 0; }
    .trix-content .attachment-gallery .attachment {
      flex: 1 0 33%;
      padding: 0 0.5em;
      max-width: 33%; }
    .trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
      flex-basis: 50%;
      max-width: 50%; }

.demio-calendar{position:relative;display:inline-block;user-select:none}.demio-calendar .demio-label{max-width:100%}.demio-calendar .calendar-dates-list{max-height:194px;overflow:auto;position:relative}.demio-calendar .choose-message{background-color:white;color:#2e3438;position:relative;font-size:13px !important;height:60px;line-height:60px;text-align:left;padding:0 20px;cursor:pointer;border-radius:4px}.demio-calendar .choose-message[data-choose-opened='true']{border-radius:4px 4px 0 0}.demio-calendar>.chosen{cursor:pointer;text-align:center;font-size:13px !important}.demio-calendar .input{font-size:13px !important;padding:19px 5px !important}.demio-calendar>.items{width:100%;position:absolute;left:0;z-index:999999999;max-height:300px;overflow:auto;background-color:white;border:1px solid #e0e0e0;border-top:0;box-shadow:0 4px 7px rgba(103,103,103,0.23);border-radius:0 0 5px 5px}.demio-calendar>.items .item{padding:11px 55px 11px 20px;background-color:white;cursor:pointer;font-size:12px;color:#89969e;text-align:center}.demio-calendar>.items .item:hover{background-color:#efefef;color:#434343}.demio-calendar>.items .waiting-logo-container{height:57px}#demio-calendar .demio-calendar{width:100%}#demio-calendar .demio-calendar .input,#demio-calendar .demio-calendar .series-input{width:100%;color:#2e3438;border:1px solid #e0e0e0;outline:none;padding:18px 20px;border-radius:4px;font-size:14px;background:#fff;line-height:initial;box-sizing:border-box}#demio-calendar .demio-calendar .input:focus,#demio-calendar .demio-calendar .series-input:focus{border-color:#bababa}#demio-calendar .demio-calendar .demio-icon-up,#demio-calendar .demio-calendar .demio-icon-down{position:absolute;right:20px;font-size:12px !important;transform:scale(1, .8) rotate(180deg);top:50%}#demio-calendar .demio-calendar .demio-icon-up{margin-top:-9px}#demio-calendar .demio-calendar .demio-icon-down{margin-top:-6px;transform:scale(1, .8)}#demio-calendar .demio-calendar .choose-message[data-choose-opened='true']{border-radius:5px 5px 0 0}#demio-calendar .demio-calendar .choose-date-text{font-size:12px;margin-bottom:5px;line-height:18px}#demio-calendar .demio-calendar .choose-date{color:#b1b1b1;padding-top:2px;margin-top:3px}#demio-calendar .demio-calendar .series-text{font-size:10px;font-weight:normal;margin-bottom:3px}#demio-calendar .demio-calendar .series-upcoming{font-size:11px;font-weight:normal;margin-top:2px;color:#5c6870}#demio-calendar .demio-calendar .series-info-header{font-size:11px;margin-bottom:5px;font-weight:500}#demio-calendar .demio-calendar .series-info{font-size:12px;color:#5c6870}#demio-calendar .demio-calendar .calendar-dates-list-container{position:relative}#demio-calendar .demio-calendar .series-dates-list{overflow:auto;max-height:153px;border-top:1px solid #e0e0e0}#demio-calendar .demio-calendar .series-cancel{font-style:italic;font-size:12px;padding:4px 0;color:#73828c}#demio-calendar .demio-calendar .chosen{cursor:pointer;text-align:left;padding:15px 36px 15px 20px !important}#demio-calendar .demio-calendar .series-input{font-size:12px !important;padding:16px 36px 16px 20px !important;font-weight:500}#demio-calendar .demio-calendar .items{top:calc(100% - 3px);border:1px solid #e0e0e0;box-shadow:0 4px 7px rgba(103,103,103,0.23);border-radius:0 0 5px 5px;box-sizing:border-box}#demio-calendar .demio-calendar .items i.demio-checked-item-icon{position:absolute;right:17px;font-size:25px;top:50%;margin-top:-12px;display:block;width:24px;height:24px;border-radius:50%;background-color:#02bf6f;border-color:#02bf6f;box-sizing:border-box}#demio-calendar .demio-calendar .items i.demio-checked-item-icon:after{border:4px solid #fff;border-top:0;border-left:0;transform:rotate(45deg) scale(1);position:absolute;display:table;content:' ';top:4px;left:7px;width:10px;height:15px;border-radius:2px;box-sizing:border-box}#demio-calendar .demio-calendar .items .info-item{font-size:8px !important;padding:15px 35px 15px 20px;background-color:white;cursor:pointer;font-size:14px !important;color:#2C3336;text-align:left;border-top:1px solid #e0e0e0;position:relative}#demio-calendar .demio-calendar .items .info-item:first-child{border:none}#demio-calendar .demio-calendar .items .info-item:first-child{border:none}#demio-calendar .demio-calendar .items .info-item.series-cursor{cursor:default;padding:15px 20pxt}#demio-calendar .demio-calendar .items .info-date{padding:15px 20px}#demio-calendar .demio-calendar .items .item{padding:11px 55px 11px 20px;color:#2C3336;text-align:left;border-top:1px solid #e0e0e0;position:relative}#demio-calendar .demio-calendar .items .item:first-child{border:none}#demio-calendar .demio-calendar .items .item p{margin-bottom:1px;margin-top:0;max-width:90%}#demio-calendar .demio-calendar .items .item .now-live{display:inline-block;color:white;background-color:#05a762;border-radius:3px;padding:2px 4px;font-size:9px !important;font-weight:500;letter-spacing:.5px}#demio-calendar .demio-calendar .items .item .starting-soon{display:inline-block;color:white;background-color:#0583d2;border-radius:3px;padding:2px 4px;font-size:9px !important;font-weight:500;letter-spacing:.5px}#demio-calendar .demio-calendar .stacked{max-width:435px}.shadow-container{position:relative}.scroll-container{max-height:187px;overflow-y:scroll}.scroll-bottom-shadow,.scroll-top-shadow{background:linear-gradient(rgba(255,255,255,0), #e0e0e0);height:15px;position:absolute;bottom:0;width:100%;z-index:9999999999}.scroll-top-shadow{background:linear-gradient(#e0e0e0, rgba(255,255,255,0));top:0;bottom:auto;width:100%}.demio-select{line-height:47px;position:relative;cursor:pointer;height:47px;user-select:none;letter-spacing:.25px}.demio-select.demio-select--minwidth{min-width:270px}.demio-select .demio-icon-up,.demio-select .demio-icon-down{position:absolute;right:20px;font-size:12px !important;transform:scale(1, .8) rotate(180deg);top:50%;z-index:3}.demio-select .demio-icon-up{margin-top:-9px}.demio-select .demio-icon-down{margin-top:-6px;transform:scale(1, .8)}.demio-select:focus{outline:none}.demio-select-selected{padding:0 19px;padding-right:40px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;border-radius:5px;border:1px solid #e8ecf3;background:#fff;position:relative;z-index:3;text-align:left}.demio-select-selected:focus{outline:none}.demio-select--open .demio-select-selected{border-color:#23cc80;border-radius:4px 4px 0 0}.demio-select-options{position:absolute;top:100%;max-height:148px;overflow:auto;line-height:22px;background:#fff;width:100%;box-shadow:0 4px 7px rgba(103,103,103,0.23);z-index:5;border:1px solid #dee4e8;border-radius:0 0 4px 4px}.demio-select-options div{padding:10px 15px;overflow:hidden;white-space:unset;text-overflow:unset;color:rgba(0,0,0,0.65);font-weight:normal;line-height:20px}.demio-select-options div:hover,.demio-select-options div:focus{background-color:#F7F7F7;outline:none}:root{--PhoneInput-color--focus:#2C3336}@keyframes demioFadein{from{opacity:0}to{opacity:1}}@keyframes demioSlideInDown{from{transform:translate3d(0, -100%, 0)}to{transform:translate3d(0, 0, 0)}}@keyframes demioBounceOut{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.03, 1.03, 1.03)}100%{transform:scale3d(1, 1, 1)}}@keyframes loadingCircle{100%{transform:rotate(360deg)}}.demio-embed-form{font-family:inherit;font-size:14px;padding:0 !important;box-sizing:border-box;min-width:275px !important;max-width:100% !important;margin:0 auto !important;letter-spacing:.25px;text-align:left}.demio-embed-form input:focus,.demio-embed-form textarea:focus{outline:none;font-size:14px !important}.demio-embed-form #demio-calendar .items .item,.demio-embed-form #demio-calendar .items .item p,.demio-embed-form #demio-calendar .items .item .choose-date{line-height:normal !important}.demio-embed-form .demio-form-field{margin-bottom:17px}.demio-embed-form .demio-form-field:focus{outline:none}.demio-embed-form input[type="text"],.demio-embed-form input[type="email"],.demio-embed-form input[type="url"],.demio-embed-form input[type="tel"],.demio-embed-form textarea{text-align:left;list-style:none;position:relative;display:block;padding-left:19px;padding-top:2px;width:100%;height:48px;font-size:14px !important;color:#2C3336;background-color:#fff;background-image:none;border:1px solid #DEE4E8;border-radius:4px;-webkit-appearance:none;font-family:inherit;box-sizing:border-box;text-overflow:ellipsis;font-weight:normal}.demio-embed-form input[type="text"]::placeholder,.demio-embed-form input[type="email"]::placeholder,.demio-embed-form input[type="url"]::placeholder,.demio-embed-form input[type="tel"]::placeholder,.demio-embed-form textarea::placeholder{color:#9FA6AD;opacity:1}.demio-embed-form input[type="text"]::-moz-placeholder,.demio-embed-form input[type="email"]::-moz-placeholder,.demio-embed-form input[type="url"]::-moz-placeholder,.demio-embed-form input[type="tel"]::-moz-placeholder,.demio-embed-form textarea::-moz-placeholder{color:#9FA6AD;opacity:1}.demio-embed-form input[type="text"]::-ms-input-placeholder,.demio-embed-form input[type="email"]::-ms-input-placeholder,.demio-embed-form input[type="url"]::-ms-input-placeholder,.demio-embed-form input[type="tel"]::-ms-input-placeholder,.demio-embed-form textarea::-ms-input-placeholder{color:#9FA6AD}.demio-embed-form input[type="text"]::-webkit-input-placeholder,.demio-embed-form input[type="email"]::-webkit-input-placeholder,.demio-embed-form input[type="url"]::-webkit-input-placeholder,.demio-embed-form input[type="tel"]::-webkit-input-placeholder,.demio-embed-form textarea::-webkit-input-placeholder{color:#9FA6AD}.demio-embed-form .PhoneInput{color:#2C3336}.demio-embed-form .PhoneInput .PhoneInputCountrySelect:focus+.PhoneInputCountryIcon,.demio-embed-form .PhoneInput .PhoneInputCountrySelect:focus+.PhoneInputCountrySelectArrow:focus{color:#5D676B;box-shadow:none}.demio-embed-form .PhoneInput input{padding-left:65px}.demio-embed-form .PhoneInputCountryIcon{box-shadow:none;width:26px;height:18px}.demio-embed-form .PhoneInputCountryIcon img{vertical-align:top;background:#fff;box-shadow:0 0 2px #DEE4E8}.demio-embed-form .PhoneInputCountry{margin-right:-52px;z-index:1;margin-left:17px}.demio-embed-form textarea{resize:vertical}.demio-embed-form .demio-select{color:#2C3336;height:48px;margin-bottom:0;font-weight:normal}.demio-embed-form .demio-select-options div:hover{background:#F7F7F7}.demio-embed-form .demio-select-empty{color:#9FA6AD;height:100%}.demio-embed-form .demio-select-selected{border:1px solid #DEE4E8}.demio-embed-form textarea{padding:12px 19px;min-height:88px}.demio-embed-form .label-element{display:block;position:relative;margin-bottom:0}.demio-embed-form .demio-placeholder{color:#9FA6AD;font-size:14px}.demio-embed-form .demio-label,.demio-embed-form .demio-label-optional{color:#9FA6AD;position:absolute;top:-9px;z-index:4;background:#fff;left:8px;line-height:17px;padding:0 8px;font-size:12px;letter-spacing:.4px;border-radius:4px;font-weight:normal}.demio-embed-form .demio-label{max-width:calc(100% - 78px);overflow:hidden;text-overflow:ellipsis;white-space:normal;top:-16px;height:31px;display:flex;line-height:14px;align-items:center}.demio-embed-form .demio-label-optional{right:14px;left:auto;font-style:italic}.demio-embed-form .demio-embed-noti{font-size:12px;line-height:16px;margin:8px 2px;letter-spacing:.4px;color:#2C3336;text-align:left}.demio-embed-form .demio-embed-checkbox{display:block;margin:0;text-align:left;overflow:hidden;display:flex}.demio-embed-form .demio-embed-checkbox input[type='checkbox']{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";content:"";-webkit-appearance:none;border:2px solid #DEE4E8;margin:0 !important;padding:0 !important;width:20px;height:20px;float:left;cursor:pointer;border-radius:2px;background:#fff}.demio-embed-form .demio-embed-checkbox input[type='checkbox']::after{content:"✓";color:#fff;font-size:16px;line-height:16px;width:16px;text-align:center;display:block}.demio-embed-form .demio-embed-checkbox input[type='checkbox']:hover::after{color:#ddd}.demio-embed-form .demio-embed-checkbox input[type='checkbox']:focus{border:2px solid #5D676B}.demio-embed-form .demio-embed-checkbox input[type='checkbox']:checked{border:2px solid #000}.demio-embed-form .demio-embed-checkbox input[type='checkbox']:checked::after{color:#000}.demio-embed-form .demio-embed-checkbox label,.demio-embed-form .demio-embed-checkbox .demio-checkbox-text{display:block;font-weight:normal;line-height:20px;cursor:pointer;text-align:left;padding-left:8px;float:left;color:#2C3336;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.demio-embed-form .demio-embed-checkbox .demio-checkbox-company{font-weight:bold}.demio-embed-form .demio-embed-checkbox .demio-checkbox-optional{color:#9FA6AD;font-style:italic;font-weight:normal;font-size:12px;pointer-events:none;cursor:default}.demio-embed-form .demio-form-field-hint input,.demio-embed-form .demio-form-field-hint textarea,.demio-embed-form .demio-form-field-hint .demio-select-selected,.demio-embed-form .demio-form-field-hint .demio-calendar .series-input,.demio-embed-form .demio-form-field-hint .demio-calendar .input{border-color:#5D676B !important}.demio-embed-form .demio-form-field-hint .demio-calendar .items{border-top-color:#5D676B !important}.demio-embed-form .demio-form-field-hint .demio-label,.demio-embed-form .demio-form-field-hint .demio-label-optional,.demio-embed-form .demio-form-field-hint .demio-field-error{color:#5D676B}.demio-embed-form .demio-form-field-invalid .demio-label,.demio-embed-form .demio-form-field-invalid .demio-label-optional,.demio-embed-form .demio-form-field-invalid .demio-field-error{color:#EE4C3B !important}.demio-embed-form .demio-form-field-invalid .demio-calendar .items,.demio-embed-form .demio-form-field-invalid .demio-select-options{border-top-color:#EE4C3B !important}.demio-embed-form .demio-form-field-invalid input,.demio-embed-form .demio-form-field-invalid textarea,.demio-embed-form .demio-form-field-invalid .demio-select-selected,.demio-embed-form .demio-form-field-invalid .demio-calendar .input{border-color:#EE4C3B !important}.demio-embed-form .demio-form-field-invalid input[type=checkbox]{border:2px solid #EE4C3B !important}.demio-embed-form .demio-form-field-invalid .demio-field-error,.demio-embed-form .demio-form-field-hint .demio-field-error{padding:5px 8px 0;font-size:12px;letter-spacing:.4px;border-radius:4px;font-weight:normal}.demio-embed-form .demio-field-error{display:flex;justify-content:space-between}.demio-embed-form .demio-field-counter{text-align:right;margin-left:auto;white-space:pre}.demio-embed-form button{font-size:14px;font-weight:500;letter-spacing:1px;text-align:center;padding:5px 15px;min-height:40px;position:relative;user-select:none;border-radius:4px;border:1px solid transparent;color:#fff;-webkit-appearance:none;width:100%;font-family:inherit;transform-origin:50% 50%;cursor:pointer;box-sizing:border-box;text-transform:uppercase;word-break:break-word}.demio-embed-form button:not([disabled]):hover{opacity:.9;animation:demioBounceOut .5s ease-in-out both}.demio-embed-form button[disabled]{opacity:.5;cursor:default}.demio-embed-form button.demio-submitting svg{animation:loadingCircle 1s infinite linear;will-change:transform;margin-right:8px;vertical-align:text-bottom}.demio-embed-form button:focus{outline:none}.demio-embed-form.demio-embed-form-responsive{min-width:auto !important}.event-embed-preview .demio-embed-form,.demio-embed-popover .demio-embed-form{padding:15px !important}.event-embed-preview .demio-embed-form #demio-calendar .items .item,.demio-embed-popover .demio-embed-form #demio-calendar .items .item,.event-embed-preview .demio-embed-form #demio-calendar .items .item p,.demio-embed-popover .demio-embed-form #demio-calendar .items .item p,.event-embed-preview .demio-embed-form #demio-calendar .items .item .choose-date,.demio-embed-popover .demio-embed-form #demio-calendar .items .item .choose-date{line-height:inherit !important}.demio-embed-cover{position:fixed;z-index:999999;top:0;right:0;bottom:0;left:0;background:rgba(0,0,0,0.4);width:100%;height:100%;animation:demioFadein 2s}.demio-embed-button{border-radius:4px;padding:10px 15px;color:#fff;font-weight:500;font-size:14px;width:100%;cursor:pointer;text-align:center;box-sizing:border-box;min-width:100px !important;max-width:100% !important;margin:0 auto !important;text-decoration:none !important;align-items:center;justify-content:center;display:flex;word-wrap:break-word;text-transform:uppercase;letter-spacing:1px}.demio-embed-button span{overflow:hidden}.demio-embed-link{display:inline-block;cursor:pointer}.demio-embed-link,.demio-embed-button{transition:opacity .2s;transform-origin:50% 50%}.demio-embed-link:hover,.demio-embed-button:hover{opacity:.9;animation:demioBounceOut .5s ease-in-out both;text-decoration:none !important}.demio-embed-link-disabled{transition:none;opacity:.7}.demio-embed-link-disabled:hover{cursor:default;opacity:.7;animation:none;text-decoration:none !important}.demio-embed-header{padding:0 15px}.demio-embed-title{text-align:center;font-size:20px !important;margin-bottom:10px;margin-top:10px;font-weight:500;color:#000;line-height:30px}.demio-embed-date{text-align:center;font-size:16px !important;margin-bottom:18px;font-weight:500}.demio-embed-date::first-letter{text-transform:capitalize}.demio-embed-status{text-align:center;color:#000;font-size:16px !important;margin:10px 0 22px;font-weight:bold}.demio-embed-local-time{text-align:center;color:#808080;font-size:14px !important;margin-top:1px}.demio-embed-popover{position:absolute;z-index:9999999;left:0;right:0;margin:0 auto;top:45%;padding:20px;background:#fff;border-radius:5px;width:450px;max-width:100%;animation:demioSlideInDown 1s;box-sizing:border-box;height:auto !important}.demio-embed-popover .demio-embed-form{margin:0}.demio-embed-popover-close{font-size:28px;color:#ddd;position:absolute;right:11px;line-height:20px;top:10px}.demio-embed-popover-close:hover{color:#737373;cursor:pointer}.text-uppercase{text-transform:uppercase}.text-capitalized{display:block}.text-capitalized:first-letter{text-transform:uppercase}[data-tooltip]{position:relative;z-index:2;cursor:pointer;display:block}[data-tooltip]:before{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:100%;left:0;margin-bottom:5px;padding:7px;width:200px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:rgba(51,51,51,0.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2;word-wrap:break-word}[data-tooltip]:hover:before,[data-tooltip]:focus:before{visibility:visible;opacity:1}@keyframes loading-dots{50%{transform:scale(1);opacity:1}100%{opacity:0}}.waiting-logo-container{display:flex;justify-content:center;align-items:center;height:calc(39vh)}.dot-container{display:flex;justify-content:center}.dot{width:10px;height:10px;box-sizing:content-box;border:2px solid #000;border-radius:50%;display:inline-block;margin:0 5px;transform:scale(0);animation:loading-dots 1000ms ease infinite}.dot:nth-child(2){animation:loading-dots 1000ms ease infinite .3s}.dot:nth-child(3){animation:loading-dots 1000ms ease infinite .6s}@media only screen and (max-width:480px){.demio-embed-status{margin:10px 0 12px}.demio-embed-popover{width:100%}.demio-embed-popover .demio-embed-form{padding:0}}.field-types-demo label{width:20%}.custom-field-preset{margin-left:20px}a{background-color:transparent;text-decoration:none;outline:none;cursor:pointer;transition:color .3s}input{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;color:inherit}.ant-notification{box-sizing:border-box;margin:0;padding:0;color:rgba(0,0,0,0.65);font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;font-feature-settings:'tnum';position:fixed;z-index:1010;width:384px;max-width:calc(68vw);margin-right:24px}.ant-notification-topLeft,.ant-notification-bottomLeft{margin-right:0;margin-left:24px}.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active{animation-name:NotificationLeftFadeIn}.ant-notification-close-icon{font-size:14px;cursor:pointer}.ant-notification-notice{position:relative;margin-bottom:16px;padding:16px 24px;overflow:hidden;line-height:1.5;background:#fff;border-radius:5px;box-shadow:0 4px 12px rgba(0,0,0,0.15)}.ant-notification-notice-message{display:inline-block;margin-bottom:8px;color:rgba(0,0,0,0.85);font-size:16px;line-height:24px}.ant-notification-notice-message-single-line-auto-margin{display:block;width:calc(164px);max-width:4px;background-color:transparent;pointer-events:none}.ant-notification-notice-message-single-line-auto-margin::before{display:block;content:''}.ant-notification-notice-description{font-size:14px}.ant-notification-notice-closable .ant-notification-notice-message{padding-right:24px}.ant-notification-notice-with-icon .ant-notification-notice-message{margin-bottom:4px;margin-left:48px;font-size:16px}.ant-notification-notice-with-icon .ant-notification-notice-description{margin-left:48px;font-size:14px}.ant-notification-notice-icon{position:absolute;margin-left:4px;font-size:24px;line-height:24px}.anticon.ant-notification-notice-icon-success{color:#52c41a}.anticon.ant-notification-notice-icon-info{color:#1890ff}.anticon.ant-notification-notice-icon-warning{color:#faad14}.anticon.ant-notification-notice-icon-error{color:#f5222d}.ant-notification-notice-close{position:absolute;top:16px;right:22px;color:rgba(0,0,0,0.45);outline:none}.ant-notification-notice-close:hover{color:rgba(0,0,0,0.67)}.ant-notification-notice-btn{float:right;margin-top:16px}.ant-notification .notification-fade-effect{animation-duration:.24s;animation-timing-function:cubic-bezier(.645, .045, .355, 1);animation-fill-mode:both}.ant-notification-fade-enter,.ant-notification-fade-appear{opacity:0;animation-duration:.24s;animation-timing-function:cubic-bezier(.645, .045, .355, 1);animation-fill-mode:both;animation-play-state:paused}.ant-notification-fade-leave{animation-duration:.24s;animation-timing-function:cubic-bezier(.645, .045, .355, 1);animation-fill-mode:both;animation-duration:.2s;animation-play-state:paused}.ant-notification-fade-enter.ant-notification-fade-enter-active,.ant-notification-fade-appear.ant-notification-fade-appear-active{animation-name:NotificationFadeIn;animation-play-state:running}.ant-notification-fade-leave.ant-notification-fade-leave-active{animation-name:NotificationFadeOut;animation-play-state:running}@keyframes NotificationFadeIn{0%{left:384px;opacity:0}100%{left:0;opacity:1}}@keyframes NotificationLeftFadeIn{0%{right:384px;opacity:0}100%{right:0;opacity:1}}@keyframes NotificationFadeOut{0%{max-height:150px;margin-bottom:16px;padding-top:16px 24px;padding-bottom:16px 24px;opacity:1}100%{max-height:0;margin-bottom:0;padding-top:0;padding-bottom:0;opacity:0}}@keyframes sk-stretchdelay{0%,40%,100%{transform:scaleY(.4);opacity:.5}20%{transform:scaleY(1);opacity:1}}@keyframes fadeInDownPartial{from{opacity:.2;filter:alpha(opacity=20);transform:translate3d(0, -40%, 0)}to{opacity:1;filter:alpha(opacity=100);transform:none}}@keyframes fadeOut{from{opacity:1;filter:alpha(opacity=100)}to{opacity:.25;filter:alpha(opacity=25)}}@keyframes bounceIn{from,40%,80%,to{animation-timing-function:cubic-bezier(.215, .61, .355, 1)}0%{opacity:0;transform:scale3d(.3, .3, .3)}40%{transform:scale3d(.9, .9, .9)}80%{transform:scale3d(.97, .97, .97)}to{opacity:1;transform:scale3d(1, 1, 1)}}@keyframes bounceOut{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.03, 1.03, 1.03)}100%{transform:scale3d(1, 1, 1)}}@keyframes fadeInRight{from{opacity:.25;filter:alpha(opacity=25);transform:translate3d(200px, 0, 0)}to{opacity:1;filter:alpha(opacity=100);transform:translate3d(0, 0, 0)}}@keyframes fadeIn{from{opacity:.25;filter:alpha(opacity=25)}to{opacity:1;filter:alpha(opacity=100)}}@keyframes fadeInSlideAbit{from{opacity:.25;filter:alpha(opacity=25);transform:translate3d(0, -20px, 0)}to{opacity:1;filter:alpha(opacity=100);transform:translate3d(0, 0, 0)}}@keyframes fadeInLeft{from{opacity:.25;filter:alpha(opacity=25);transform:translate3d(-200px, 0, 0)}to{opacity:1;filter:alpha(opacity=100);transform:translate3d(0, 0, 0)}}.animated{animation-fill-mode:both}.bounceIn{animation-duration:.75s;animation-name:bounceIn}.fade-in-down-animation{animation-duration:.75s;animation-name:fadeInSlideAbit}.fade-in-left-animation{animation:fadeInLeft .5s ease-in both}.fade-in-animation{animation:fadeIn .5s ease-in both}.bounce-animation{animation:bounceOut 1s ease-in-out both}.demio-countdown{display:flex;flex:1;justify-content:space-around;font-size:18px;font-weight:300;max-width:400px;margin:0 auto;letter-spacing:.2px;text-align:center;padding:10px 35px 25px;line-height:26px}.demio-countdown-start-date{color:#787878;display:block;padding:5px 0 10px;font-size:1.05em}@media (min-width:1024px){.demio-countdown{padding:15px 10px 40px;font-size:21px;font-weight:400}}.countdown-timer{font-size:30px;text-align:center;display:inline-block;margin:0;font-weight:400;animation:fadeInDownPartial .2s ease-in-out;transform:translateZ(0);min-width:59px}.countdown-timer .countdown-numbers{animation:fadeOut 1s ease-in-out}.countdown-timer .unit{display:block;font-size:13px;text-align:center;letter-spacing:1px;font-weight:300}.countdown-timer .unit::first-letter{text-transform:capitalize}body{font-family:'Lato',sans-serif;width:100%;height:100%;margin:0;color:rgba(0,0,0,0.65);font-size:14px;font-family:Lato,-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;font-variant:tabular-nums;line-height:1.5;background-color:#fff;font-feature-settings:"tnum"}*,:after,:before{box-sizing:border-box}::selection{background:#b4d5fe;color:rgba(0,0,0,0.65)}@keyframes fadeInSlideAbit{from{opacity:.25;filter:alpha(opacity=25);transform:translate3d(0, -20px, 0)}to{opacity:1;filter:alpha(opacity=100);transform:translate3d(0, 0, 0)}}.fade-in-down-animation{animation-duration:.75s;animation-name:fadeInSlideAbit}@keyframes sk-stretchdelay{0%,40%,100%{transform:scaleY(.4);opacity:.5}20%{transform:scaleY(1);opacity:1}}@keyframes bounceOut{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.03, 1.03, 1.03)}100%{transform:scale3d(1, 1, 1)}}.bounce-animation{animation:bounceOut 1s ease-in-out both}.global-wrapper,#replay-page,#registration-page,.replay-page{height:100%}.registration-loading{min-height:600px}.registration-loading i{padding:5px;font-size:40px}.registration-page .video-container{max-width:100%;min-width:100%;margin:30px auto 20px;position:relative;background:#fff}.registration-page .video-container video{display:block;width:100%;max-width:100%;min-width:100%}.registration-page .registration-page{height:100%;width:100%}.registration-page .registration-body{background-color:#fff;color:#313131;margin-bottom:60px}.registration-page .replay-page .registration-body{margin-bottom:60px}.registration-page .description-block-accent{background-color:#02bf6f;border-radius:5px 5px 0 0;padding-bottom:3px}.registration-page .description-block{overflow:hidden;margin:20px auto;max-width:90%;border-radius:5px;border:1px solid #e2e2e2;box-shadow:0 3px 10px 1px rgba(0,0,0,0.08)}.registration-page .webinar-description{padding:30px;font-weight:300;word-wrap:break-word}.registration-page .webinar-description h1{text-align:center;font-size:22px}.registration-page .webinar-description img{max-width:100%}.registration-page .webinar-description .video iframe{max-width:100%}.registration-page .demio-embed-button{max-width:90% !important}.registration-page .demio-embed-button:focus{outline:0}.registration-page .presenter{border-top:1px solid #e2e2e2;padding:20px}.registration-page .presenter-info{display:flex;word-break:break-word}.registration-page .presenter-info .info-right{display:flex;flex-direction:column;padding-left:15px;flex:1}.registration-page .presenter-info .description{word-break:break-word}.registration-page .presenter-info .avatar{border-radius:50%;width:70px;min-width:70px;height:70px;display:flex;align-items:center;vertical-align:middle;background-color:#02bf6f;background-position:center;background-size:cover;user-select:none;margin:0}.registration-page .presenter-info .avatar-initials{color:#fff;margin:auto;text-transform:uppercase;font-weight:700;font-size:22px;text-align:center}.registration-page .presenter-info .name{font-size:17px;font-weight:500;padding-bottom:3px}.registration-page .presenter-info .website{font-size:14px}.registration-page .presenter-info .title{font-size:12px;font-weight:400;margin-bottom:1px;color:#a0a0a0;letter-spacing:.4px}.registration-page .description{font-size:14px;padding:10px 0;font-weight:300;word-wrap:break-word}.registration-page .description h1{font-size:26px}.registration-page .white-block-message{border-radius:5px;padding:45px;background:#fff;color:#000;margin:15px auto 0;max-width:400px}.registration-page .event-message-info{font-size:16px;margin-top:15px}.registration-page .video-padding{padding:30px}.registration-page .video-ratio-container{position:relative;padding-bottom:56.25%;padding-top:25px;height:0}.registration-page .video-ratio-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}.registration-page .bottom-button{margin-bottom:30px}.registration-editor .description-block{animation:none}@media all and (max-width:420px){.errorMessage{right:0}}.errorMessage{position:absolute;right:20px;background:#fff0ba;width:400px;max-width:100%;border-radius:5px;padding:15px;z-index:999;top:60px;animation:fadeInRight .5s ease-in}.cta-title{font-size:18px;font-weight:600;margin:20px auto 20px;display:block;text-align:center;max-width:85%}.cta-button-container{display:flex;margin-bottom:20px}.cta-button{border-radius:5px;padding:0 20px;margin:0 auto;background-color:#02bf6f;font-size:14px;height:50px;display:block;text-align:center;color:#fff;line-height:50px;font-weight:600;min-width:45%;max-width:85%;overflow:hidden;user-select:none;letter-spacing:.7px}.cta-button:hover,.cta-button:visited,.cta-button:focus,.cta-button:active{color:#fff;text-decoration:none}.hide{display:none}#profiler{display:none}.play-button{position:absolute;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:1;cursor:pointer}.play-button i{font-size:35px;display:flex;justify-content:center;align-items:center;width:100px;height:100px;background:rgba(0,0,0,0.5);border-radius:4px}.play-button:hover i{animation:bounceOut .5s ease-in-out}.registration-header{flex:1}@media all and (min-width:1024px){.registration-page .video-container{max-width:80%;min-width:80%}.registration-page .description-block{margin:60px auto 0;max-width:960px}.registration-page .description-block:nth-of-type(n+2){margin-top:30px}.registration-page .webinar-description{padding:50px;font-size:16px;border-bottom:1px solid #e2e2e2}.registration-page .presenter{border-top:none;padding:25px 45px}.registration-page .avatar{width:80px;height:80px}.registration-page .avatar-initials{font-size:24px}.registration-page .name{font-size:18px;font-weight:400;letter-spacing:.4px}.registration-page .website{padding-top:2px}.registration-page .description{font-size:16px;padding:0}.registration-page .bottom-button{margin-top:60px;margin-bottom:60px}.registration-page .demio-embed-button{font-size:14px !important;font-weight:700}.registration-page .cta-title{margin:40px auto 20px;max-width:750px}.registration-page .cta-button-container{margin-bottom:40px}.registration-page .cta-button{min-width:250px;max-width:500px}.registration-page .cta-button:hover{animation:bounceOut .5s ease-in-out both}.registration-page .cta-button:active,.registration-page .cta-button:focus{color:#fff}}.registration-header-logo{padding:15px 0;background-color:rgba(255,255,255,0.97);border-bottom:1px solid #e2e2e2;position:relative;z-index:3;min-height:61px}.registration-header-logo img{margin:0 auto;display:block;max-height:30px}.registration-header-background{position:absolute;z-index:1;height:100%;width:100%;top:0;left:0}.registration-header-container{display:block;color:#fff;min-height:430px;position:relative;word-break:break-word;max-width:100%}.registration-header-container.height-auto{min-height:auto}.registration-header-container.height-auto .webinar-status{max-width:initial}.center-header-container{display:flex;align-items:center;justify-content:center}.registration-header-mask{background-color:rgba(0,0,0,0.8);width:100%;height:100%;top:0;left:0;position:absolute;z-index:2}.registration-header{padding:30px 0;position:relative;z-index:3}.registration-header .webinar-title,.registration-header .webinar-subtitle{text-align:center;font-size:20px;font-weight:400;letter-spacing:.4px;padding:0 20px;word-wrap:break-word}.registration-header .webinar-subtitle{font-size:18px;font-weight:300}.registration-header .webinar-date{text-align:center;font-weight:300;margin-top:20px;font-size:15px;padding:0 20px}.webinar-status{padding:10px 35px 25px;font-size:18px;font-weight:300;max-width:400px;margin:0 auto;letter-spacing:.2px;text-align:center}.webinar-status .demio-countdown{padding:0;flex:1}.webinar-status i{font-size:22px;color:#fff;margin-right:10px;padding-top:2px}.spinner{height:20px;text-align:center;width:35px;display:inline-block;margin:4px 10px 3px 0;vertical-align:text-bottom}.spinner>div{background-color:#fff;height:100%;width:2px;display:inline-block;margin:0 2px;animation:sk-stretchdelay 1.2s infinite ease-in-out}.spinner .rect2{animation-delay:-1.1s}.spinner .rect3{animation-delay:-1s}.spinner .rect4{animation-delay:-0.9s}.spinner .rect5{animation-delay:-0.8s}.registration-header-accent{color:#313131;background-color:#fff}.registration-header-accent .registration-header{padding:30px 0 0}.registration-header-accent .spinner div{background:#313131}.registration-header-accent i{color:inherit}.registration-header-accent .play-button i{color:#fff}.registration-form{max-width:330px;margin:0 auto;padding:20px;border-radius:8px;background-color:#fff}.editor-console{width:350px;position:fixed;bottom:10px;box-sizing:content-box;margin-left:10px;border-radius:5px;background-color:#fff;box-shadow:0 3px 10px 1px rgba(0,0,0,0.08);padding:20px;outline:none;user-select:none;font-size:12px;z-index:999}.editor-console>div{margin-bottom:5px}.editor-console .close{position:absolute;top:5px;right:8px}.editor-console label{margin-right:5px}.editor-console button{margin:0 5px;border-radius:3px;background-color:#02bf6f;border:1px solid #02bf6f;color:#fff;padding:3px}.editor-console button:focus{outline:none}.fill-screen{display:flex;justify-content:center;min-height:calc(100vh - 61px);align-items:center}@media all and (min-width:1024px){.fill-screen{min-height:calc(100vh - 90px)}.registration-header-logo{padding:25px 0;min-height:90px}.registration-header-logo img{max-height:39px}.registration-header{padding:55px 0}.registration-header-accent .registration-header{padding:55px 0 0}.registration-header-accent .registration-header-accent-shift{margin-bottom:-20px}.registration-header .webinar-title{font-size:26px;font-weight:600;max-width:960px;margin:0 auto}.registration-header .webinar-subtitle{font-size:20px;max-width:960px;margin:0 auto}.registration-header .webinar-date{margin-top:35px;font-size:16px}.webinar-status{padding:15px 10px 40px;font-size:21px;font-weight:400}.webinar-status i{font-size:24px;padding-top:5px;margin-right:13px}.webinar-status .spinner{width:35px;height:23px;margin-right:3px;margin:3px 10px auto 0}.registration-form{max-width:450px;min-width:450px;padding:32px}.editor-console{width:400px}}.iphone-x-header{margin-top:-90px}@media all and (min-width:768px){.accent{border-left:10px solid transparent;position:fixed;left:0;top:0;height:100%;z-index:99}}@media screen and (max-height:800px){.registration-header{padding:40px 0}.registration-header .webinar-date{margin-top:25px}.registration-header .webinar-status{padding-bottom:30px}}@media screen and (max-width:374px){.registration-header .webinar-status{display:block}}footer{background-color:#FFF;border-top:1px solid #f0f0f0;padding:30px 0;text-align:center;font-size:13px;width:100%;height:100px;margin-top:auto}footer>.nav{text-align:center;margin-bottom:12px}footer>.nav>*{color:#02bf6f;display:inline-block}footer>.nav>.divider{margin:0 15px}footer>.copyrights{color:#999999}.sticky-footer{min-height:100%;margin-bottom:-100px}.sticky-footer:after{content:"";height:100px;display:block}
