/* /Views/Layouts/MainLayout.razor.rz.scp.css */
/* ---------------------------------------------------------------------------
   Keynex skin for Toolkit.Blazor.Extensions.

   The template library ships structure and behaviour only. Everything visual
   lives here: MainLayout wraps every page, so ::deep reaches each template on
   every screen from one place. Values come from the Tailwind @theme tokens in
   Styles/app.css, which are plain custom properties by the time they get here.
   --------------------------------------------------------------------------- */

/* Icon slots ---------------------------------------------------------------
   The library owns these wrapper elements and their state attributes; the glyph
   inside comes from the IconSet MainLayout cascades, and CIcon carries its own
   geometry. So the wrappers only need to hug the glyph and set a colour. */

[b-ixu0u1cllw] .t-control__icon,
[b-ixu0u1cllw] .t-summary__icon,
[b-ixu0u1cllw] .t-select__check,
[b-ixu0u1cllw] .t-checkbox__mark,
[b-ixu0u1cllw] .t-button__spinner {
    display: inline-flex;
    flex-shrink: 0;
}

/* The autocomplete reuses the button's spinner glyph while a search is in flight. */
[b-ixu0u1cllw] .t-control__icon[data-tone="busy"] {
    animation: t-spin-b-ixu0u1cllw 1s linear infinite;
}

/* Field wrapper ----------------------------------------------------------- */

[b-ixu0u1cllw] .t-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[b-ixu0u1cllw] .t-field__message {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-error);
}

[b-ixu0u1cllw] .t-field__helper {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Control shell — Figma "Form / Field", ten states off one box ------------- */

[b-ixu0u1cllw] .t-control {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: var(--spacing-control);
    padding-inline: 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background-color: var(--color-surface-field);
    text-align: left;
    transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

/* Hover only lifts the surface while the field is not the active one. */
[b-ixu0u1cllw] .t-control:hover:not(:has(:focus)):not([data-open="true"]):not([data-state="disabled"]) {
    background-color: var(--color-surface-field-hover);
}

[b-ixu0u1cllw] .t-control:has(input:focus-visible, textarea:focus-visible),
[b-ixu0u1cllw] .t-control[data-open="true"],
[b-ixu0u1cllw] .t-control:focus-visible {
    outline: none;
    border-color: var(--color-border-focus);
    box-shadow: 0 0 0 1px var(--color-border-focus), 0 0 0 5px rgb(79 148 238 / 0.16);
}

[b-ixu0u1cllw] .t-control[data-state="error"] {
    border-color: var(--color-border-error);
    box-shadow: 0 0 0 1px var(--color-border-error);
}

[b-ixu0u1cllw] .t-control[data-state="success"] {
    border-color: var(--color-border-success);
    box-shadow: 0 0 0 1px var(--color-border-success);
}

[b-ixu0u1cllw] .t-control[data-state="disabled"] {
    background-color: var(--color-surface-field-disabled);
    cursor: not-allowed;
}

[b-ixu0u1cllw] .t-control--multiline {
    height: var(--spacing-control-multiline);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px 16px 12px;
}

/* Reversed so the markup can keep input-before-label (for :placeholder-shown)
   while the label still renders above the value. */
[b-ixu0u1cllw] .t-control__body {
    display: flex;
    flex: 1 1 0%;
    min-width: 0;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 3px;
}

[b-ixu0u1cllw] .t-control--multiline .t-control__body {
    flex: 1 1 auto;
}

[b-ixu0u1cllw] .t-control__input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--color-text-value);
    font-size: var(--text-body);
    line-height: 1.5;
}

[b-ixu0u1cllw] .t-control__input:disabled {
    color: var(--color-text-on-action-disabled);
    cursor: not-allowed;
}

[b-ixu0u1cllw] textarea.t-control__input {
    flex: 1 1 auto;
    height: 100%;
    resize: none;
}

