@media (max-width: 900px) {
    .czm-actions-v3 a,
    .czm-provider-v3,
    .czm-appt-pro,
    .czm-bottom-nav-v3 a,
    .czm-profile-link,
    .czm-notification-btn {
        transition: transform .18s ease, opacity .18s ease, border-color .18s ease, background .18s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .czm-actions-v3 a:active,
    .czm-provider-v3:active,
    .czm-appt-pro:active,
    .czm-bottom-nav-v3 a:active,
    .czm-profile-link:active,
    .czm-notification-btn:active {
        transform: scale(.96);
        opacity: .86;
    }

    .czm-hero-v3,
    .czm-appt-pro,
    .czm-activity-card,
    .czm-provider-banner-v3 {
        animation: czmFadeUp .35s ease both;
    }
}

@keyframes czmFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}