/* CALCULATOR
============================================*/

.calculator {
    text-align: center;
    background-color: #f1ede9;
    color: #42352b;
    padding: 32px 32px;
    margin: 40px 0 20px;
}
.calculator__title {
	font-size: 40px !important;
	font-weight: 500 !important;
	margin: 0 0 16px 0 !important;
	line-height: 1;
	font-weight: 500;
}
.calculator__titleText {
	font-size: 24px;
	font-weight: 500;
}
.calculator__form {
	margin: 30px 0;
}
.calculator__fields {
    display: block;
    margin-bottom: 32px;
}
.calculator__field {
	text-align: left;
    margin-bottom: 20px;
}
.calculator__fieldTitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
.calculator__input {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    background-color: #ffffff;
    border: 1px solid #cdcdcd;
    -moz-appearance: textfield;
    outline: none;
}
.calculator__input:focus {
	border-color: #af764b;
}
.calculator__input::-webkit-outer-spin-button,
.calculator__input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.calculator_input_long {
	width: 100%;
}
.calculator_sum_error,
.calculator__error {
	color: #f00;
	font-size: 24px;
	font-weight: 400;
	display: none;
}
.calculator__button {
    border: none;
    background-color: #8f2127;
    width: 100%;
    line-height: 56px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 30px auto 0 auto;
    cursor: pointer;
}
.calculator__total {
	display: none;
	font-size: 22px;
	font-weight: 400;
    display: block;
}
.calculator__totalText {
	
}
.calculator__totalSum {
	font-size: 32px;
    font-weight: 700;
}
