@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');



.calculator-container {
    background-color: #11315B;
    border-radius: 8px;
    width: 90%;
    overflow: hidden;
    max-width: 430px;


}

.calculator-header {


    justify-content: space-between;
    align-items: center;
    background-color: #11315B;
}

.calculator-header {
    background-color: #11315B;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    padding: 20px;
}

.calculator-header h1 {
    font-size: 30px;
    font-weight: bold;
    font-kerning: normal;
}

.calculator-content {
    padding: 10px 20px 0 40px;
    text-align: center;
}

.credit-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    font-kerning: normal;
}

.credit-value {

    font-size: 52px;
    font-weight: bold;
    margin: 10px 0;
    background: none;
    border: none;
    color: #38B6FF;
    width: 90%;
}

.credit-details {
    padding: 30px 0px 20px 0px;


}

.credit-value {
    outline: none;
    font-family: "Poppins", sans-serif;
}

.time-value,
.payment-value {
    color: #38B6FF;
    font-size: 52px;
    font-weight: bold;
    margin: 10px 0;
}

.edit-text,
.simulation-text {
    font-size: 8px;
    color: #ffffff;
    margin: 5px 0;
    font-kerning: normal;
}

.time-period {
    font-size: 14px;
    color: #ffffff;
}

.time-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.time-option {
    font-size: 52px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s;
}


.time-option.selected {
    color: #38B6FF;
}

.arrow {
    font-size: 36px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

#interests {
    display: none;
}

#electronicSignature {
    display: none;
}

.details {
    text-align: left;
    margin-top: 10px;
}

.details p {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #ffffff;

}

.continue-button:hover {
    background-color: #1C8CFF;
}

/* Estilos para la barra de progreso */
.calculator-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 120px;
    padding: 18px;
}

.calculator-footer .continue-button {
    font-weight: bold;
    background-color: #38B6FF;
    border: none;
    border-radius: 20px;
    padding: 10px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    align-items: center;
    width: 50%;
}


/* Estilos para el ícono de información */
.info-icon {
    cursor: pointer;
    margin-left: 5px;
    font-size: 16px;
    color: #007BFF;
    /* Color azul para el ícono */
}

/* Estilos para el modal */
.modal {
    display: none;
    /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Fondo oscuro semi-transparente */
}

.modal-content {
    background-color: #11315B;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}
#modalText{
    color: #ffffff;
}
@media (max-width: 600px) {
    .calculator-container {
        background-color: #11315B;
        border-radius: 20px;
        width: 100%;
        align-items: center;
        overflow: hidden;
        max-width: 400px;
    }

}