/* Custom styles for the downsell page */

/* Animations */
.opacity-0 {
    opacity: 0;
}

.translate-y-4 {
    transform: translateY(1rem);
}

.scale-95 {
    transform: scale(0.95);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-700 {
    transition-duration: 700ms;
}

.duration-1000 {
    transition-duration: 1000ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* Show classes */
.show {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Notification slide in */
.notification-show {
    transform: translateX(0) !important;
}

/* Hotmart Widget Customization (Optional) */
#hotmart-sales-funnel {
    min-height: 200px;
}
