/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.no-scroll-popup .swal2-popup {
    overflow: hidden;
}

#swal2-input {
    width: auto !important;
}

.swal2-confirm {
    background-color: #E16934 !important;
}

.container-nota{
    margin: 20px 0 !important;
}
.page-id-1555 #main .calc-subtotal{
    display: flex !important;
} 


.page-id-1135 #main, 
.page-id-1559 #main, 
.page-id-1555 #main, 
.page-id-1550 #main, 
.page-id-1611 #main, 
.page-id-1512 #main, 
.page-id-1509 #main, 
.page-id-1284 #main, 
.page-id-1506 #main,
.page-id-1291 #main, 
.page-id-1500 #main, 
.page-id-1503 #main{
    background-color: #02BCD4 !important;
}

.calc-subtotal {
    display: none !important;
}

.calc-fields-container {
    display: block !important;
}

.calc-item__description.after {
    margin-top: 15px !important;
}

.eael-accordion-content {
    padding: 5px !important;
    margin-bottom: 15px !important;
}

.ccb-calc-heading{
    text-decoration: none !important;
}


/* Acordeon */
.accordion-calculator {
    width: 90%;
    margin: 20px auto !important;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.accordion-item-calculator {
    border-bottom: 1px solid #ddd;
}
.accordion-item-calculaor:last-child {
    border-bottom: none;
}
.accordion-header {
    background: #02BCD4;
    color: white;
    padding: 15px !important;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.accordion-header:hover {
    background: #028BA0;
}
.accordion-icon {
    font-weight: bold;
    margin-left: 10px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #fff;
    font-size: 16px;
    color: #333;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.active .accordion-content {
    max-height: 100px; /* Ajustar a contenido dinámico en JS */
    padding: 15px;
}

/* botones */
.container-calculator {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh; /* Ocupando toda la altura de la ventana */
}

.button-container {
    margin: auto !important;
    display: flex;
    gap: 20px;
}
.btn-calculator {
    background-color: #E16934;
    color: white;
    text-decoration: none;
    padding: 15px 30px !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.btn-calculator:hover {
    background-color: #c75f2e;
}