[b-ixu0u1cllw] .t-control__label {
    font-size: var(--text-eyebrow);
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* The floating label only exists once the control has a value. */
[b-ixu0u1cllw] .t-control__input:placeholder-shown + .t-control__label {
    display: none;
}

[b-ixu0u1cllw] .t-control__value {
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-value);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[b-ixu0u1cllw] .t-control__value[data-empty="true"] {
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-control__optional,
[b-ixu0u1cllw] .t-control__counter {
    flex-shrink: 0;
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-control__footer {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
}

[b-ixu0u1cllw] .t-control__icon {
    color: var(--color-icon-muted);
    transition: transform 120ms ease;
}

[b-ixu0u1cllw] .t-control__icon[data-tone="error"] {
    color: var(--color-icon-error);
}

[b-ixu0u1cllw] .t-control__icon[data-open="true"] {
    transform: rotate(180deg);
}

/* Overlays — Figma "Overlay / Menu" and "Overlay / Date picker" ------------ */

[b-ixu0u1cllw] .t-select,
[b-ixu0u1cllw] .t-datepicker,
[b-ixu0u1cllw] .t-autocomplete {
    position: relative;
}

[b-ixu0u1cllw] .t-select__backdrop,
[b-ixu0u1cllw] .t-datepicker__backdrop,
[b-ixu0u1cllw] .t-autocomplete__backdrop {
    position: fixed;
    inset: 0;
    z-index: 20;
}

[b-ixu0u1cllw] .t-select__menu,
[b-ixu0u1cllw] .t-datepicker__panel,
[b-ixu0u1cllw] .t-autocomplete__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    border: 1px solid var(--color-border-default);
    border-radius: var(--radius-lg);
    background-color: var(--color-surface-menu);
    box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.55);
}

[b-ixu0u1cllw] .t-select__menu,
[b-ixu0u1cllw] .t-autocomplete__menu,
[b-ixu0u1cllw] .t-autocomplete__menu ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    max-height: 20rem;
    overflow-y: auto;
    padding: 8px;
    list-style: none;
}

/* The menu itself only frames the header, list and footer — the list inside it is
   what scrolls, so those three stay put. */
[b-ixu0u1cllw] .t-autocomplete__menu {
    max-height: none;
    overflow: visible;
}

[b-ixu0u1cllw] .t-autocomplete__menu ul {
    padding: 0;
}

[b-ixu0u1cllw] .t-autocomplete__header,
[b-ixu0u1cllw] .t-autocomplete__footer {
    padding: 8px 16px;
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-autocomplete__header {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

[b-ixu0u1cllw] .t-autocomplete__footer {
    border-top: 1px solid var(--color-border-default);
    text-align: right;
}

[b-ixu0u1cllw] .t-autocomplete__empty {
    display: flex;
    align-items: center;
    height: 48px;
    padding-inline: 16px;
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-select__option,
[b-ixu0u1cllw] .t-autocomplete__option {
    display: flex;
    height: 48px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: var(--radius-sm);
    padding-inline: 16px;
    text-align: left;
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-muted);
    transition: background-color 120ms ease, color 120ms ease;
}

[b-ixu0u1cllw] .t-select__option:hover,
[b-ixu0u1cllw] .t-select__option[data-selected="true"],
[b-ixu0u1cllw] .t-autocomplete__option:hover,
[b-ixu0u1cllw] .t-autocomplete__option[data-active="true"] {
    background-color: var(--color-surface-field-hover);
    color: var(--color-text-value);
}

/* Suggestions wrap, unlike the single-line select options. */
[b-ixu0u1cllw] .t-autocomplete__option {
    height: auto;
    min-height: 48px;
    padding-block: 12px;
    justify-content: flex-start;
}

[b-ixu0u1cllw] .t-select__check {
    color: var(--color-border-focus);
}

/* Figma draws the tick at 11×10 in a menu row, against CIcon's natural 15×12. */
[b-ixu0u1cllw] .t-select__check svg {
    width: 11px;
    height: 10px;
}

/* Date picker ------------------------------------------------------------- */

[b-ixu0u1cllw] .t-datepicker__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 348px;
    max-width: calc(100vw - 3rem);
    padding: 20px;
}

[b-ixu0u1cllw] .t-datepicker__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

[b-ixu0u1cllw] .t-datepicker__month {
    font-size: var(--text-section);
    line-height: 24px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--color-text-value);
}

[b-ixu0u1cllw] .t-datepicker__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-ixu0u1cllw] .t-datepicker__nav button {
    display: flex;
    height: 24px;
    width: 24px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--color-icon-muted);
    transition: background-color 120ms ease, color 120ms ease;
}

