.MessageBox {
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    padding: 16px 24px 16px 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    min-width: 300px;
}

.Syncing {
    background: var(--BrandDarkD80);
    border-color: var(--BrandDarkBase);
}

.SyncComplete {
    background: var(--UiSuccessD100);
    border-color: var(--UiSuccessBase);
}

.LiftOff {
    background: var(--AccentPrimaryD80);
    border-color: var(--AccentPrimaryBase);
}

.MessageBoxStatus {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.lds-ring {
    display: inline-block;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 2px;
    border: 2px solid rgba(204, 89, 186, 1.00);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgba(204, 89, 186, 1.00) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

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

.MessageBoxText {
    color: var(--AccentTertiaryD20);
    text-align: left;
    font: var(--body-note-0-base, 300 16px 'Outfit', sans-serif);
    position: relative;
}

.MessageBoxLogo {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    position: relative
}

.Banner {
    width: inherit;
    padding: 16px 48px;
    background: #0E051B;
    align-items: center;
    gap: 64px;
    display: inline-flex;
    justify-content: center;
}

a {
    color: var(--brand-light-base, #cc59ba);
}