.payment_method_kubik img {
    width: 100px;
    height: auto;
    max-height: 30px;
}

.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Fondo más oscuro */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-container {
    position: relative;
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    pointer-events: none; /* Evitar que interfiera con el clic */
}

.popup-logo {
    width: 170px;
    margin-bottom: 20px;
}

.popup-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff; /* Color blanco */
    font-weight: 600; /* Peso de fuente 600 */
}

.close-x {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #fff; /* Color blanco */
    font-weight: 600; /* Peso de fuente 600 */
    pointer-events: all; /* Asegurar que la X capture los clics */
}