[b-ixu0u1cllw] .t-datepicker__nav button:hover {
    background-color: var(--color-surface-field-hover);
    color: var(--color-text-value);
}

[b-ixu0u1cllw] .t-datepicker__weekdays,
[b-ixu0u1cllw] .t-datepicker__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

[b-ixu0u1cllw] .t-datepicker__weekday {
    display: flex;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-size: var(--text-eyebrow);
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-datepicker__day,
[b-ixu0u1cllw] .t-datepicker__blank {
    height: 40px;
}

[b-ixu0u1cllw] .t-datepicker__day {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-value);
    transition: background-color 120ms ease;
}

[b-ixu0u1cllw] .t-datepicker__day:hover:not(:disabled) {
    background-color: var(--color-surface-field-hover);
}

[b-ixu0u1cllw] .t-datepicker__day[data-selected="true"] {
    background-color: var(--color-border-focus);
}

[b-ixu0u1cllw] .t-datepicker__day:disabled {
    color: var(--color-text-on-action-disabled);
    cursor: not-allowed;
}

[b-ixu0u1cllw] .t-datepicker__note {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Checkbox — Figma "Form / Checkbox" + "Form / Consent" -------------------- */

[b-ixu0u1cllw] .t-checkbox {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[b-ixu0u1cllw] .t-checkbox__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

[b-ixu0u1cllw] .t-checkbox__box {
    position: relative;
    margin-top: 2px;
    display: inline-flex;
    height: var(--spacing-control-inline);
    width: var(--spacing-control-inline);
    flex-shrink: 0;
}

[b-ixu0u1cllw] .t-checkbox__input {
    height: var(--spacing-control-inline);
    width: var(--spacing-control-inline);
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    border: 1px solid var(--color-border-default);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: background-color 120ms ease, border-color 120ms ease;
}

[b-ixu0u1cllw] .t-checkbox__input:checked {
    border-color: var(--color-border-focus);
    background-color: var(--color-border-focus);
}

[b-ixu0u1cllw] .t-checkbox[data-state="error"] .t-checkbox__input {
    border-color: var(--color-border-error);
}

/* Covers the box and centres the glyph itself: inset alone stretches this span to
   20×20 and leaves the 11×10 tick in the top-left corner. */
[b-ixu0u1cllw] .t-checkbox__mark {
    pointer-events: none;
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--color-text-value);
}

[b-ixu0u1cllw] .t-checkbox__input:checked ~ .t-checkbox__mark {
    display: flex;
}

/* Same 11×10 tick as a menu row. */
[b-ixu0u1cllw] .t-checkbox__mark svg {
    width: 11px;
    height: 10px;
}

[b-ixu0u1cllw] .t-checkbox__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

[b-ixu0u1cllw] .t-checkbox__label {
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-value);
}

[b-ixu0u1cllw] .t-checkbox__helper {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-checkbox__message {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-error);
}

/* Button — Figma "Form / Button" ------------------------------------------ */

[b-ixu0u1cllw] .t-button {
    display: flex;
    height: var(--spacing-control);
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: var(--radius-md);
    background-color: var(--color-surface-action);
    color: var(--color-text-on-action);
    font-size: var(--text-body);
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 120ms ease;
}

[b-ixu0u1cllw] .t-button:hover {
    background-color: var(--color-surface-action-hover);
}

[b-ixu0u1cllw] .t-button:active {
    background-color: var(--color-surface-action-pressed);
}

[b-ixu0u1cllw] .t-button[data-disabled="true"] {
    background-color: var(--color-surface-action-disabled);
    color: var(--color-text-on-action-disabled);
    cursor: not-allowed;
}

[b-ixu0u1cllw] .t-button__spinner {
    animation: t-spin-b-ixu0u1cllw 1s linear infinite;
}

@keyframes t-spin-b-ixu0u1cllw {
    to { transform: rotate(360deg); }
}

/* Progress — Figma "Form / Progress" -------------------------------------- */

