/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 02 2026 | 03:11:16 */
.checkout-accordion {
    width: 100%;
}

.acc-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #FFF;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
}

.acc-header {
    padding: 30px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.acc-item.active .acc-header {
    background: #6a4ea1;
    color: #fff;
}*/

.acc-content {
    display: none;
    padding: 0px 30px 30px 30px;
}

.shipping_address {
    display: none;
}

#billing_wooccm14_field {
	display: inline-grid
}

#billing_wooccm14_Boleta, #billing_wooccm14_Factura {
	margin-right: 5px;
}

/*Sacar el resumen*/
.checkout-summary-global {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .15);
}

.checkout-summary-global table {
    width: 100%;
}

/*Dos columnas*/
.checkout-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* IZQUIERDA */
.checkout-accordion {
    flex: 0 0 60%;
    max-width: 60%;
}

/* DERECHA */
.checkout-summary-global {
    flex: 0 0 40%;
    max-width: 40%;
}

.checkout-summary-global {
    position: sticky;
    top: 100px;
}

/*Estilos Pasos*/
.checkout-steps {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.step-item {
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.step-item .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    color: #555;
}

.circle-acordion {
    background: #E42C34;
    color: #fff;
	width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.data-acordion {
    display: flex;
    gap: 10px;
    align-items: center;
}

.step-item.active .circle {
    background: #6a4ea1;
    color: #fff;
}

.step-item.completed .circle {
    background: #28a745;
    color: #fff;
}

.step-item .label {
    font-size: 13px;
}

/*Pasos check*/
.circle img {
    width: 20px;
}

.edit-accordion {
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease; 
	width:20px;
}

.edit-accordion:hover {
    opacity: 1;
    transform: scale(1.1);
}

#order_review_heading, .woocommerce-account-fields {
	display:none;
}

/*Mostrar resumen debajo de los títulos de lso acordiones*/
.acc-summary {
    font-size: 16px;
    color: #555;
    margin: 10px 30px 30px;
    line-height: 1.4;
	background: #FFF;
	font-weight:500
}

.woocommerce-info {
	background: #fff;
}

/*Boton de ver carrito*/
#order_review {
    position: relative;
}

.view-cart-link {
    display: block;
    text-align: right;
    font-size: 14px;
    margin-bottom: 10px;
    color: #6a4ea1;
    text-decoration: underline;
    cursor: pointer;
}

/*Mensaje para marcar los términos y condiciones*/
.custom-terms-warning {
    background: #fff4e5;
    border: 1px solid #f5a623;
    color: #8a6d3b;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.custom-terms-warning .icon {
    font-size: 18px;
}

.custom-terms-warning a {
    color: #28a745;
    font-weight: bold;
    text-decoration: none;
}

/*Botones de ir al pago*/
.go-to-payment {
    background: #E42C34!important;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
	padding-top: 20px;
    padding-bottom: 20px;
    width: 60%;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    margin-top: 20px;
}

.go-to-payment:hover {
    opacity: 0.9;
	background: #C51F27!important;
}

#place_order {
	 background: #E42C34!important;
}

#place_order:hover {
	 background: #C51F27!important;
}

.cart-content {
	padding-top:30px;
}

.woocommerce-billing-fields h3 {
	display:none;
}
	

@media (max-width: 992px) {
    .checkout-layout {
        flex-direction: column;
    }

    .checkout-accordion,
    .checkout-summary-global {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .checkout-summary-global {
        position: relative;
        top: auto;
    }
}
