.creditos .purchase-form-container {
    font-family: Arial, sans-serif;
    margin: 50px auto;
    max-width: 400px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.creditos .purchase-form-container.full {
    max-width: 1280px;
}

#purchaseForm {
    padding-top: 20px;
}

.creditos h2 {
    text-align: center;
    color: #333;
}

.creditos .input-group {
    margin-bottom: 20px;
}

.creditos .input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.creditos #priceSlider {
    width: 100%;
    cursor: pointer;
}

.creditos #priceInput {
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}

.creditos .input-group label[for="priceInput"] {
    font-size: 16px;
    padding-right: 5px;
    display: inline-block;
    font-weight: normal;
}

.creditos #buyButton {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.creditos #buyButton:hover {
    background-color: #0056b3;
}

.creditos .current-value-display {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1em;
    color: #555;
}

.creditos #displayValue {
    font-weight: bold;
    color: #28a745;
}
.creditos .desc {
    margin-top: 30px;
}
#ia-empty-guide .page-content .creditos .current-value-display {
    margin-bottom: 0;
}

.bg-processing {
    background-color: var(--bg-general);
    position: absolute;
    height: 100%;
    width: calc(100% - 20px);
    z-index: 2;
    opacity: .75;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page.creditos {
    position: relative;
}

.bg-processing > img {
    max-width: 100px;
    max-height: 100px;
    animation: vLoading .8s infinite linear;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}
.woocommerce .col2-set #order_review + .col-2 {
    float: right !important;
    margin-top: 30px;
}

.woocommerce-additional-fields {
    display: none;
}

.woocommerce-checkout tr.cart-subtotal {
    display: none;
}

@keyframes vLoading {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}