[b-ixu0u1cllw] .t-progress {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

[b-ixu0u1cllw] .t-progress__step {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    gap: 10px;
}

[b-ixu0u1cllw] .t-progress__bar {
    height: 3px;
    border-radius: 2px;
    background-color: var(--color-border-default);
}

[b-ixu0u1cllw] .t-progress__step[data-state="done"] .t-progress__bar {
    background-color: var(--color-border-success);
}

[b-ixu0u1cllw] .t-progress__step[data-state="current"] .t-progress__bar {
    background-color: var(--color-border-focus);
}

[b-ixu0u1cllw] .t-progress__label {
    font-size: var(--text-eyebrow);
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-progress__step[data-state="current"] .t-progress__label {
    color: var(--color-text-value);
}

/* Validation summary — Figma "Form / Error summary" ------------------------ */

[b-ixu0u1cllw] .t-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border-error);
    border-radius: var(--radius-md);
    background-color: var(--color-surface-field);
    padding: 20px;
}

[b-ixu0u1cllw] .t-summary__head {
    display: flex;
    align-items: center;
    gap: 10px;
}

[b-ixu0u1cllw] .t-summary__icon {
    color: var(--color-icon-error);
}

[b-ixu0u1cllw] .t-summary__title {
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-error);
}

[b-ixu0u1cllw] .t-summary__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

[b-ixu0u1cllw] .t-summary__link {
    font-size: var(--text-meta);
    line-height: 1.5;
    color: var(--color-text-error);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Honeypot ---------------------------------------------------------------- */

/* Off-screen rather than display:none, since bots increasingly skip inputs that
   are not rendered at all. */
[b-ixu0u1cllw] .t-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Summary card ------------------------------------------------------------ */

[b-ixu0u1cllw] .t-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--color-surface-field);
}

[b-ixu0u1cllw] .t-card__ref {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--color-border-success);
    padding: 24px;
}

[b-ixu0u1cllw] .t-card__ref-label {
    font-size: var(--text-eyebrow);
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-card__ref-value {
    font-size: var(--text-section);
    line-height: 24px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--color-text-success);
}

[b-ixu0u1cllw] .t-card__rows {
    padding: 8px 24px;
}

[b-ixu0u1cllw] .t-card__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-block: 14px;
    border-bottom: 1px solid var(--color-border-default);
}

[b-ixu0u1cllw] .t-card__row[data-last="true"] {
    border-bottom: 0;
}

[b-ixu0u1cllw] .t-card__label {
    font-size: var(--text-eyebrow);
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

[b-ixu0u1cllw] .t-card__value {
    font-size: var(--text-body);
    line-height: 1.5;
    color: var(--color-text-value);
}

[b-ixu0u1cllw] .t-card__value[data-highlight="true"] {
    color: var(--color-text-warning);
}

@media (width >= 48rem) {
    [b-ixu0u1cllw] .t-card__row {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    [b-ixu0u1cllw] .t-card__label {
        width: 180px;
        flex-shrink: 0;
    }
}
/* /Views/Layouts/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-w2kisjxu93],
.components-reconnect-repeated-attempt-visible[b-w2kisjxu93],
.components-reconnect-failed-visible[b-w2kisjxu93],
.components-pause-visible[b-w2kisjxu93],
.components-resume-failed-visible[b-w2kisjxu93],
.components-rejoining-animation[b-w2kisjxu93] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-retrying[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-failed[b-w2kisjxu93],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-w2kisjxu93] {
    display: block;
}


#components-reconnect-modal[b-w2kisjxu93] {
    background-color: #1E3557;
    color: #FFFFFF;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid #6A7889;
    border-radius: 12px;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-w2kisjxu93 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-w2kisjxu93 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-w2kisjxu93 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-w2kisjxu93]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-w2kisjxu93 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-w2kisjxu93 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-w2kisjxu93 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-w2kisjxu93 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-w2kisjxu93] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-w2kisjxu93] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-w2kisjxu93] {
    border: 0;
    background-color: #FFFFFF;
    color: #0C1521;
    padding: 8px 24px;
    border-radius: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

    #components-reconnect-modal button:hover[b-w2kisjxu93] {
        background-color: #E4EBF3;
    }

    #components-reconnect-modal button:active[b-w2kisjxu93] {
        background-color: #C9D6E4;
    }

.components-rejoining-animation[b-w2kisjxu93] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-w2kisjxu93] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-w2kisjxu93 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-w2kisjxu93] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-w2kisjxu93 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
