.mas-pwa-inline-mount {
    width: 100%;
    margin: .75rem 0 1rem;
}

.mas-pwa-action-card {
    position: relative;
    z-index: 5;
    display: none;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.mas-pwa-action-card.mas-pwa-visible {
    display: flex;
}

.mas-pwa-action-main {
    appearance: none;
    width: 100%;
    max-width: 420px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 48%, #60a5fa 100%);
    box-shadow: 0 16px 34px rgba(37, 99, 235, .28);
    padding: 13px 18px;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
}

.mas-pwa-action-main:disabled {
    cursor: wait;
    opacity: .96;
}

.mas-pwa-action-card.mas-pwa-updating .mas-pwa-action-icon {
    animation: mas-pwa-spin 1s linear infinite;
}

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

.mas-pwa-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #1d4ed8;
    background: rgba(255, 255, 255, .96);
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
}

.mas-pwa-action-copy {
    min-width: 0;
    flex: 0 1 auto;
    line-height: 1.22;
}

.mas-pwa-action-copy strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
}

.mas-pwa-action-copy span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
}

.mas-pwa-badge {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 9px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

@media (max-width: 420px) {
    .mas-pwa-action-main {
        max-width: 100%;
        min-height: 56px;
        gap: 10px;
        padding: 12px 14px;
    }

    .mas-pwa-action-copy strong {
        font-size: 14px;
    }

    .mas-pwa-action-copy span {
        font-size: 11px;
    }
}
