.calculadora-hipoteca .form-group{
    margin-bottom: 15px;
}
.calculadora-hipoteca label{
    display: block;
    color:#f6efeb;
    font-style: italic;
    font-weight: normal;
    font-size: 20px;
    margin-bottom: 16px;
}
.calculadora-hipoteca input[type="number"], .calculadora-hipoteca input[type="text"], .calculadora-hipoteca select, .calculadora-hipoteca .input{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #c1bcb5;
    /* border-radius: 25px; */
    box-shadow: none;
    padding: 10px 10px 10px 0;
    height: 48px;
    margin-bottom: 25px;
    width: 100%;
    color: #f4ede5;
    font-size: 20px;
}

.calculadora-hipoteca select:focus{
    color: #f4ede5;
}

.calculadora-hipoteca .input-wrapper{
    position: relative;
    display: flex;
}

.calculadora-hipoteca .input-wrapper:before{
    display: block;
    aspect-ratio: 1;
    width: 40px;
    height: 45px;
    left: 6px;
    top: 6px;
    line-height: 45px;
    background-color: #cb714a;
    font-size: 20px;
    color: #f4ede5;
    text-align: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-right: 15px;
}

.calculadora-hipoteca .input-wrapper.currency:before{
    content: "$";
}
.calculadora-hipoteca .input-wrapper.percent:before{
    content: "%";
}

.calculadora-hipoteca .superficie-lote, .calculadora-hipoteca .porcentaje-enganche{
    font-weight: bold;
}

.calculadora-hipoteca .error-message{
    color: #bb0000;
    font-size: 14px;
}
.calculadora-hipoteca .buttons{
    margin-top: 40px;
}

.calculadora-hipoteca .btn-calcular{
    width: 100%;
    height: 48px;
    color:#f4ede5;
    text-align: center;
    background-color: #cb714a;
    font-size: 24px;
    border: none;
    cursor: pointer;
}

.calculadora-hipoteca input[type="range"]{
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    background: #a95e3d;
    border-radius: 10px;
    outline: none;
    margin-bottom: 1em;
}
.calculadora-hipoteca input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background: #cb714a;
    border-radius: 50%;
    cursor: pointer;
}

.calculadora-hipoteca-resultado .resultado-item{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cb714a;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.calculadora-hipoteca-resultado .resultado-item .resultado-value {
    width: 10%;
    text-align: right;
}
.calculadora-hipoteca-resultado .resultado-item .resultado-value::before{
    content: "$";
    margin-right: 5px;
}

body:not(.et-fb) .et_pb_section.calculadora-resultados-section{
    display: none;
}