.calculator-form{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}
.calculator-input-wrapper{
    display: grid;
    gap: 5px;
}
.calculator-input-name{
    font-weight: 500;
    font-size: 17px;
}
.calculator-input{
    font-size: 14px;
    font-weight: 400;
    outline: 0;
    border: 0;
    color: #fff;
    border-radius: 8px;
    padding: 1em .7em;
    cursor: pointer;
    font-family: 'Klimat', sans-serif;
    background: linear-gradient(to bottom, #515151, #7b7b7b);
    min-width: 95px;
    option{
        color: black;
    }
}
.calculator_plank-props{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.calculator_quantity-props{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    .calculator-input{
        max-width: 100px;
    }
}
.calculator_result{
    display: grid;
    gap: 10px;
}
.calculator_result-title{
    font-weight: 500;
    font-size: 24px;
    line-height: 1em;
}
.calculator_result-value{
    font-weight: 600;
    font-size: 30px;
    color: #3a791b;
    line-height: 1em;
}

@media(max-width: 800px){
    .calculator_result-title{
        font-size: 20px;
    }
    .calculator_result-value{
        font-size: 24px;
    }
}