/* css/toolbar.css */
.animex-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background:
    linear-gradient(
      135deg,
      #1a1a2e 0%,
      #16213e 100%);
  color: white;
  padding: 0;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9997;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.animex-toolbar-content {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.animex-toolbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.animex-toolbar-logo {
  font-size: 13px;
  font-weight: 600;
  color: #a855f7;
  letter-spacing: 0.5px;
}
.animex-toolbar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.animex-toolbar-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.animex-toolbar-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

/* css/live_toolbar.css */
.animex-live-toolbar {
  position: fixed;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 40px;
  background:
    linear-gradient(
      135deg,
      #7f1d1d 0%,
      #991b1b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9998;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  transition: background 0.3s ease;
}
.phx-connected .animex-live-toolbar {
  background:
    linear-gradient(
      135deg,
      #14532d 0%,
      #166534 100%);
}
.phx-error .animex-live-toolbar {
  background:
    linear-gradient(
      135deg,
      #7f1d1d 0%,
      #991b1b 100%);
}
.animex-live-toolbar-content {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.animex-live-toolbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.animex-live-toolbar-logo {
  font-size: 13px;
  font-weight: 600;
  color: #f3f4f6;
  letter-spacing: 0.5px;
}
.animex-live-toolbar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.animex-live-toolbar-button {
  background:
    linear-gradient(
      135deg,
      #6366f1 0%,
      #8b5cf6 100%);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.animex-live-toolbar-button:hover {
  background:
    linear-gradient(
      135deg,
      #818cf8 0%,
      #a78bfa 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.animex-live-toolbar-button:active {
  transform: translateY(0);
}
.animex-toolbar-collapse-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.animex-toolbar-collapse-btn:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
#animex-toolbars-container.collapsed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#animex-toolbars-container {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.animex-toolbar.collapsed {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.animex-toolbar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.animex-toolbar-expand-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #6366f1 0%,
      #8b5cf6 100%);
  border: none;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}
.animex-toolbar-expand-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.animex-toolbar-expand-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}
.animex-toolbar-expand-icon {
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

/* css/animex.css */
body {
  margin: 0;
}
body.animex-html-body-left {
  text-align: left;
}
body.animex-html-body-center {
  text-align: center;
}
body.animex-html-body-right {
  text-align: right;
}
.animex-ui-vein [data-preload-status] {
  display: none;
}
.phx-loading.animex-loaded [data-preload-status] {
  display: block;
}
.phx-loading.animex-loaded [data-preload-progress] {
  display: none;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Block.Element/3_odbnbsuyu2fi7xe7knv3ycjari.css */
.animex-ui-block {
  display: block;
}
.animex-ui-block--inline {
  display: inline-block;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Button.Element/7_72siobfxdkqppq5fnhlhd3bg5q.css */
.animex-ui-button {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.animex-ui-button > div:nth-of-type(1) {
  display: none;
}
.animex-ui-button > div:nth-of-type(2) {
  display: block;
}
.animex-ui-button.phx-click-loading > div:nth-of-type(1) {
  display: block;
}
.animex-ui-button.phx-click-loading > div:nth-of-type(2) {
  display: none;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Canvas.Element/3_gt2h7fu6656jkwgthnd34xzccm.css */
.animex-ui-canvas {
  position: relative;
  overflow: hidden;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Flex.Element/3_h2uce7oencg2o7xaxuvi6utffi.css */
.animex-ui-flex {
  display: flex;
}
.animex-ui-flex--inline {
  display: inline-flex;
}
.animex-ui-flex[style*="--animex-prop-direction:"] {
  flex-direction: var(--animex-prop-direction);
}
.animex-ui-flex[style*="--animex-prop-align:"] {
  align-items: var(--animex-prop-align);
}
.animex-ui-flex[style*="--animex-prop-justify:"] {
  justify-content: var(--animex-prop-justify);
}
.animex-ui-flex[style*="--animex-prop-wrap:"] {
  flex-wrap: var(--animex-prop-wrap);
}
.animex-ui-flex[style*="--animex-prop-gap:"] {
  gap: var(--animex-prop-gap);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.FlexItem.Element/6_udjaht23kie73m4yf3scihjima.css */
.animex-ui-flex-item[style*="--animex-prop-grow:"] {
  flex-grow: var(--animex-prop-grow);
}
.animex-ui-flex-item[style*="--animex-prop-shrink:"] {
  flex-shrink: var(--animex-prop-shrink);
}
.animex-ui-flex-item[style*="--animex-prop-basis:"] {
  flex-basis: var(--animex-prop-basis);
}
.animex-ui-flex-item[style*="--animex-prop-order:"] {
  order: var(--animex-prop-order);
}
.animex-ui-flex-item[style*="--animex-prop-align-self:"] {
  align-self: var(--animex-prop-align-self);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Grid.Element/3_oolnlynhbgwjk3h2anf3cb5k7a.css */
.animex-ui-grid {
  display: grid;
}
.animex-ui-grid--inline {
  display: inline-grid;
}
.animex-ui-grid[style*="--animex-prop-grid-template-columns:"] {
  grid-template-columns: var(--animex-prop-grid-template-columns);
}
@media (min-width: 1024px) {
  .animex-ui-grid[style*="--animex-prop-desktop-grid-template-columns:"] {
    grid-template-columns: var(--animex-prop-desktop-grid-template-columns);
  }
}
.animex-ui-grid[style*="--animex-prop-grid-template-rows:"] {
  grid-template-rows: var(--animex-prop-grid-template-rows);
}
.animex-ui-grid[style*="--animex-prop-grid-template-areas:"] {
  grid-template-areas: var(--animex-prop-grid-template-areas);
}
.animex-ui-grid[style*="--animex-prop-gap:"] {
  gap: var(--animex-prop-gap);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.GridArea.Element/6_52wanlrqlxbnegasqntou3jjfq.css */
.animex-ui-grid-area[style*="--animex-prop-grid-area:"] {
  grid-area: var(--animex-prop-grid-area);
}
.animex-ui-grid-area[style*="--animex-prop-grid-column:"] {
  grid-column: var(--animex-prop-grid-column);
}
.animex-ui-grid-area[style*="--animex-prop-grid-row:"] {
  grid-row: var(--animex-prop-grid-row);
}
.animex-ui-grid-area[style*="--animex-prop-grid-column-start:"] {
  grid-column-start: var(--animex-prop-grid-column-start);
}
.animex-ui-grid-area[style*="--animex-prop-grid-column-end:"] {
  grid-column-end: var(--animex-prop-grid-column-end);
}
.animex-ui-grid-area[style*="--animex-prop-grid-row-start:"] {
  grid-row-start: var(--animex-prop-grid-row-start);
}
.animex-ui-grid-area[style*="--animex-prop-grid-row-end:"] {
  grid-row-end: var(--animex-prop-grid-row-end);
}
.animex-ui-grid-area[style*="--animex-prop-justify-self:"] {
  justify-self: var(--animex-prop-justify-self);
}
.animex-ui-grid-area[style*="--animex-prop-align-self:"] {
  align-self: var(--animex-prop-align-self);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Icon.Element/3_6dvnn24djec7wbjxn37sugie7u.css */
.animex-ui-icon {
  vertical-align: middle;
  object-fit: contain;
  object-position: center;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Inline.Element/5_4ef4pqt4yu5li33uekviliigea.css */
.animex-ui-inline {
  display: inline;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.ProgressBar.Element/3_vrgxewd4ybrxt276it2znqlxze.css */
.animex-ui-progress-bar {
  line-height: 0;
}
.animex-ui-progress-bar-fill {
  display: block;
  max-width: 100%;
  border-radius: inherit;
  transition: width 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.animex-ui-progress-bar--indeterminate .animex-ui-progress-bar-fill {
  width: 35%;
  transition: none;
  animation: animex-ui-progress-bar-sweep 1.15s ease-in-out infinite;
}
@keyframes animex-ui-progress-bar-sweep {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(315%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animex-ui-progress-bar--indeterminate .animex-ui-progress-bar-fill {
    animation-duration: 2.4s;
  }
}
.animex-ui-progress-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  pointer-events: none;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Surface.Element/9_qcdwsooc3o3pft5uuakteil5la.css */
.animex-ui-surface {
  box-sizing: border-box;
  --animex-prop-width: initial;
  --animex-prop-height: initial;
  --animex-prop-min-width: initial;
  --animex-prop-max-width: initial;
  --animex-prop-min-height: initial;
  --animex-prop-max-height: initial;
  --animex-prop-margin: initial;
  --animex-prop-padding: initial;
  --animex-prop-background: initial;
  --animex-prop-transform: initial;
  width: var(--animex-prop-width);
  min-width: var(--animex-prop-min-width);
  max-width: var(--animex-prop-max-width);
  height: var(--animex-prop-height);
  min-height: var(--animex-prop-min-height);
  max-height: var(--animex-prop-max-height);
  margin: var(--animex-prop-margin);
  padding: var(--animex-prop-padding);
  background: var(--animex-prop-background);
  transform: var(--animex-prop-transform);
}
.animex-ui-surface[style*=--animex-prop-margin-top] {
  margin-top: var(--animex-prop-margin-top);
}
.animex-ui-surface[style*=--animex-prop-margin-right] {
  margin-right: var(--animex-prop-margin-right);
}
.animex-ui-surface[style*=--animex-prop-margin-bottom] {
  margin-bottom: var(--animex-prop-margin-bottom);
}
.animex-ui-surface[style*=--animex-prop-margin-left] {
  margin-left: var(--animex-prop-margin-left);
}
.animex-ui-surface[style*=--animex-prop-padding-top] {
  padding-top: var(--animex-prop-padding-top);
}
.animex-ui-surface[style*=--animex-prop-padding-right] {
  padding-right: var(--animex-prop-padding-right);
}
.animex-ui-surface[style*=--animex-prop-padding-bottom] {
  padding-bottom: var(--animex-prop-padding-bottom);
}
.animex-ui-surface[style*=--animex-prop-padding-left] {
  padding-left: var(--animex-prop-padding-left);
}
.animex-ui-surface[style*=--animex-prop-background-color] {
  background-color: var(--animex-prop-background-color);
}
.animex-ui-surface[style*=--animex-prop-position] {
  position: var(--animex-prop-position);
}
.animex-ui-surface[style*=--animex-prop-top] {
  top: var(--animex-prop-top);
}
.animex-ui-surface[style*=--animex-prop-bottom] {
  bottom: var(--animex-prop-bottom);
}
.animex-ui-surface[style*=--animex-prop-left] {
  left: var(--animex-prop-left);
}
.animex-ui-surface[style*=--animex-prop-right] {
  right: var(--animex-prop-right);
}
.animex-ui-surface[style*=--animex-prop-inset] {
  inset: var(--animex-prop-inset);
}
.animex-ui-surface[style*=--animex-prop-z-index] {
  z-index: var(--animex-prop-z-index);
}
.animex-ui-surface[style*=--animex-prop-float] {
  float: var(--animex-prop-float);
}
.animex-ui-surface[style*="--animex-prop-outline:"] {
  outline: var(--animex-prop-outline);
}
.animex-ui-surface[style*="--animex-prop-outline-offset:"] {
  outline-offset: var(--animex-prop-outline-offset);
}
.animex-ui-surface[style*="--animex-prop-border:"] {
  border: var(--animex-prop-border);
}
.animex-ui-surface[style*=--animex-prop-border-top] {
  border-top: var(--animex-prop-border-top);
}
.animex-ui-surface[style*=--animex-prop-border-bottom] {
  border-bottom: var(--animex-prop-border-bottom);
}
.animex-ui-surface[style*=--animex-prop-border-left] {
  border-left: var(--animex-prop-border-left);
}
.animex-ui-surface[style*=--animex-prop-border-right] {
  border-right: var(--animex-prop-border-right);
}
.animex-ui-surface[style*=--animex-prop-border-radius] {
  border-radius: var(--animex-prop-border-radius);
}
.animex-ui-surface[style*=--animex-prop-box-shadow] {
  box-shadow: var(--animex-prop-box-shadow);
}
.animex-ui-surface[style*=--animex-prop-background-image] {
  background-image: var(--animex-prop-background-image);
}
.animex-ui-surface[style*=--animex-prop-background-size] {
  background-size: var(--animex-prop-background-size);
}
.animex-ui-surface[style*=--animex-prop-background-position] {
  background-position: var(--animex-prop-background-position);
}
.animex-ui-surface[style*=--animex-prop-backdrop-filter] {
  backdrop-filter: var(--animex-prop-backdrop-filter);
}
.animex-ui-surface[style*=--animex-prop-background-repeat] {
  background-repeat: var(--animex-prop-background-repeat);
}
.animex-ui-surface[style*=--animex-prop-opacity] {
  opacity: var(--animex-prop-opacity);
}
.animex-ui-surface[style*="--animex-prop-overflow:"] {
  overflow: var(--animex-prop-overflow);
}
.animex-ui-surface[style*=--animex-prop-overflow-x] {
  overflow-x: var(--animex-prop-overflow-x);
}
.animex-ui-surface[style*=--animex-prop-overflow-y] {
  overflow-y: var(--animex-prop-overflow-y);
}
.animex-ui-surface[style*=--animex-prop-cursor] {
  cursor: var(--animex-prop-cursor);
}
.animex-ui-surface[style*="--animex-prop-transition:"] {
  transition: var(--animex-prop-transition);
}
.animex-ui-surface[style*="--animex-prop-hover-background:"]:hover {
  background: var(--animex-prop-hover-background);
}
.animex-ui-surface[style*="--animex-prop-hover-background-color:"]:hover {
  background-color: var(--animex-prop-hover-background-color);
}
.animex-ui-surface[style*="--animex-prop-hover-background-image:"]:hover {
  background-image: var(--animex-prop-hover-background-image);
}
.animex-ui-surface[style*="--animex-prop-hover-background-size:"]:hover {
  background-size: var(--animex-prop-hover-background-size);
}
.animex-ui-surface[style*="--animex-prop-hover-background-position:"]:hover {
  background-position: var(--animex-prop-hover-background-position);
}
.animex-ui-surface[style*="--animex-prop-hover-background-repeat:"]:hover {
  background-repeat: var(--animex-prop-hover-background-repeat);
}
.animex-ui-surface[style*="--animex-prop-hover-backdrop-filter:"]:hover {
  backdrop-filter: var(--animex-prop-hover-backdrop-filter);
}
.animex-ui-surface[style*="--animex-prop-hover-outline:"]:hover {
  outline: var(--animex-prop-hover-outline);
}
.animex-ui-surface[style*="--animex-prop-hover-outline-offset:"]:hover {
  outline-offset: var(--animex-prop-hover-outline-offset);
}
.animex-ui-surface[style*="--animex-prop-hover-border-color:"]:hover {
  border-color: var(--animex-prop-hover-border-color);
}
.animex-ui-surface[style*="--animex-prop-hover-border-radius:"]:hover {
  border-radius: var(--animex-prop-hover-border-radius);
}
.animex-ui-surface[style*="--animex-prop-hover-box-shadow:"]:hover {
  box-shadow: var(--animex-prop-hover-box-shadow);
}
.animex-ui-surface[style*="--animex-prop-hover-opacity:"]:hover {
  opacity: var(--animex-prop-hover-opacity);
}
.animex-ui-surface[style*="--animex-prop-hover-transition:"]:hover {
  transition: var(--animex-prop-hover-transition);
}
.animex-ui-surface[style*="--animex-prop-focus-background-color:"]:focus {
  background-color: var(--animex-prop-focus-background-color);
}
.animex-ui-surface[style*="--animex-prop-focus-background-image:"]:focus {
  background-image: var(--animex-prop-focus-background-image);
}
.animex-ui-surface[style*="--animex-prop-focus-backdrop-filter:"]:focus {
  backdrop-filter: var(--animex-prop-focus-backdrop-filter);
}
.animex-ui-surface[style*="--animex-prop-focus-outline:"]:focus {
  outline: var(--animex-prop-focus-outline);
}
.animex-ui-surface[style*="--animex-prop-focus-outline-offset:"]:focus {
  outline-offset: var(--animex-prop-focus-outline-offset);
}
.animex-ui-surface[style*="--animex-prop-focus-border-color:"]:focus {
  border-color: var(--animex-prop-focus-border-color);
}
.animex-ui-surface[style*="--animex-prop-focus-border-radius:"]:focus {
  border-radius: var(--animex-prop-focus-border-radius);
}
.animex-ui-surface[style*="--animex-prop-focus-box-shadow:"]:focus {
  box-shadow: var(--animex-prop-focus-box-shadow);
}
.animex-ui-surface[style*="--animex-prop-focus-opacity:"]:focus {
  opacity: var(--animex-prop-focus-opacity);
}
.animex-ui-surface[style*="--animex-prop-focus-transition:"]:focus {
  transition: var(--animex-prop-focus-transition);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-width:"] {
  width: var(--animex-prop-busy-width);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-min-width:"] {
  min-width: var(--animex-prop-busy-min-width);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-max-width:"] {
  max-width: var(--animex-prop-busy-max-width);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-height:"] {
  height: var(--animex-prop-busy-height);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-min-height:"] {
  min-height: var(--animex-prop-busy-min-height);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-max-height:"] {
  max-height: var(--animex-prop-busy-max-height);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-margin:"] {
  margin: var(--animex-prop-busy-margin);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-margin-top:"] {
  margin-top: var(--animex-prop-busy-margin-top);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-margin-right:"] {
  margin-right: var(--animex-prop-busy-margin-right);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-margin-bottom:"] {
  margin-bottom: var(--animex-prop-busy-margin-bottom);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-margin-left:"] {
  margin-left: var(--animex-prop-busy-margin-left);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-padding:"] {
  padding: var(--animex-prop-busy-padding);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-padding-top:"] {
  padding-top: var(--animex-prop-busy-padding-top);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-padding-right:"] {
  padding-right: var(--animex-prop-busy-padding-right);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-padding-bottom:"] {
  padding-bottom: var(--animex-prop-busy-padding-bottom);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-padding-left:"] {
  padding-left: var(--animex-prop-busy-padding-left);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-background:"] {
  background: var(--animex-prop-busy-background);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-background-image:"] {
  background-image: var(--animex-prop-busy-background-image);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-backdrop-filter:"] {
  backdrop-filter: var(--animex-prop-busy-backdrop-filter);
  -webkit-backdrop-filter: var(--animex-prop-busy-backdrop-filter);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-outline:"] {
  outline: var(--animex-prop-busy-outline);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-outline-offset:"] {
  outline-offset: var(--animex-prop-busy-outline-offset);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border:"] {
  border: var(--animex-prop-busy-border);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-top:"] {
  border-top: var(--animex-prop-busy-border-top);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-bottom:"] {
  border-bottom: var(--animex-prop-busy-border-bottom);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-left:"] {
  border-left: var(--animex-prop-busy-border-left);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-right:"] {
  border-right: var(--animex-prop-busy-border-right);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-radius:"] {
  border-radius: var(--animex-prop-busy-border-radius);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-border-color:"] {
  border-color: var(--animex-prop-busy-border-color);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-box-shadow:"] {
  box-shadow: var(--animex-prop-busy-box-shadow);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-position:"] {
  position: var(--animex-prop-busy-position);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-inset:"] {
  inset: var(--animex-prop-busy-inset);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-top:"] {
  top: var(--animex-prop-busy-top);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-left:"] {
  left: var(--animex-prop-busy-left);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-right:"] {
  right: var(--animex-prop-busy-right);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-bottom:"] {
  bottom: var(--animex-prop-busy-bottom);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-z-index:"] {
  z-index: var(--animex-prop-busy-z-index);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-float:"] {
  float: var(--animex-prop-busy-float);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-opacity:"] {
  opacity: var(--animex-prop-busy-opacity);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-cursor:"] {
  cursor: var(--animex-prop-busy-cursor);
}
.animex-busy.animex-ui-surface[style*="--animex-prop-busy-transform:"] {
  transform: var(--animex-prop-busy-transform);
}
.animex-busy[style*="--animex-prop-busy-opacity:"] {
  opacity: var(--animex-prop-busy-opacity);
}
.animex-busy[style*="--animex-prop-busy-hidden:"] {
  display: none;
}
.animex-busy[style*="--animex-prop-busy-inline:"] {
  display: inline;
}
.animex-busy[style*="--animex-prop-busy-overflow:"] {
  overflow: var(--animex-prop-busy-overflow);
}
.animex-busy[style*="--animex-prop-busy-overflow-x:"] {
  overflow-x: var(--animex-prop-busy-overflow-x);
}
.animex-busy[style*="--animex-prop-busy-overflow-y:"] {
  overflow-y: var(--animex-prop-busy-overflow-y);
}
.animex-busy[style*="--animex-prop-busy-cursor:"] {
  cursor: var(--animex-prop-busy-cursor);
}
.animex-busy[style*="--animex-prop-busy-filter:"] {
  filter: var(--animex-prop-busy-filter);
}
.animex-busy[style*="--animex-prop-busy-transform:"] {
  transform: var(--animex-prop-busy-transform);
}
.animex-busy[style*="--animex-prop-busy-transition:"] {
  transition: var(--animex-prop-busy-transition);
}
.animex-busy[style*="--animex-prop-busy-user-select:"] {
  user-select: var(--animex-prop-busy-user-select);
}
.animex-busy[style*="--animex-prop-busy-background-color:"] {
  background-color: var(--animex-prop-busy-background-color);
}
.animex-busy[style*="--animex-prop-busy-background-image:"] {
  background-image: var(--animex-prop-busy-background-image);
}
.animex-busy[style*="--animex-prop-busy-backdrop-filter:"] {
  backdrop-filter: var(--animex-prop-busy-backdrop-filter);
}
.animex-busy[style*="--animex-prop-busy-outline:"] {
  outline: var(--animex-prop-busy-outline);
}
.animex-busy[style*="--animex-prop-busy-outline-offset:"] {
  outline-offset: var(--animex-prop-busy-outline-offset);
}
.animex-busy[style*="--animex-prop-busy-border-color:"] {
  border-color: var(--animex-prop-busy-border-color);
}
.animex-busy[style*="--animex-prop-busy-border-radius:"] {
  border-radius: var(--animex-prop-busy-border-radius);
}
.animex-busy[style*="--animex-prop-busy-box-shadow:"] {
  box-shadow: var(--animex-prop-busy-box-shadow);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-width:"] {
  width: var(--animex-prop-parent-hover-width);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-min-width:"] {
  min-width: var(--animex-prop-parent-hover-min-width);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-max-width:"] {
  max-width: var(--animex-prop-parent-hover-max-width);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-height:"] {
  height: var(--animex-prop-parent-hover-height);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-min-height:"] {
  min-height: var(--animex-prop-parent-hover-min-height);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-max-height:"] {
  max-height: var(--animex-prop-parent-hover-max-height);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-margin:"] {
  margin: var(--animex-prop-parent-hover-margin);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-margin-top:"] {
  margin-top: var(--animex-prop-parent-hover-margin-top);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-margin-right:"] {
  margin-right: var(--animex-prop-parent-hover-margin-right);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-margin-bottom:"] {
  margin-bottom: var(--animex-prop-parent-hover-margin-bottom);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-margin-left:"] {
  margin-left: var(--animex-prop-parent-hover-margin-left);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-padding:"] {
  padding: var(--animex-prop-parent-hover-padding);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-padding-top:"] {
  padding-top: var(--animex-prop-parent-hover-padding-top);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-padding-right:"] {
  padding-right: var(--animex-prop-parent-hover-padding-right);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-padding-bottom:"] {
  padding-bottom: var(--animex-prop-parent-hover-padding-bottom);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-padding-left:"] {
  padding-left: var(--animex-prop-parent-hover-padding-left);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-background:"] {
  background: var(--animex-prop-parent-hover-background);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-background-color:"] {
  background-color: var(--animex-prop-parent-hover-background-color);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-background-image:"] {
  background-image: var(--animex-prop-parent-hover-background-image);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-background-size:"] {
  background-size: var(--animex-prop-parent-hover-background-size);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-background-position:"] {
  background-position: var(--animex-prop-parent-hover-background-position);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-backdrop-filter:"] {
  backdrop-filter: var(--animex-prop-parent-hover-backdrop-filter);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-outline:"] {
  outline: var(--animex-prop-parent-hover-outline);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-outline-offset:"] {
  outline-offset: var(--animex-prop-parent-hover-outline-offset);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border:"] {
  border: var(--animex-prop-parent-hover-border);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-top:"] {
  border-top: var(--animex-prop-parent-hover-border-top);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-bottom:"] {
  border-bottom: var(--animex-prop-parent-hover-border-bottom);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-left:"] {
  border-left: var(--animex-prop-parent-hover-border-left);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-right:"] {
  border-right: var(--animex-prop-parent-hover-border-right);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-radius:"] {
  border-radius: var(--animex-prop-parent-hover-border-radius);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-border-color:"] {
  border-color: var(--animex-prop-parent-hover-border-color);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-box-shadow:"] {
  box-shadow: var(--animex-prop-parent-hover-box-shadow);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-opacity:"] {
  opacity: var(--animex-prop-parent-hover-opacity);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-transform:"] {
  transform: var(--animex-prop-parent-hover-transform);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-position:"] {
  position: var(--animex-prop-parent-hover-position);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-inset:"] {
  inset: var(--animex-prop-parent-hover-inset);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-top:"] {
  top: var(--animex-prop-parent-hover-top);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-left:"] {
  left: var(--animex-prop-parent-hover-left);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-right:"] {
  right: var(--animex-prop-parent-hover-right);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-bottom:"] {
  bottom: var(--animex-prop-parent-hover-bottom);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-z-index:"] {
  z-index: var(--animex-prop-parent-hover-z-index);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-float:"] {
  float: var(--animex-prop-parent-hover-float);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-overflow:"] {
  overflow: var(--animex-prop-parent-hover-overflow);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-overflow-x:"] {
  overflow-x: var(--animex-prop-parent-hover-overflow-x);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-overflow-y:"] {
  overflow-y: var(--animex-prop-parent-hover-overflow-y);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-cursor:"] {
  cursor: var(--animex-prop-parent-hover-cursor);
}
:hover > .animex-ui-surface[style*="--animex-prop-parent-hover-transition:"] {
  transition: var(--animex-prop-parent-hover-transition);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-width:"] {
  width: var(--animex-prop-parent-busy-width);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-min-width:"] {
  min-width: var(--animex-prop-parent-busy-min-width);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-max-width:"] {
  max-width: var(--animex-prop-parent-busy-max-width);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-height:"] {
  height: var(--animex-prop-parent-busy-height);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-min-height:"] {
  min-height: var(--animex-prop-parent-busy-min-height);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-max-height:"] {
  max-height: var(--animex-prop-parent-busy-max-height);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-margin:"] {
  margin: var(--animex-prop-parent-busy-margin);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-margin-top:"] {
  margin-top: var(--animex-prop-parent-busy-margin-top);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-margin-right:"] {
  margin-right: var(--animex-prop-parent-busy-margin-right);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-margin-bottom:"] {
  margin-bottom: var(--animex-prop-parent-busy-margin-bottom);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-margin-left:"] {
  margin-left: var(--animex-prop-parent-busy-margin-left);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-padding:"] {
  padding: var(--animex-prop-parent-busy-padding);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-padding-top:"] {
  padding-top: var(--animex-prop-parent-busy-padding-top);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-padding-right:"] {
  padding-right: var(--animex-prop-parent-busy-padding-right);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-padding-bottom:"] {
  padding-bottom: var(--animex-prop-parent-busy-padding-bottom);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-padding-left:"] {
  padding-left: var(--animex-prop-parent-busy-padding-left);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background:"] {
  background: var(--animex-prop-parent-busy-background);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background-color:"] {
  background-color: var(--animex-prop-parent-busy-background-color);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background-image:"] {
  background-image: var(--animex-prop-parent-busy-background-image);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background-size:"] {
  background-size: var(--animex-prop-parent-busy-background-size);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background-position:"] {
  background-position: var(--animex-prop-parent-busy-background-position);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-backdrop-filter:"] {
  backdrop-filter: var(--animex-prop-parent-busy-backdrop-filter);
  -webkit-backdrop-filter: var(--animex-prop-parent-busy-backdrop-filter);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-outline:"] {
  outline: var(--animex-prop-parent-busy-outline);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-outline-offset:"] {
  outline-offset: var(--animex-prop-parent-busy-outline-offset);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border:"] {
  border: var(--animex-prop-parent-busy-border);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-top:"] {
  border-top: var(--animex-prop-parent-busy-border-top);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-bottom:"] {
  border-bottom: var(--animex-prop-parent-busy-border-bottom);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-left:"] {
  border-left: var(--animex-prop-parent-busy-border-left);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-right:"] {
  border-right: var(--animex-prop-parent-busy-border-right);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-radius:"] {
  border-radius: var(--animex-prop-parent-busy-border-radius);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-border-color:"] {
  border-color: var(--animex-prop-parent-busy-border-color);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-box-shadow:"] {
  box-shadow: var(--animex-prop-parent-busy-box-shadow);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-opacity:"] {
  opacity: var(--animex-prop-parent-busy-opacity);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-transform:"] {
  transform: var(--animex-prop-parent-busy-transform);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-position:"] {
  position: var(--animex-prop-parent-busy-position);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-inset:"] {
  inset: var(--animex-prop-parent-busy-inset);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-top:"] {
  top: var(--animex-prop-parent-busy-top);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-left:"] {
  left: var(--animex-prop-parent-busy-left);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-right:"] {
  right: var(--animex-prop-parent-busy-right);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-bottom:"] {
  bottom: var(--animex-prop-parent-busy-bottom);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-z-index:"] {
  z-index: var(--animex-prop-parent-busy-z-index);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-float:"] {
  float: var(--animex-prop-parent-busy-float);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-overflow:"] {
  overflow: var(--animex-prop-parent-busy-overflow);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-overflow-x:"] {
  overflow-x: var(--animex-prop-parent-busy-overflow-x);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-overflow-y:"] {
  overflow-y: var(--animex-prop-parent-busy-overflow-y);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-cursor:"] {
  cursor: var(--animex-prop-parent-busy-cursor);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-background-repeat:"] {
  background-repeat: var(--animex-prop-parent-busy-background-repeat);
}
.animex-busy > .animex-ui-surface[style*="--animex-prop-parent-busy-transition:"] {
  transition: var(--animex-prop-parent-busy-transition);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Tag.Element/3_z7lloqewnncepnneprhzoswi4q.css */
.animex-ui-tag--hidden {
  display: none;
}
[style*="--animex-prop-font-size:"] {
  font-size: var(--animex-prop-font-size);
}
[style*="--animex-prop-color:"] {
  color: var(--animex-prop-color);
}
[style*="--animex-prop-font:"] {
  font-family: var(--animex-prop-font);
}
[style*="--animex-prop-font-family:"] {
  font-family: var(--animex-prop-font-family);
}
[style*="--animex-prop-line-height:"] {
  line-height: var(--animex-prop-line-height);
}
[style*="--animex-prop-text-overflow:"] {
  text-overflow: var(--animex-prop-text-overflow);
}
[style*="--animex-prop-bold-:"] {
  font-weight: bold;
}
[style*="--animex-prop-italic-:"] {
  font-style: italic;
}
[style*="--animex-prop-underline-:"] {
  text-decoration: underline;
}
[style*="--animex-prop-text-align:"] {
  text-align: var(--animex-prop-text-align);
}
[style*="--animex-prop-transition:"] {
  transition: var(--animex-prop-transition);
}
[style*="--animex-prop-hover-color:"]:hover {
  color: var(--animex-prop-hover-color);
}
[style*="--animex-prop-hover-font-size:"]:hover {
  font-size: var(--animex-prop-hover-font-size);
}
[style*="--animex-prop-hover-font:"]:hover {
  font-family: var(--animex-prop-hover-font);
}
[style*="--animex-prop-hover-font-family:"]:hover {
  font-family: var(--animex-prop-hover-font-family);
}
[style*="--animex-prop-hover-line-height:"]:hover {
  line-height: var(--animex-prop-hover-line-height);
}
[style*="--animex-prop-hover-text-overflow:"]:hover {
  text-overflow: var(--animex-prop-hover-text-overflow);
}
[style*="--animex-prop-hover-bold-:"]:hover {
  font-weight: bold;
}
[style*="--animex-prop-hover-italic-:"]:hover {
  font-style: italic;
}
[style*="--animex-prop-hover-underline-:"]:hover {
  text-decoration: underline;
}
[style*="--animex-prop-hover-transition:"]:hover {
  transition: var(--animex-prop-hover-transition);
}
[style*="--animex-prop-focus-color:"]:focus {
  color: var(--animex-prop-focus-color);
}
[style*="--animex-prop-focus-font-size:"]:focus {
  font-size: var(--animex-prop-focus-font-size);
}
[style*="--animex-prop-focus-font:"]:focus {
  font-family: var(--animex-prop-focus-font);
}
[style*="--animex-prop-focus-font-family:"]:focus {
  font-family: var(--animex-prop-focus-font-family);
}
[style*="--animex-prop-focus-line-height:"]:focus {
  line-height: var(--animex-prop-focus-line-height);
}
[style*="--animex-prop-focus-text-overflow:"]:focus {
  text-overflow: var(--animex-prop-focus-text-overflow);
}
[style*="--animex-prop-focus-bold-:"]:focus {
  font-weight: bold;
}
[style*="--animex-prop-focus-italic-:"]:focus {
  font-style: italic;
}
[style*="--animex-prop-focus-underline-:"]:focus {
  text-decoration: underline;
}
[style*="--animex-prop-focus-transition:"]:focus {
  transition: var(--animex-prop-focus-transition);
}
.animex-busy[style*="--animex-prop-busy-color:"] {
  color: var(--animex-prop-busy-color);
}
.animex-busy[style*="--animex-prop-busy-font-size:"] {
  font-size: var(--animex-prop-busy-font-size);
}
.animex-busy[style*="--animex-prop-busy-font:"] {
  font-family: var(--animex-prop-busy-font);
}
.animex-busy[style*="--animex-prop-busy-font-family:"] {
  font-family: var(--animex-prop-busy-font-family);
}
.animex-busy[style*="--animex-prop-busy-line-height:"] {
  line-height: var(--animex-prop-busy-line-height);
}
.animex-busy[style*="--animex-prop-busy-text-overflow:"] {
  text-overflow: var(--animex-prop-busy-text-overflow);
}
.animex-busy[style*="--animex-prop-busy-font-weight:"] {
  font-weight: var(--animex-prop-busy-font-weight);
}
.animex-busy[style*="--animex-prop-busy-font-style:"] {
  font-style: var(--animex-prop-busy-font-style);
}
.animex-busy[style*="--animex-prop-busy-text-decoration:"] {
  text-decoration: var(--animex-prop-busy-text-decoration);
}
.animex-busy[style*="--animex-prop-busy-text-align:"] {
  text-align: var(--animex-prop-busy-text-align);
}
.animex-busy[style*="--animex-prop-busy-whitespace:"] {
  white-space: var(--animex-prop-busy-whitespace);
}
.animex-busy[style*="--animex-prop-busy-bold-:"] {
  font-weight: bold;
}
.animex-busy[style*="--animex-prop-busy-italic-:"] {
  font-style: italic;
}
.animex-busy[style*="--animex-prop-busy-underline-:"] {
  text-decoration: underline;
}
.animex-busy[style*="--animex-prop-busy-transition:"] {
  transition: var(--animex-prop-busy-transition);
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/AnimEx.Web.Live.Components.Vein.Element/4_efdkz2hlzf7uau33uqiwlsc6uq.css */
.animex-ui-vein,
.animex-ui-vein > .animex-ui-vein-connecting {
  display: contents;
}
.animex-ui-vein > .animex-ui-vein-connected,
.animex-ui-vein > .animex-ui-vein-ready {
  display: none;
}
.phx-connected.animex-loading .animex-ui-vein > .animex-ui-vein-connecting {
  display: contents;
}
.phx-connected.animex-loading .animex-ui-vein > .animex-ui-vein-connected {
  display: contents;
}
.animex-loading .animex-ui-vein > .animex-ui-vein-ready {
  display: none;
}
.animex-loaded .animex-ui-vein > .animex-ui-vein-connecting {
  display: none;
}
.animex-loaded .animex-ui-vein > .animex-ui-vein-ready {
  display: contents;
}
.phx-loading.animex-loaded .animex-ui-vein > .animex-ui-vein-connecting {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9000;
}

/* ../../cryptoempires/_build/prod/phoenix-colocated/animex/colocated.css */
