.pwa-launch-screen {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 22% 16%, rgba(62, 127, 189, .5), transparent 34%),
        radial-gradient(circle at 82% 82%, rgba(232, 99, 10, .22), transparent 28%),
        #26313c;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.pwa-launch-screen.is-visible {
    opacity: 1;
    visibility: visible;
}

.pwa-launch-screen.is-leaving {
    opacity: 0;
    pointer-events: none;
}

.pwa-launch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pwa-launch-icon {
    width: 104px;
    height: 104px;
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
    animation: pwa-launch-pop .55s cubic-bezier(.2, .9, .25, 1) both;
}

.pwa-launch-name {
    margin: 18px 0 0;
    font-family: Nunito, Arial, sans-serif;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: .4px;
}

.pwa-launch-spinner {
    width: 30px;
    height: 30px;
    margin-top: 24px;
    border: 3px solid rgba(255, 255, 255, .28);
    border-top-color: #f58220;
    border-radius: 50%;
    animation: pwa-launch-spin .72s linear infinite;
}

@keyframes pwa-launch-pop {
    from { opacity: 0; transform: scale(.82) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pwa-launch-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .pwa-launch-screen, .pwa-launch-icon, .pwa-launch-spinner { animation: none; transition: none; }
}

button.is-action-loading,
input.is-action-loading {
    cursor: wait !important;
    opacity: .86;
}

.action-button-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: .55em;
    vertical-align: -.15em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: action-button-spin .62s linear infinite;
}

@keyframes action-button-spin {
    to { transform: rotate(360deg); }
}
