﻿h1, h2, h3, h4, h5 {
    font-family: 'Glober';
    color: var(--color-primary-dark);
}

.card-header {
    padding: 32px 0 48px;
    margin-bottom: 0;
    overflow: hidden;
    background-color: var(--color-primary);
    border-bottom: 0;
    position: relative;
    font-family: "Lato",sans-serif !important;
    transition: 0.3s ease;
}

.card-header h4 {
    color: white;
}

.card-title {
    background: var(--color-primary-darkest);
    padding: 21px 0 20px;
    height: 130px;
    margin-bottom: 0;
}

.head_bg {
    width: 105%;
    position: absolute;
    z-index: 999;
    height: 28px;
    background: var(--color-primary-darkest);
    transform: rotate(-4deg);
    bottom: -13px;
}

.card-body h4 {
    font-size: 21px;
    line-height: 34px;
    margin-bottom: 27px;
    position: relative;
}

.card-body .costs {
    font-size: 21px;
    border-radius: 30px;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    font-weight: 700;
    padding: 4px 10px 0;
}

.saletime {
    display: block;
    font-size: 13px;
    color: #ccc;
}

.saletime strong {
    color: #fff;
    font-weight: 700;
}

.sign {
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    vertical-align: middle;
}

.cent {
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 24px;
    color: #ccc;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 4px 0 7px;
}

.currency {
    color: white;
    font-family: "Lato",sans-serif;
    font-size: 43px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
}

.modal-header {
    background-color: var(--color-primary) !important;
    padding: 11px 0;
}

.modal-header h5 {
    color: white;
    width: 100%;
}
 
.price-icon {
    width: 100%;
    position: absolute;
    top: 67px;
    z-index: 999;
}

.price-icon i {
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: white;
    font-size: x-large;
    color: var(--color-primary);
    border-radius: 50px;
}

.form-check input {
    height: auto;
}

/* Mobile Device */

@media (max-width:812px) {

    .pricepage {
        padding: 80px 0 60px;
    }

    .discount-price {
        padding: 0 0 80px;
    }
}

/* Purchase Progress Overlay */
.purchase-progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.progress-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.progress-icon i {
    color: white;
    font-size: 2rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.progress-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.progress-message {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #28a745);
    width: 0%;
    border-radius: 4px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 90%;
    }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress-step::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    display: block;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.progress-step.active::before {
    background: #007bff;
    animation: stepPulse 1s ease-in-out;
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.progress-step span {
    font-size: 0.8rem;
    color: #666;
}

.progress-step.active span {
    color: #007bff;
    font-weight: 600;
}