body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 20px;
}

/* .question {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 10px;
} */

button {
    margin: 10px;
}




#overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #9027E2 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.payment-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.payment-method label {
    display: block;
    margin-bottom: 10px;
}

.payment-method input {
    margin-right: 5px;
}

#creditCardFields {
    margin-top: 10px;
}

table {
    border-collapse: collapse;
    width: 50%;
    margin: auto;
    text-align: center;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

/* .question {
    display: block;
} */
.error {
    color: red;
}

/* Estilos base */
.acordeon {
    list-style: none;
    padding: 0;
    width: 100%;
}

.boton-acordeon {
    width: 100%;
    padding: 10px;
    text-align: left;
    background-color: #475569;
    /* border: 1px solid #fff; */
    cursor: pointer;
    color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: 10px;

}

.contenido-acordeon {
    display: none;
    padding: 10px;
    background-color: #64748b;
    border: 1px solid #ccc;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;

}


.clientName,
.bank,
.originBank {
    font-weight: bold;
}