.pre-calculator-form,
.pre-calculator-form__form .d-none {
    display: none;
}
.pre-calculator-form__form .d-flex {
    display: flex;
}
.pre-calculator-form__form {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 14px;
}
.pre-calculator-form__label {
    font-size: 15px;
    color: #29353a;
    font-family: Dinpro-Medium, Helvetica Neue,Helvetica,Arial,sans-serif;
    font-weight: 700;
}
.pre-calculator-form__form .form-control {
    color: #6a777e;
    font-size: 15px;
    width: 100%;
    height: 34px;
    background-color: #fff;
    display: block;
    line-height: 1.42857;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #6a777e;
    padding: 0 0 0 4px;
    border-radius: 0;
    -webkit-appearance: none;
    outline: none!important;
    box-shadow: none!important;
    transition: color .25s ease-in-out,border-bottom .25s ease-in-out;
}
.pre-calculator-form__form textarea.form-control {
    font-family: Dinpro-Regular, Helvetica Neue,Helvetica,Arial,sans-serif;
    color: #6a777e;
    font-size: 15px;
    border-radius: 0;
    line-height: 35px;
    border: none;
    background-image: linear-gradient(90deg,transparent 0,transparent 0),linear-gradient(270deg,transparent 0,transparent 0),repeating-linear-gradient(transparent,transparent 34px,#6a777e 0,#6a777e 35px,transparent 0);
    background-attachment: local;
    background-color: transparent;
    background-size: 100% 35px;
    resize: none;
    min-height: 110px;
    margin-bottom: 10px;
    padding: 4px 0;
    box-shadow: none;
    height: auto;
}
.pre-calculator-form__submit {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 6px 12px;
    line-height: 1.42857;
    user-select: none;
    border: 1px solid #ff6a00;
    background-color: #ff6a00;
    color: #fff;
    font-family: Dinpro-Regular, Helvetica Neue,Helvetica,Arial,sans-serif;;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 0;
    -webkit-transition: color .25s,background-color .25s,opacity .25s ease-in-out;
    -o-transition: color .25s,background-color .25s,opacity .25s ease-in-out;
    transition: color .25s,background-color .25s,opacity .25s ease-in-out;
}
.pre-calculator-form__submit:active:focus,
.pre-calculator-form__submit:hover {
    border-color: #ff6a00;
    color: #ff6a00;
    background-color: transparent;
}
.pre-calculator-form__form .form-group {
    margin-bottom: 24px;
}
.pre-calculator-form__form .error {
    color: #a80d0d;
    margin-top: 5px;
    display: block;
}
.dropdown-select {
    position: relative;
}
.dropdown-select:before {
    content: "";
    position: absolute;
    display: block;
    top: calc(50% - 8px);
    right: 0;
    width: 16px;
    height: 16px;
    transform: rotate(90deg);
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    background-image: url('./link-arrow-right-fermacell.svg');
}
.checkbox,
.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.checkbox input[type=checkbox],
.radio input[type=radio] {
    display: none;
    position: absolute;
    margin-left: -20px;
}

.radio input[type=radio]+label:after,
.radio input[type=radio]+label:before {
    border-radius: 20px;
}

.checkbox input[type=checkbox]+label,
.radio input[type=radio]+label {
    font-size: 15px;
    padding-left: 24px;
    color: #29353a;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkbox label,
.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.checkbox input[type=checkbox]+label:after,
.checkbox input[type=checkbox]+label:before,
.radio input[type=radio]+label:after,
.radio input[type=radio]+label:before {
    content: "";
    position: absolute;
    background-color: transparent;
    left: 0;
    top: 49%;
    width: 16px;
    height: 16px;
    border: 1px solid #6a777e;
    -webkit-transition: border .1s ease-out;
    -o-transition: border .1s ease-out;
    transition: border .1s ease-out;
    transform: translateY(-50%);
}

.checkbox input[type=checkbox]+label:after,
.radio input[type=radio]+label:after {
    border: 1px solid transparent;
    left: 3px;
    width: 10px;
    height: 10px;
    transition: background-color .1s ease-out;
}

.checkbox input[type=checkbox]:checked+label,
.radio input[type=radio]:checked+label {
    color: #29353a;
}

.radio input[type=radio]+label:after,
.radio input[type=radio]+label:before {
    border-radius: 20px;
}

.checkbox input[type=checkbox]:checked+label:before,
.radio input[type=radio]:checked+label:before {
    border-color: #ff6a00;
}

.checkbox input[type=checkbox]:checked+label:after,
.radio input[type=radio]:checked+label:after {
    background-color: #ff6a00;
}