﻿.summary-body {
    padding: 10px 0px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-item-label {
    color: #6c757d;
}

.summary-item-value {
    color: #212529;
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid #e9ecef;
    font-weight: 600;
    font-size: 16px;
}

.disclaimer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

    .disclaimer label {
        font-size: 13px;
        color: #6c757d;
        cursor: pointer;
    }

.pay-now-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 20px;
}

    .pay-now-btn:hover {
        background-color: #0056b3;
    }

    .pay-now-btn:after {
        content: ' →';
        margin-left: 8px;
    }




.case-selector {
    margin-bottom: 40px;
}

.flow-container {
    /*max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);*/
}

.step-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

    .step-wrapper.animate-step-1 {
        animation: fadeInUp 0.6s forwards;
        animation-delay: 0s;
    }

    .step-wrapper.animate-step-2 {
        animation: fadeInUp 0.6s forwards;
        animation-delay: 1.2s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.step-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.step-icon.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.step-icon.error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
}

.step-icon.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.step-icon.processing {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.connecting-line {
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

    .connecting-line.animate {
        animation: growLine 0.6s forwards;
        animation-delay: 0.9s;
    }

@keyframes growLine {
    to {
        height: calc(100% - 30px);
    }
}

.step-content {
    margin-left: 20px;
    flex: 1;
}

.step-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    color: #2d3748;
}

.step-description {
    color: #718096;
    font-size: 14px;
}

.warning-banner {
    background: #fee;
    border: 2px solid #f44336;
    border-radius: 10px;
    padding: 7px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.warning-icon {
    font-size: 18px;
    color: #f44336;
    flex-shrink: 0;
}

.warning-text {
    color: #c62828;
    font-weight: 600;
    font-size: 11px;
    text-align: left;
}

.warning-download-header {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.warning-download-subtitle {
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

.warning-download-qr-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2px;
    /*margin: 10px 0;*/
    display: inline-block;
    border: 3px solid #007bff;
    margin-left: 55px;
}

.warning-download-qr-code {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

    .warning-download-qr-code img {
        width: 100%;
        height: 100%;
        padding: 10px;
    }
