@charset "UTF-8";
/**
 *          88    888         888  8888888888   888888888      888       88888
 *         8888    888       888                888     888    888     888    888
 *        88 888    888     888                 888     888    888   888        888
 *       888  888    888   888     88888888     888    88      888   888        888
 *      88888  888    888 888                   888    888     888   888        888
 *     888      888    88888                    888     888    888     888     888
 *    888        888    888        8888888888   888      888   888       888888
 *
 *  (c) 2018 - Averio Inc.
 */
body, input, textarea {
  font-size: 14px;
  font-family: "Montserrat", "Arial", sans-serif;
  font-weight: 500;
  margin: 0;
  color: #2C2C2C;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

span, div {
  font-family: "Montserrat", "Arial", sans-serif;
}

textarea {
  resize: none;
}

:focus {
  outline: none;
}

div {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

body {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
}
body.NoSelect {
  user-select: none !important;
}

iframe {
  border: none;
}

div::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

div::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

div::-webkit-scrollbar-thumb {
  background-color: #989898;
  cursor: pointer;
  transition: background-color 270ms;
}
div::-webkit-scrollbar-thumb:hover {
  background-color: #921D5C;
}

pre {
  margin: 0;
}

.Bold {
  font-weight: 600;
}

.Small {
  font-size: 12px;
  font-weight: 500;
  min-height: 22px;
  line-height: 22px;
}

.Mini {
  font-size: 10px;
  font-weight: 500;
  min-height: 16px;
  line-height: 16px;
}

.E {
  box-sizing: border-box;
}
.E.VAlignMiddle {
  vertical-align: middle;
}
.E.VAlignMiddle span {
  vertical-align: middle;
}
.E.VAlignMiddle:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.E.VAlignBottom {
  vertical-align: bottom;
}
.E.VAlignBottom span {
  vertical-align: bottom;
}

.SingleLine {
  display: flex;
  align-items: center; /* Vertical center alignment */
}
.SingleLine span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.E.Selected:not(.Focused):not(.HideSelected):after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  pointer-events: none;
  border: 1px solid #921D5C;
  border-radius: 4px;
}

.E.SelectInputElement {
  cursor: pointer;
}

.E.EPage {
  background-color: #ffffff;
}

.E.CollectionPaneElement {
  box-shadow: inset 1px 1px 10px #CACACA;
  background-color: #FBFBFC;
  border-radius: 4px;
}
.E.CollectionPaneElement .PanBox {
  cursor: move;
  background-image: -webkit-repeating-radial-gradient(center center, #E5E5E5, #E5E5E5 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, #E5E5E5, #E5E5E5 1px, transparent 1px, transparent 100%);
  background-position: 8px 8px;
}
.E.CollectionPaneElement .PanBox .PanItem {
  box-shadow: 1px 1px 4px rgba(180, 180, 180, 0.5);
  cursor: grab;
  background-color: #ffffff;
  border-radius: 4px 1;
}
.E.CollectionPaneElement .PanBox div {
  white-space: nowrap;
}
.E.CollectionPaneElement .ToolBox {
  border-radius: 4px;
}
.E.CollectionPaneElement .ToolBox .E {
  background-color: #ffffff;
}

.E.ContextViewOverlayElement .NotchBelow, .E.ContextViewOverlayElement .NotchAbove {
  border-radius: 2px;
}
.E.ContextViewOverlayElement .NotchAbove {
  border: none;
}
.E.ContextViewOverlayElement .NotchBelow {
  border: 1px solid #989898;
  box-shadow: 0 2px 3px #989898;
}

.E.ContextView {
  background: #ffffff;
  box-shadow: 0 1px 4px #B4B4B4;
  border-radius: 8px;
  border: 1px solid #989898;
}
.E.ContextView .TitleElement {
  font-size: 14px;
  line-height: 30px;
  font-weight: bold;
}
.E.ContextView.Success {
  border-color: #04A777;
}
.E.ContextView.Success .Title, .E.ContextView.Success .Text, .E.ContextView.Success div {
  color: #04A777;
  word-break: break-all;
}
.E.ContextView.Info {
  border-color: #921D5C;
  word-break: break-all;
}
.E.ContextView.Warning {
  border-color: #F7CF02;
  word-break: break-all;
}
.E.ContextView.Error {
  border-color: #CF2D41;
}
.E.ContextView.Error .Title, .E.ContextView.Error .Text, .E.ContextView.Error div {
  color: #CF2D41;
  word-break: break-all;
}

.E.ActionSelectorElement {
  background: #ffffff;
}
.E.ActionSelectorElement .IconElement {
  float: left;
  position: relative !important;
}
.E.ActionSelectorElement {
  align-items: center;
}

.VerticalStackElement > .IconElement, .ItemElement.IconElement {
  margin-left: 4px;
  margin-right: 4px;
}

.E.ButtonElement .ClickBox {
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid #921D5C;
  color: #921D5C;
  text-align: center;
  box-shadow: 0 3px 3px #EAEAEB;
  user-select: none;
}
.E.ButtonElement .ClickBox {
  top: 1px;
  margin-top: -1px;
  transition: all 220ms;
}
.E.ButtonElement .ClickBox:hover {
  box-shadow: 0px 2px 2px #989898;
  transition: all 130ms;
}
.E.ButtonElement .ClickBox:focus {
  border-color: #921D5C;
  color: #921D5C;
  box-shadow: 0px 2px 2px #921D5C;
  transition: all 0ms;
}
.E.ButtonElement .ClickBox:active, .E.ButtonElement .ClickBox.Active {
  top: 2px;
  transition: all 150ms;
  box-shadow: 0px 0px 2px #989898;
}
.E.ButtonElement.CTA .ClickBox {
  border-color: #921D5C;
  background: #921D5C;
  color: #ffffff;
}
.E.ButtonElement.CTA .ClickBox:focus {
  border-color: #FCC453;
  background: #FCC453;
  box-shadow: 0px 2px 2px #FCC453;
  transition: all 0ms;
}
.E.ButtonElement.Warning .ClickBox {
  border-color: #F7CF02;
  background: #F7CF02;
  color: #000000;
}
.E.ButtonElement.Warning .ClickBox:focus {
  border-color: #F7CF02;
  background: #F7CF02;
  box-shadow: 0px 2px 2px #E5E5E5;
  transition: all 0ms;
}
.E.ButtonElement.Delete .ClickBox {
  border-color: #CF2D41;
  color: #CF2D41;
}
.E.ButtonElement.Delete .ClickBox:focus {
  background: #CF2D41;
  color: #ffffff;
  box-shadow: 0px 2px 2px #505050;
  transition: all 0ms;
}

.E.DocBlockElement {
  cursor: default;
}

.E.ElementNotFoundElement {
  font-weight: bold;
  color: #CF2D41;
}

.E.FancyTileContainer {
  overflow-y: auto;
}

.E.FancyTileElement {
  overflow: visible;
}
.E.FancyTileElement:not(.ClientPageColumnTileElement) > .E:not(.ContextView) {
  position: relative !important;
}
.E.FancyTileElement {
  background-color: #ffffff;
}
.E.FancyTileElement.First {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.E.FancyTileElement.Last {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.E.FancyTileElement.HasContextElement {
  z-index: 55555;
}

.E.FancyVerticalStackElement, .E.FancyHorizontalStackElement {
  border-radius: 4px;
}
.E.FancyVerticalStackElement > .E:not(.ClearBG), .E.FancyHorizontalStackElement > .E:not(.ClearBG) {
  background: #ffffff;
}
.E.FancyVerticalStackElement > .E.ClearBG > .E, .E.FancyHorizontalStackElement > .E.ClearBG > .E {
  background: #ffffff;
}
.E.FancyVerticalStackElement.NoTopRightRadius, .E.FancyHorizontalStackElement.NoTopRightRadius {
  border-top-right-radius: 0;
}
.E.FancyVerticalStackElement.NoLeftRadius, .E.FancyHorizontalStackElement.NoLeftRadius {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.E.FancyVerticalStackElement > .E {
  border-radius: 0;
  margin-bottom: 1px;
}
.E.FancyVerticalStackElement > .E:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-bottom: 0;
}

.E.FancyHorizontalStackElement > .E {
  border-radius: 0;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}
.E.FancyHorizontalStackElement > .E.Clickable:hover, .E.FancyHorizontalStackElement > .E.ClickableLarge:hover, .E.FancyHorizontalStackElement > .E.ClickableText:hover {
  border-right: 1px solid #B4B4B4;
  border-left: 1px solid #B4B4B4;
}
.E.FancyHorizontalStackElement > .E:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-right: 0;
}

.E.FlashMessageElement {
  background: #CF2D41;
  color: #ffffff;
  border-radius: 4px;
}
.E.FlashMessageElement .Icon {
  background: url("/ico/Error_White.svg") center/24px no-repeat;
  background-size: 36px;
}
.E.FlashMessageElement .Text {
  padding-left: 8px;
}

.E.GridElement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 8px;
}

.E.HeadlineElement {
  color: #921D5C;
  font-size: 14px;
  font-weight: 500;
}

.E.HorizontalLineElement {
  background-color: #EAEAEB;
}

.E.ImageElement.Error {
  background: url("/ico/Error_Grey7.svg") center/24px no-repeat;
}

.E.LabeledItemElement.Wide {
  display: flex;
  flex-direction: row;
}
.E.LabeledItemElement.Narrow {
  display: flex;
  flex-direction: column;
}
.E.LabeledItemElement .LabelElement {
  float: left;
  text-align: justify;
  hyphens: auto;
}
.E.LabeledItemElement {
  justify-content: flex-start;
}

.E.LabelElement {
  text-align: justify;
  hyphens: auto;
  color: #989898;
}

.E.LinkElement {
  color: #921D5C;
  text-decoration: underline;
  display: block;
  cursor: pointer;
  user-select: none;
}
.E.LinkElement:hover {
  text-shadow: 0px 2px 1px rgba(152, 152, 152, 0.5);
  transition: all 130ms;
}
.E.LinkElement:focus {
  border-color: #921D5C;
  color: #921D5C;
  text-shadow: 0px 2px 2px rgba(146, 29, 92, 0.7);
  transition: all 90ms;
}
.E.LinkElement:active, .E.LinkElement.Active {
  transition: all 0ms;
  text-shadow: 0px 0px 2px rgba(152, 152, 152, 0.5);
}

.E.MutableVerticalListElement > div:hover .Mutator:before {
  background: #B4B4B4;
}
.E.MutableVerticalListElement .MutatorControls {
  box-shadow: 1px 1px 4px rgba(180, 180, 180, 0.5);
  background-color: #F9F9FA;
  flex-wrap: nowrap;
}
.E.MutableVerticalListElement .MutatorControls .E span {
  font-size: 12px !important;
}
.E.MutableVerticalListElement .MutatorControls .IconElement {
  margin: 0;
}

.E.ListMutatorElement {
  cursor: pointer;
  overflow: visible;
}
.E.ListMutatorElement:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 2px;
  bottom: 4px;
  border-radius: 2px;
  background: #EAEAEB;
  transition: all 330ms;
}
.E.ListMutatorElement.Hovered:before {
  background: #921D5C !important;
}
.E.ListMutatorElement .Icon {
  background: url("/ico/List_Grey5.svg") center/24px no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-left: -15px;
  margin-top: -15px;
}

.E.OptionListElement {
  overflow-y: scroll;
}
.E.OptionListElement .Option {
  border-bottom: 1px solid #F9F9FA;
  cursor: pointer;
}
.E.OptionListElement .Option.Highlighted {
  background: #EAEAEB;
}
.E.OptionListElement .Option.Selected:after, .E.OptionListElement .Option.Highlighted:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  bottom: 0;
  background-color: #921D5C;
  transition: all 180ms;
}
.E.OptionListElement .Option.Selected:after {
  background-color: #921D5C;
}

