.payment-separator {
    margin: 20px 0;
    text-align: center;
    position: relative;
}
.separator-line {
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    margin: 15px 0;
}
.separator-text {
    background: white;
    padding: 0 15px;
    color: #6b7c93;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.email-input-container,.name-input-container {
    background: white;
    border-radius: 8px;
    padding: 15px 0 0 0;
    /*margin-bottom: 15px;*/
}
.custom-email-input,.custom-name-input {
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    transition: border-color 0.3s ease;
}
.custom-email-input:focus,.custom-name-input:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 1px #635bff;
    outline: none;
}
.form-label {
    color: #424770;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}
#confirm-payment.loading {
    position: relative;
    cursor: not-allowed;
    opacity: 0.7;
}
#confirm-payment.loading:after {
    content: "...";
    position: absolute;
    right: -20px;
    animation: loadingDots 1s infinite;
}
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
.email-input-container,.name-input-container {
    position: relative;
    /*margin-bottom: 0.5rem;*/
}
.c8ke-total-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 15px 0 15px 0;
}
.c8ke-total-wrap:before{
    content: "";
    height: 2px;
    width: 100%;
    border-bottom: 1px dashed #ccc;
    order: 2;
}
.c8ke-total-wrap .total-text{
    order: 1;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-right: 8px;
}
.c8ke-total-wrap .total-amount{
    order: 3;
    font-weight: 600;
    line-height: 25px;
    padding-left: 8px;
}

#stripeModal .alert.alert-danger {
    color:#721c24;background-color:#f8d7da;border-color:#f5c6cb;margin:10px 0;padding: 10px;
}
#stripeModal .alert.alert-success {
    color:#155724;background-color:#d4edda;border-color:#c3e6cb;margin:10px 0;padding: 10px
}
.payment-loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}


.c8ke-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(99, 91, 255, 0.2);
    border-radius: 50%;
    border-top-color: #635bff;
    animation: c8ke-spin 1s linear infinite;
}

@keyframes c8ke-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes loadingDots {
    0% { content: "." }
    33% { content: ".." }
    66% { content: "..." }
}
@media (max-width: 767px) {
    #stripeModal .modal-dialog{
        margin-top: 25%;
    }
}
/*@media (max-width: 767px) {*/
/*    #stripeModal .modal-dialog {*/
/*        position: fixed;*/
/*        margin: 0;*/
/*        padding: 0;*/
/*        width: 100%;*/
/*        max-width: none;*/
/*        height: 85%;*/
/*        bottom: -100%;*/
/*        transition: bottom 0.3s ease-out;*/
/*    }*/
/*    #stripeModal.show .modal-dialog {*/
/*        bottom: 0;*/
/*    }*/
/*    #stripeModal .modal-content {*/
/*        height: 100%;*/
/*        border-bottom-left-radius: 0;*/
/*        border-bottom-right-radius: 0;*/
/*    }*/
/*}*/