.calculator select {
    width:100%;
    box-sizing:border-box;
    padding:10px;
    border:1px solid #AAA;
    border-radius:5px;
}
.calculator input[type=text], .calculator input[type=email] {
    width:100%;
    width:100%;
    box-sizing:border-box;
    padding:10px;
    border:1px solid #AAA;
    border-radius:5px;
}
.calculator input[type=button], .calculator input[type=submit] {
    box-sizing:border-box;
    padding:10px 20px;
    border:none;
    background:var(--primary-color);
    color:#FFF;
    border-radius:5px;    
}
.calculator input[name=price] {
    background:none;
    border:none;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    margin-top:10px;
}
.form-resopnse-text {
    text-align:center;
}
.calculator .easy-row {
    align-items: end;
}
#send-form-fields {
    display:none;
}