.E.OverlayElement {
  -webkit-backdrop-filter: grayscale();
  backdrop-filter: grayscale();
  background-color: rgba(152, 152, 152, 0.1);
  z-index: 1000000000;
}
.E.OverlayElement.MessageOverlayElement {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(152, 152, 152, 0.1);
}
.E.OverlayElement.MessageOverlayElement > .OverlayMessage {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 1px 1px 4px rgba(180, 180, 180, 0.5);
}
.E.OverlayElement .PageElement {
  background: #ffffff;
  border-radius: 40px;
  background: linear-gradient(#FBFBFC, #F9F9FA);
}

.E.PageElement.Intro, .E.Page.Intro {
  -webkit-filter: blur(100px);
  filter: blur(100px);
  transition: -webkit-filter 180ms, all 180ms;
}
.E.PageElement, .E.Page {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  transition: -webkit-filter 180ms, all 180ms;
}
.E.PageElement .PageShadow, .E.Page .PageShadow {
  box-shadow: 0 1px 7px #2C2C2C;
  z-index: 1000;
}
.E.PageElement:not(.ClearBG), .E.Page:not(.ClearBG) {
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.5), transparent 60%);
}

.E.PageOverlayElement > .E {
  border-radius: 6px;
}

.E.AuxPageContainer .Page {
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.5), rgba(44, 44, 44, 0.3));
  transition: all 500ms;
}
.E.AuxPageContainer.Collapsed .Page {
  background: linear-gradient(to bottom, rgba(44, 44, 44, 0.5), rgba(44, 44, 44, 0.7));
  transition: all 500ms;
}

