.hideStep {
    display: none !important;
}

/* Push Notification Modal Styles */
.push-modal-content {
    text-align: center;
    padding: 30px 20px;
}

.push-icon {
    margin-bottom: 20px;
}

.push-modal-content h3 {
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.push-modal-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.timer-container {
    margin: 30px 0;
}

.timer-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #e60012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: linear-gradient(45deg, #fff 0%, #f8f8f8 100%);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
}

#timer-display {
    font-size: 28px;
    font-weight: bold;
    color: #e60012;
    font-family: 'Montserrat', sans-serif;
}

.timer-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* SMS OTP Modal Styles */
.sms-modal-content {
    text-align: center;
    padding: 30px 20px;
}

.sms-icon {
    margin-bottom: 20px;
}

.sms-modal-content h3 {
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.sms-modal-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.phone-number-display {
    color: #e60012;
    font-weight: bold;
}

.sms-input {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 8px;
    font-family: 'Courier New', monospace;
}

.sms-buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sms-buttons button {
    width: 100%;
}

.bt-secondary {
    background-color: #f8f8f8 !important;
    color: #666 !important;
    border: 2px solid #ddd !important;
}

.bt-secondary:hover {
    background-color: #eee !important;
    border-color: #ccc !important;
}

/* Responsive adjustments for modals */
@media (max-width: 768px) {
    .push-modal-content,
    .sms-modal-content {
        padding: 20px 15px;
    }
    
    .timer-circle {
        width: 100px;
        height: 100px;
    }
    
    #timer-display {
        font-size: 24px;
    }
    
    .push-modal-content h3,
    .sms-modal-content h3 {
        font-size: 20px;
    }
    
    .sms-buttons {
        flex-direction: column;
    }
}

/* Animation for timer circle */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(230, 0, 18, 0.4);
    }
    100% {
        box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
    }
}

.timer-circle.active {
    animation: pulse 2s infinite;
}

/* Loader Modal Styles */
.loader-modal-content {
    text-align: center;
    padding: 40px 20px;
}

.loader-spinner {
    margin-bottom: 25px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e60012;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-modal-content h3 {
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.loader-modal-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

#loader-timer-display {
    font-size: 28px;
    font-weight: bold;
    color: #e60012;
    font-family: 'Montserrat', sans-serif;
}

/* Custom Push Modal Styles */
.custom-push-modal-content {
    text-align: center;
    padding: 30px 20px;
}

.custom-push-modal-content h3 {
    color: #e60012;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.custom-push-modal-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #e60012;
}

.custom-push-buttons {
    margin-top: 25px;
}

.custom-push-buttons button {
    margin: 0 10px;
}

/* Remodal customization for non-closable loader */
.remodal-overlay.remodal-is-closed {
    display: none;
}

.remodal[data-remodal-id="loader"] .remodal-close {
    display: none !important;
}

/* Enhanced loader animation */
.loader-spinner .spinner {
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

/* Responsive adjustments for new modals */
@media (max-width: 768px) {
    .loader-modal-content,
    .custom-push-modal-content {
        padding: 25px 15px;
    }
    
    .loader-modal-content h3,
    .custom-push-modal-content h3 {
        font-size: 20px;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    #loader-timer-display {
        font-size: 24px;
    }
}