.E.PagePlaceholderElement {
  z-index: 100000 !important;
  margin: 8px;
  border-radius: 4px;
}
.E.PagePlaceholderElement .SpinnerOverlay {
  background: transparent;
}
.E.PagePlaceholderElement .SpinnerOverlay .Spinner > div {
  background-color: rgba(44, 44, 44, 0.7);
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .E.PagePlaceholderElement .SpinnerOverlay .Spinner > div {
    background-color: #ffffff;
  }
}

.E.QueryListElement {
  overflow-y: auto;
}

.E.SideBarElement {
  box-shadow: 0 0 7px #2C2C2C;
}

.E.SliderElement {
  user-select: none;
}
.E.SliderElement .Range {
  background: #CACACA;
  border-radius: 999px;
  box-shadow: inset 2px 2px 1px #989898;
}
.E.SliderElement .Handle {
  border-radius: 999px;
  cursor: pointer;
}
.E.SliderElement .Handle .Dot {
  transform: scale(0.66, 0.66);
  transition: all 180ms;
  background: #921D5C;
  border-radius: 999px;
  box-shadow: 2px 2px 2px #CACACA;
}
.E.SliderElement .Handle:hover .Dot, .E.SliderElement .Handle.Active .Dot {
  transform: scale(1, 1);
  background: #A54679;
  box-shadow: 2px 2px 4px #B4B4B4;
}
.E.SliderElement .LabelElement {
  user-select: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.E.SliderElement .LabelElement.Value {
  color: #921D5C;
  user-select: auto;
  border-radius: 4px;
  transition: all 180ms;
  cursor: text;
}
.E.SliderElement .LabelElement.Value:hover {
  background-color: #ffffff;
  border-color: #921D5C;
}
.E.SliderElement .LabelElement.Value:focus {
  background-color: #ffffff;
  border-color: #921D5C;
}

.E.RecordListTableTileElement {
  overflow-x: hidden;
}
.E.RecordListTableTileElement .ScrollListElement .ContentBox .TableRowElement > div {
  overflow-x: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #F9F9FA;
  min-height: 30px !important;
  padding: 4px 8px 4px 8px;
  background-color: #ffffff;
}
.E.RecordListTableTileElement .ScrollListElement .ContentBox .TableRowElement:hover > div {
  border-right-color: #E5E5E5;
  background-color: #F9F9FA;
}
.E.RecordListTableTileElement .ScrollListElement .ContentBox .TableRowElement .TextElement:not(.VAlignTop, .VAlignBottom) {
  vertical-align: middle;
}
.E.RecordListTableTileElement .ScrollListElement .ContentBox .TableRowElement .TextElement:not(.VAlignTop, .VAlignBottom) span {
  vertical-align: middle;
  height: 100%;
}
.E.RecordListTableTileElement .ScrollListElement .ContentBox .TableRowElement .TextElement:not(.VAlignTop, .VAlignBottom):before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.E.RecordListTableTileElement .IconElement {
  margin-left: 0 !important;
}
.E.RecordListTableTileElement table tr:hover td   {
  background-color: red;
}
.E.RecordListTableTileElement .ToolBar {
  background-color: #FBFBFC;
}
.E.RecordListTableTileElement .ToolBar input, .E.RecordListTableTileElement .ToolBar textarea {
  background: url("/ico/Search_Grey5.svg") center/24px no-repeat;
  background-position: right center;
}
.E.RecordListTableTileElement .ToolBar {
  border-bottom: 1px solid #EAEAEB;
}
.E.RecordListTableTileElement .TableHeader .HeaderConfigIcon {
  z-index: 100;
  background: url("/ico/Edit_Grey8.svg") center/24px no-repeat;
  background-color: #FBFBFC;
  box-shadow: -2px 0px 1px #FBFBFC;
}
.E.RecordListTableTileElement .TableHeader .E {
  background: #FBFBFC;
  color: #921D5C;
  transition: box-shadow 180ms;
  user-select: none;
  border-bottom: 1px solid #921D5C;
}
.E.RecordListTableTileElement .TableHeader .E.IsSorting {
  box-shadow: inset 0px -5px 3px -4px #921D5C;
}
.E.RecordListTableTileElement .TableHeader .E.IsSorting:hover {
  box-shadow: inset 0px -5px 3px -4px #921D5C;
}
.E.RecordListTableTileElement .TableHeader .E.IsSorting:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15px;
  transition: transform 330ms;
  background: url("/ico/ArrowDown_PrimaryCI.svg") center/24px no-repeat;
}
.E.RecordListTableTileElement .TableHeader .E.IsSorting.Desc:after {
  transform: rotate(0deg);
}
.E.RecordListTableTileElement .TableHeader .E.IsSorting.Asc:after {
  transform: rotate(180deg);
}
.E.RecordListTableTileElement .RightShadowBox, .E.RecordListTableTileElement .LeftShadowBox {
  pointer-events: none;
  transition: box-shadow 180ms;
  z-index: 3;
}
.E.RecordListTableTileElement .RightShadowBox {
  box-shadow: -5px 0px 5px -3px transparent;
  margin-right: -20px;
}
.E.RecordListTableTileElement .RightShadowBox.Show {
  box-shadow: -5px 0px 5px -3px #CACACA;
}
.E.RecordListTableTileElement .LeftShadowBox {
  box-shadow: 5px 0px 5px -3px transparent;
}
.E.RecordListTableTileElement .LeftShadowBox.Show {
  box-shadow: 5px 0px 5px -3px #CACACA;
}
.E.RecordListTableTileElement .ScrollBox {
  z-index: 4;
  pointer-events: none;
  scrollbar-width: none; /* Firefox 64 */
  -ms-overflow-style: none; /* Internet Explorer 11 */
}
.E.RecordListTableTileElement .ScrollBox::-webkit-scrollbar { /** WebKit */
  display: none;
}
.E.RecordListTableTileElement .HScrollBar {
  z-index: 5;
  transition: opacity 270ms;
  opacity: 0;
}
.E.RecordListTableTileElement .HScrollBar:hover, .E.RecordListTableTileElement .HScrollBar:active, .E.RecordListTableTileElement .HScrollBar.Dragging, .E.RecordListTableTileElement .HScrollBar.ForceShow {
  opacity: 1;
}
.E.RecordListTableTileElement .HScrollBar .ScrollColumn {
  border-right: 1px solid #921D5C;
}
.E.RecordListTableTileElement .HScrollBar .ScrollColumn.ForFixed {
  background: repeating-linear-gradient(135deg, transparent, transparent 5px, #989898 5px, #989898 6px);
}
.E.RecordListTableTileElement .HScrollBar .Thumb {
  z-index: 5;
  background-color: #921D5C;
  cursor: pointer;
}
.E.RecordListTableTileElement .ScrollBoxContent {
  background-image: linear-gradient(rgba(255, 255, 255, 0), #f9f9fa 90%);
}
.E.RecordListTableTileElement .Resizer:not(.NoResize) {
  background-image: linear-gradient(#EAEAEB, #E5E5E5);
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transition: border-color 0ms;
  cursor: col-resize;
}
.E.RecordListTableTileElement .Resizer:not(.NoResize):hover {
  background-image: linear-gradient(#921D5C, #921D5C);
  background-color: #921D5C;
  border-color: #921D5C;
  transition: border-color 180ms;
}
.E.RecordListTableTileElement .Resizer:not(.NoResize):active {
  background-image: linear-gradient(#921D5C, #921D5C);
  background-color: #921D5C;
  border-color: #921D5C;
}
.E.RecordListTableTileElement .Resizer.NoResize {
  background-color: #E5E5E5;
  border-left: 1px solid #F9F9FA;
  border-right: 1px solid #F9F9FA;
}

.E.ScrollListElement {
  -webkit-transform: translateZ(0);
}
.E.ScrollListElement .ContentBox {
  display: block !important;
}
.E.ScrollListElement .VerticalScrollElement {
  display: block !important;
}
.E.ScrollListElement .ScrollBar {
  z-index: 5;
  transition: opacity 180ms;
  opacity: 1;
}
.E.ScrollListElement .ScrollBar:hover, .E.ScrollListElement .ScrollBar:active, .E.ScrollListElement .ScrollBar.Dragging {
  opacity: 1;
}
.E.ScrollListElement .ScrollBar .Thumb {
  z-index: 5;
  background-color: #921D5C;
  cursor: pointer;
}

.E.TitleElement {
  color: #921D5C;
  font-size: 20px;
}
.E.TitleElement:not(.Bold) {
  font-weight: 500;
}

.E.TextElement {
  text-align: justify;
  hyphens: auto;
  min-height: 30px;
}
.E.TextElement.Missing {
  color: #CACACA;
}
.E.TextElement.VAlignMiddle {
  white-space: nowrap;
}
.E.TextElement.Small {
  min-height: 22px;
}

.E.UserBadgeElement {
  background: #FBFBFC;
  color: #ffffff;
  box-shadow: 1px 1px 4px #b4b4b4;
  border-radius: 24px;
  text-align: center;
  font-size: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.E.Light {
  font-weight: 500;
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .E.Light {
    font-weight: 500;
  }
}

.E.VerticalScrollElement {
  overflow-y: auto;
  overflow-x: hidden;
}

.E.HorizontalStackElement {
  display: flex !important;
  flex-wrap: nowrap;
  flex-direction: row;
}
.E.HorizontalStackElement.Wrap {
  flex-wrap: wrap;
}
.E.HorizontalStackElement > .E:first-child {
  margin-left: 0 !important;
}

.E.VerticalStackElement {
  display: flex !important;
  flex-wrap: nowrap;
  flex-direction: column;
}
.E.VerticalStackElement.HorizontalListElement {
  flex-direction: row;
}
.E.VerticalStackElement.HorizontalListElement.Wrap {
  flex-wrap: wrap;
}
.E.VerticalStackElement.Wrap {
  flex-wrap: wrap;
}
.E.VerticalStackElement > .E:first-child {
  margin-top: 0 !important;
}
.E.VerticalStackElement.Success .Title, .E.VerticalStackElement.Success .Text, .E.VerticalStackElement.Success div {
  color: #04A777;
  word-break: break-all;
}
.E.VerticalStackElement.Info .Title, .E.VerticalStackElement.Info .Text, .E.VerticalStackElement.Info div {
  color: #921D5C;
  word-break: break-all;
}
.E.VerticalStackElement.Warning .Title, .E.VerticalStackElement.Warning .Text, .E.VerticalStackElement.Warning div {
  color: #F7CF02;
  word-break: break-all;
}
.E.VerticalStackElement.Error .Title, .E.VerticalStackElement.Error .Text, .E.VerticalStackElement.Error div {
  color: #CF2D41;
  word-break: break-all;
}

.E.InputElement .EditBox, .E.InputElement .DisplayBox {
  border-radius: 4px;
  display: none;
  min-height: 30px;
  box-sizing: border-box;
  width: 100%;
  padding: 6px;
}
.E.InputElement .EditBox.Show, .E.InputElement .DisplayBox.Show {
  display: block;
  box-shadow: inset 0 2px 4.5px #EAEAEB;
  border: 1px solid #CACACA;
}
.E.InputElement .EditBox {
  transition: border-color 270ms;
}
.E.InputElement .EditBox::placeholder {
  color: transparent;
  transition: color 170ms;
}
.E.InputElement .EditBox.Show:hover {
  border: 1px solid #B4B4B4;
  transition: border-color 80ms;
}
.E.InputElement .EditBox.Show:focus, .E.InputElement.Focused .SelectedElement {
  border: 1px solid #921D5C;
  transition: border-color 80ms;
}
.E.InputElement .EditBox.Show:focus::placeholder, .E.InputElement.Focused .SelectedElement::placeholder {
  color: rgba(152, 152, 152, 0.8);
}
.E.InputElement.Error .EditBox, .E.InputElement.Error .DisplayBox {
  border-color: #CF2D41;
  box-shadow: inset 0px 0px 3px #CF2D41;
  transition: box-shadow 1.5s border-color 1.5s;
}
.E.InputElement.Warning .EditBox, .E.InputElement.Warning .DisplayBox {
  border-color: #F7CF02;
  box-shadow: inset 0px 0px 3px #F7CF02;
  transition: box-shadow 1.5s border-color 1.5s;
}
.E.InputElement.Success .EditBox, .E.InputElement.Success .DisplayBox {
  border-color: #04A777;
  box-shadow: inset 0px 0px 3px #04A777;
  transition: box-shadow 1.5s border-color 1.5s;
}
.E.InputElement .SpinnerOverlay {
  border-radius: 4px;
}
.E.InputElement .SpinnerOverlay.SimCursor {
  cursor: text;
}
.E.InputElement .SelectedElement {
  position: relative !important;
}
.E.InputElement .SelectedElement .IconElement {
  margin-right: 0 !important;
}
.E.InputElement.Small .EditBox {
  min-height: 22px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 500;
  padding-left: 6px;
  padding-top: 4px;
  padding-right: 6px;
  padding-bottom: 4px;
}
.E.InputElement.Mini .EditBox {
  min-height: 16px;
  line-height: 16px;
  font-size: 10px;
  font-weight: 500;
  padding-left: 4px;
  padding-top: 2px;
  padding-right: 4px;
  padding-bottom: 2px;
}

.E.CheckboxElement {
  display: block !important;
}
.E.CheckboxElement .EditBox {
  cursor: pointer;
  transition: background 170ms;
  width: 30px;
  height: 30px;
  float: left;
}
.E.CheckboxElement .SpinnerOverlay.SimCursor {
  cursor: pointer;
}
.E.CheckboxElement .EditBox.Checked {
  background: url("/ico/CheckSymbol_PrimaryCI.svg") center/24px no-repeat;
}
.E.CheckboxElement .EditBox.Checked.Active, .E.CheckboxElement .EditBox.Checked:focus {
  background: url("/ico/CheckSymbol_PrimaryCTA.svg") center/24px no-repeat;
}
.E.CheckboxElement .LabelElement {
  line-height: 30px;
  padding-left: 8px;
}
.E.CheckboxElement.CheckboxPropControlElement .EditBox {
  width: 22px;
  height: 22px;
  min-height: 22px;
  background-size: 20px !important;
  float: left;
}
.E.CheckboxElement.CheckboxPropControlElement .LabelElement {
  font-size: 12px;
  font-weight: 500;
  min-height: 22px;
  line-height: 22px;
  height: 22px !important;
}

.E.ContextInputElement > div {
  position: relative !important;
}

.E.FileInputElement ::-webkit-file-upload-button {
  display: none;
}
.E.FileInputElement .EditBox {
  cursor: pointer;
  color: transparent;
}
.E.FileInputElement .EditBox.Show {
  box-shadow: inset 0 2px 5px rgba(115, 115, 115, 0.2);
}
.E.FileInputElement .progress {
  box-sizing: border-box;
  width: 90px;
  height: 90px;
  left: 50%;
  top: 50%;
  margin-top: -45px;
  margin-left: -45px;
  transition: background-color 400ms;
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .E.FileInputElement .progress {
    -webkit-backdrop-filter: blur(6px); /* Safari 9+ */
    backdrop-filter: blur(6px); /* Chrome and Opera */
    user-select: none;
    background-color: rgba(44, 44, 44, 0.4);
  }
}
.E.FileInputElement .progress.Success {
  background-color: rgba(4, 167, 119, 0.6);
}
.E.FileInputElement .progress.Error {
  background-color: rgba(207, 45, 65, 0.6);
}
.E.FileInputElement .progress div {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.E.FileInputElement .progress svg, .E.FileInputElement .progress > div:before {
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}
.E.FileInputElement .progress svg:nth-child(1) {
  position: absolute;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}
.E.FileInputElement .progress svg:nth-child(1) path {
  fill: none;
  stroke-width: 9;
  stroke-dasharray: 629;
  stroke: #ffffff;
  transition: stroke-dashoffset 0.7s linear;
}
.E.FileInputElement div, .E.FileInputElement svg, .E.FileInputElement span, .E.FileInputElement path {
  pointer-events: none;
}

.MutableListDragOverlay {
  z-index: 1000000001;
}
.MutableListDragOverlay .DragContainer {
  box-shadow: 1px 1px 4px #b4b4b4;
  background-color: #ffffff;
  transform-origin: 75% center;
}
.MutableListDragOverlay .DragContainer .Mutator:before {
  background: #921D5C !important;
}
.MutableListDragOverlay .Placeholder {
  background: #F9F9FA;
  color: ColorPrimaryCTA;
  text-align: center;
  border: 2px dashed #921D5C;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.MutableListDragOverlay .Placeholder span {
  flex: 0 0 1px;
}
.MutableListDragOverlay .Placeholder .CancelRange {
  background: url("/ico/Cross_Grey9.svg") center/24px no-repeat;
  background-color: #F9F9FA;
}
.MutableListDragOverlay .Placeholder .DeleteRange {
  background: url("/ico/Delete_White.svg") center/24px no-repeat;
  background-color: #CF2D41;
  transition: background-size 180ms;
}
.MutableListDragOverlay .Placeholder.Catches .DeleteRange {
  background-size: 40px;
}

.AuxMenuPage {
  pointer-events: none;
}
.AuxMenuPage .E.FancyTileContainerElement {
  left: 0 !important;
  pointer-events: none;
}
.AuxMenuPage .E.FancyTileElement {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.AuxMenuPage .E.FancyTileElement .Clickable {
  border-left: 2px solid transparent;
  box-shadow: none !important;
  transition: all 40ms;
  border-radius: 4px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  pointer-events: all;
}
.AuxMenuPage .E.FancyTileElement .Clickable:hover {
  border-left: 2px solid #CACACA;
  background: rgba(202, 202, 202, 0.5);
}
.AuxMenuPage .E.FancyTileElement .Clickable:active, .AuxMenuPage .E.FancyTileElement .Clickable.Active {
  border-left: 2px solid #CACACA;
  background: rgba(202, 202, 202, 0.8);
}

.MenuPage .E.FancyTileElement {
  background-color: transparent;
  color: #ffffff;
  font-weight: 500;
}
.MenuPage .E.FancyTileElement > :not(.ClearBG), .MenuPage .E.FancyTileElement .ProfileBadge {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 180ms;
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .MenuPage .E.FancyTileElement > :not(.ClearBG), .MenuPage .E.FancyTileElement .ProfileBadge {
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}
.MenuPage .E.FancyTileElement > :not(.ClearBG):hover, .MenuPage .E.FancyTileElement > :not(.ClearBG).Focused, .MenuPage .E.FancyTileElement .ProfileBadge:hover, .MenuPage .E.FancyTileElement .ProfileBadge.Focused {
  background-color: rgba(0, 0, 0, 0.37);
}
.MenuPage .E.FancyTileElement .SearchInput, .MenuPage .E.FancyTileElement .SearchInput div {
  border: 0 !important;
  box-shadow: none;
  font-size: 20px;
}
.MenuPage .E.FancyTileElement .SearchInput .InputEditBox, .MenuPage .E.FancyTileElement .SearchInput div .InputEditBox {
  padding-left: 36px !important;
  font-weight: 500;
}
.MenuPage .E.FancyTileElement .SearchInput > div {
  background-size: 30px;
  background: url("/ico/Search_White.svg") 4px 50%/30px no-repeat;
  border: 1px solid transparent !important;
}
.MenuPage .E.FancyTileElement .SearchInput.Focused > div {
  border-color: #ffffff !important;
}
.MenuPage .E.FancyTileElement .TitleElement, .MenuPage .E.FancyTileElement .HeadlineElement, .MenuPage .E.FancyTileElement .LinkElement {
  color: #ffffff;
  font-weight: 500;
}
.MenuPage .E.FancyTileElement .HeadlineElement {
  white-space: nowrap;
  font-size: 14px;
}
.MenuPage .E.FancyTileElement .AppMenuItem {
  cursor: pointer;
  user-select: none;
  border-top-left-radius: 25px;
}
.MenuPage .E.FancyTileElement .AppMenuItem:not(.Expanded) {
  border-bottom-left-radius: 25px;
}

.LoginSideBar {
  background-color: #ffffff;
}

.Clickable, .ClickableLarge {
  cursor: pointer;
  transition: box-shadow 100ms;
  user-select: none;
}
.Clickable:hover, .ClickableLarge:hover {
  box-shadow: 2px 2px 5px rgba(80, 80, 80, 0.6);
}
.Clickable:active, .Clickable.Active, .ClickableLarge:active, .ClickableLarge.Active {
  box-shadow: inset 1px 1px 3px rgba(80, 80, 80, 0.6);
  transition: box-shadow 40ms;
}

.Clickable:hover {
  color: #921D5C;
  border-bottom-color: #921D5C;
}

.ClickableText {
  cursor: pointer;
  transition: text-shadow 120ms;
}
.ClickableText:hover {
  text-shadow: 2px 2px 5px #CACACA;
  color: #921D5C;
}
.ClickableText:active, .ClickableText:focus, .ClickableText.Focused, .ClickableText.HasContextView {
  text-shadow: 1px 1px 1px #CACACA;
  color: #921D5C;
}
.ClickableText:focus, .ClickableText.Focused, .ClickableText.HasContextView {
  text-decoration: underline;
}

.IconElement {
  transform: scale(0.8333333333);
  transition: transform 100ms;
}

.Clickable:hover .IconElement:not(.NoHoverEffect), .ClickableLarge:hover .IconElement:not(.NoHoverEffect), .ClickableText:hover .IconElement:not(.NoHoverEffect) {
  transition: transform 180ms;
  transform: scale(1);
}
.Clickable:hover .IconElement:not(.NoHoverEffect).SlightHoverEffect, .ClickableLarge:hover .IconElement:not(.NoHoverEffect).SlightHoverEffect, .ClickableText:hover .IconElement:not(.NoHoverEffect).SlightHoverEffect {
  transform: scale(0.9090909091);
}
.Clickable:focus .IconElement:not(.NoHoverEffect):not(.NoActiveEffect), .Clickable:active .IconElement:not(.NoHoverEffect):not(.NoActiveEffect), .ClickableLarge:focus .IconElement:not(.NoHoverEffect):not(.NoActiveEffect), .ClickableLarge:active .IconElement:not(.NoHoverEffect):not(.NoActiveEffect), .ClickableText:focus .IconElement:not(.NoHoverEffect):not(.NoActiveEffect), .ClickableText:active .IconElement:not(.NoHoverEffect):not(.NoActiveEffect) {
  transform: scale(0.8333333333);
}
.Clickable.NoHoverEffect, .ClickableLarge.NoHoverEffect, .ClickableText.NoHoverEffect {
  transform: scale(1);
}

.Backdrop, .E.Backdrop {
  background-color: rgba(44, 44, 44, 0.3);
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .Backdrop, .E.Backdrop {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
  }
}

.BackdropLight, .E.BackdropLight {
  background-color: rgba(180, 180, 180, 0.9);
}
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
  .BackdropLight, .E.BackdropLight {
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
  }
}

.NoWrap {
  white-space: nowrap;
}

.ButtonBadge, .ProfileBadge, .RevisionBadge {
  background: #F9F9FA;
  border-radius: 4px;
  border: 1px solid #F9F9FA;
  transition: border 180ms;
}
.ButtonBadge.Clickable:hover, .ButtonBadge.ClickableLarge:hover, .ButtonBadge.ClickableText:hover, .ProfileBadge.Clickable:hover, .ProfileBadge.ClickableLarge:hover, .ProfileBadge.ClickableText:hover, .RevisionBadge.Clickable:hover, .RevisionBadge.ClickableLarge:hover, .RevisionBadge.ClickableText:hover {
  background: #F9F9FA;
  border-color: #921D5C !important;
}

.ButtonBadge .IconElement, .RevisionBadge .IconElement {
  margin-left: 0;
}

.ActionBadge .IconElement {
  background-position: 50% 50% !important;
}

.ProfileBadge {
  border-radius: 100%;
}
.ProfileBadge .TextElement {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.Circle {
  border-radius: 9999px;
}

.MainLayoutElement {
  background-image: linear-gradient(#E5E5E5, #CACACA);
}
.MainLayoutElement .PageTitle {
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgb(243, 243, 244);
  color: #921D5C;
}
.MainLayoutElement .SideBar {
  background: #ffffff;
}
.MainLayoutElement .SideBar .TitleElement {
  font-size: 14px;
}
.MainLayoutElement .RootStack > .HorizontalStackElement {
  background: #ffffff;
}
.MainLayoutElement .PageGap {
  cursor: col-resize;
  transition: all 330ms;
  background: linear-gradient(rgba(80, 80, 80, 0.3), rgba(80, 80, 80, 0) 10%);
  overflow: visible;
}
.MainLayoutElement .PageGap .E {
  background: url("/ico/ResizeEW_White.svg") center/24px no-repeat;
  background-color: rgba(115, 115, 115, 0.3);
  border: 1px solid transparent;
  border-left-width: 0;
  border-radius: 0 99px 99px 0;
  z-index: 9;
  transition: all 330ms;
}
.MainLayoutElement .PageGap:hover, .MainLayoutElement .PageGap.Dragging {
  background: #921D5C;
}
.MainLayoutElement .PageGap:hover .E, .MainLayoutElement .PageGap.Dragging .E {
  background: url("/ico/ResizeEW_PrimaryCTA.svg") center/24px no-repeat;
  background-color: rgba(249, 249, 250, 0.8);
  border: 1px solid #921D5C;
  border-left-width: 0;
}

.RDEContainer {
  border-left: none !important;
}
.RDEContainer .E.RootDisplayElement .TitleElement:before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url("/ico/Menu_White.svg") 0px 50%/30px no-repeat, linear-gradient(to right, rgba(44, 44, 44, 0.5) 30px, transparent);
  opacity: 0;
  transition: all 330ms;
}
.RDEContainer .E.RootDisplayElement:hover {
  border-color: transparent !important;
}
.RDEContainer .E.RootDisplayElement:active {
  box-shadow: none !important;
}
.RDEContainer .E.RootDisplayElement:active .TitleElement:before {
  background: url("/ico/Menu_White.svg") 5px 50%/30px no-repeat, linear-gradient(to right, rgba(44, 44, 44, 0.5) 30px, transparent);
}
.RDEContainer .E.RootDisplayElement .TitleElement:hover:before {
  opacity: 1;
  transition: all 330ms;
}
.RDEContainer .E.RootDisplayElement .TitleElement:hover {
  border-color: transparent !important;
}
.RDEContainer .E.RootDisplayElement .TitleElement {
  color: #ffffff !important;
  background: #921D5C;
}
.RDEContainer .RDEBG {
  background: url("/ico/RDESeparator_PrimaryCI.svg") right 0% no-repeat #F9F9FA !important;
  background-size: 46px 46px !important;
}
.RDEContainer .RDEBGToWhie {
  background: url("/ico/RDESeparator_PrimaryCI.svg") right 0% no-repeat #ffffff !important;
  background-size: 46px 46px !important;
}
.RDEContainer .RDEAppAction {
  background: linear-gradient(to right, #F9F9FA, #F9F9FA);
  flex-wrap: nowrap;
}
.RDEContainer .RDEAppAction .AppTitle {
  line-height: 22px;
}
.RDEContainer .RDEAppAction .ActionTitle {
  font-size: 12px;
  line-height: 22px;
  min-height: 0;
}
.RDEContainer .RDEAppBG {
  background: url("/ico/RDESeparator_Grey2.svg") right 0% no-repeat !important;
  background-size: 46px 46px !important;
}

.E.TopMenuElement {
  overflow-y: visible;
  border-bottom: 1px solid #921D5C;
  background: linear-gradient(#ffffff, #FBFBFC);
}

.E.MainMenuElement {
  z-index: 900000001;
}
.E.MainMenuElement .IconElement {
  margin-left: 0;
  border: none;
  border-radius: 4px;
}

.E.MainMenuElement .Gradient, .E.MainMenuElement .IconElement {
  background-image: linear-gradient(to right, rgba(44, 44, 44, 0.81) 0%, rgba(44, 44, 44, 0.795) 0.8%, rgba(44, 44, 44, 0.763) 2.9%, rgba(44, 44, 44, 0.716) 6.4%, rgba(44, 44, 44, 0.657) 11%, rgba(44, 44, 44, 0.589) 16.6%, rgba(44, 44, 44, 0.514) 23.1%, rgba(44, 44, 44, 0.436) 30.4%, rgba(44, 44, 44, 0.356) 38.3%, rgba(44, 44, 44, 0.278) 46.7%, rgba(44, 44, 44, 0.205) 55.4%, rgba(44, 44, 44, 0.138) 64.4%, rgba(44, 44, 44, 0.082) 73.5%, rgba(44, 44, 44, 0.038) 82.5%, rgba(44, 44, 44, 0.01) 91.4%, rgba(44, 44, 44, 0) 100%);
}

.AIOrganizerElement .AIOrganizerItem {
  background-color: #ffffff;
  box-shadow: 3px -3px 10px rgba(180, 180, 180, 0.8);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.AIOrganizerElement .AIOrganizerItem:after {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-image: linear-gradient(to right, transparent, transparent 20px, rgba(249, 249, 250, 0.4) 20px);
  opacity: 1;
  transition: opacity 330ms;
}
.AIOrganizerElement .AIOrganizerItem.Expanded:after {
  pointer-events: none;
  opacity: 0;
}
.AIOrganizerElement .AIOrganizerItem.Hidden {
  pointer-events: none;
}
.AIOrganizerElement .AIActiveItem {
  background-color: #ffffff;
  box-shadow: 3px -3px 10px rgba(180, 180, 180, 0.8);
  cursor: pointer;
}

.TitleTile {
  color: #921D5C;
  font-weight: 500;
}
.TitleTile span {
  text-shadow: 2px 2px 4px #CACACA;
  white-space: pre-wrap !important;
}
.TitleTile .InfoText {
  color: #989898;
}

.AppIcon {
  background: linear-gradient(to top, #921D5C, #A54679);
  box-shadow: 0 0 2px 0 white inset, 0 0 2px 0 white;
  border-radius: 999px !important;
}
.AppIcon .TitleElement span {
  color: #FBFBFC;
  font-weight: 500;
}
.AppIcon:hover:before {
  background-position: 90% 100%;
}
.AppIcon.System {
  background: linear-gradient(to top, #B4B4B4, #EAEAEB);
  background-size: 100% 100% !important;
}

.E.TopicAISectionElement {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  top: 1px !important;
}
.E.TopicAISectionElement .TopicAI, .E.TopicAISectionElement .TopicAIDetailsBoxElement {
  border: 0px solid #ffffff;
}
.E.TopicAISectionElement .TopicAI.AIOpen, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIOpen {
  border-color: #2C2C2C;
}
.E.TopicAISectionElement .TopicAI.AIOpen .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIOpen .Icon {
  background: url("/ico/AIOpen_PrimaryCI.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.AIActive, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIActive {
  border-color: #921D5C;
}
.E.TopicAISectionElement .TopicAI.AIActive .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIActive .Icon {
  background: url("/ico/AIActive_PrimaryCTA.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.AIComplete, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIComplete {
  border-color: #04A777;
}
.E.TopicAISectionElement .TopicAI.AIComplete .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIComplete .Icon {
  background: url("/ico/AIComplete_Success.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.AIPaused, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIPaused {
  border-color: #B4B4B4;
}
.E.TopicAISectionElement .TopicAI.AIPaused .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIPaused .Icon {
  background: url("/ico/AIPaused_Grey6.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.AIWarning, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIWarning {
  border-color: #F7CF02;
}
.E.TopicAISectionElement .TopicAI.AIWarning .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AIWarning .Icon {
  background: url("/ico/AIWarning_Warning.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.AICritical, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AICritical {
  border-color: #CF2D41;
}
.E.TopicAISectionElement .TopicAI.AICritical .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.AICritical .Icon {
  background: url("/ico/AIWarning_Error.svg") center/24px no-repeat;
}
.E.TopicAISectionElement .TopicAI.TopicAIDetailsBoxElement .Icon, .E.TopicAISectionElement .TopicAIDetailsBoxElement.TopicAIDetailsBoxElement .Icon {
  background-size: 38px 38px !important;
}
.E.TopicAISectionElement .TopicAI:not(.TopicAIDetailsBoxElement).AIActive {
  color: #921D5C;
}

.TopicMessage {
  min-height: 0 !important;
  text-align: left !important;
  vertical-align: bottom;
}
.TopicMessage span {
  user-select: auto;
}
.TopicMessage .AITT {
  display: inline-block;
}
.TopicMessage .AITT .Icon {
  padding-top: 8px;
  padding-right: 6px;
  margin-left: -2px;
  float: left;
  clear: both;
  background-size: 26px 26px !important;
}
.TopicMessage .AITT .Content {
  padding-top: 4px;
  padding-left: 4px;
}
.TopicMessage .AITT a.ShowMore {
  background: url("/ico/ArrowDown_PrimaryCI.svg") center/24px no-repeat;
  width: 36px;
}
.TopicMessage .AITT a.ShowLess {
  background: url("/ico/ArrowUp_PrimaryCI.svg") center/24px no-repeat;
  width: 36px;
}
.TopicMessage .AITT.AIOpen .Icon {
  background: url("/ico/AIOpen_PrimaryCI.svg") center/24px no-repeat;
}
.TopicMessage .AITT.AIActive {
  color: #921D5C;
}
.TopicMessage .AITT.AIActive .Icon {
  background: url("/ico/AIActive_PrimaryCTA.svg") center/24px no-repeat;
}
.TopicMessage .AITT.AIComplete .Icon {
  background: url("/ico/AIComplete_Success.svg") center/24px no-repeat;
}
.TopicMessage .AITT.AIPaused {
  color: #B4B4B4;
}
.TopicMessage .AITT.AIPaused .Icon {
  background: url("/ico/AIPaused_Grey6.svg") center/24px no-repeat;
}
.TopicMessage .AITT.AIWarning .Icon {
  background: url("/ico/AIWarning_Warning.svg") center/24px no-repeat;
}
.TopicMessage .AITT.AICritical .Icon {
  background: url("/ico/AIWarning_Error.svg") center/24px no-repeat;
}

.TopicAddForm {
  background: linear-gradient(to top, #ffffff 50%, rgba(255, 255, 255, 0.7));
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.TopicAddForm.File {
  pointer-events: none;
}
.TopicAddForm.File .Clickable, .TopicAddForm.File .FileInput {
  pointer-events: auto;
  z-index: 55555;
}

.E.TopicInputElement span, .E.TopicInputElement div {
  font-family: "Arial", sans-serif !important;
  font-weight: 500;
}

.TopicListEntry .AIDI {
  transition: transform 180ms;
}
.TopicListEntry .AIDI .IconElement {
  transform: scale(1);
}
.TopicListEntry:hover .AIDI {
  transform: translateX(2px);
}
.TopicListEntry:active .AIDI {
  transform: translateX(4px);
}

.SmartEditBox .Line {
  min-height: 22px;
  line-height: 22px;
}

.InputElement.Focused .SmartEditBox.Empty:before {
  padding-left: 4px;
  content: attr(placeholder);
  color: #CACACA;
  display: block;
  position: absolute;
}

.Token {
  font-weight: 500;
}
.Token.Mention {
  color: #921D5C;
}
.Token.AI {
  color: #921D5C;
}
.Token.Emoji {
  font-size: 18px;
  vertical-align: middle;
}
.Token.Unit {
  color: #737373;
  padding-left: 4px;
}
.Token.UNKNOWN_TOKEN {
  color: #CF2D41;
}
.Token.COMMA:before {
  content: " ";
}
.Token.COMMA:after {
  content: " ";
}
.Token.FUNCTION {
  color: #921D5C;
}
.Token.PAR_OPEN, .Token.PAR_CLOSE {
  color: #921D5C;
}
.Token.VAR {
  color: #f3c40b;
}
.Token.NUMBER_LITERAL {
  color: #a10e44;
}
.Token.STRING_LITERAL {
  color: #1d6914;
}
.Token.BOOLEAN_LITERAL {
  color: #a10e44;
}
.Token.NULL {
  color: #a10e44;
}
.Token.MULT_OP:before, .Token.ADD_OP:before, .Token.BOOL_OP:before {
  content: " ";
}
.Token.MULT_OP:after, .Token.ADD_OP:after, .Token.BOOL_OP:after {
  content: " ";
}
.Token.MULT_OP, .Token.ADD_OP, .Token.BOOL_OP {
  color: #921D5C;
}

.XRDisplayNone {
  display: none !important;
}