.cost-calculator-form legend,
.cost-calculator-form h2 {
    text-align: center;
    font-size: 4.2rem;
    font-weight: normal;
    border-bottom: 0;
}

.cost-calculator-form legend {
    margin-top: 2rem;
}

.calculatorForm ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.calculatorForm .calc-field {
    position: relative;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.calculatorForm span.modifier {
    position: absolute;
    font-size: 2rem;
    bottom: 10px;
}

.calculatorForm span.modifier.before {
    left: 0;
}

.calculatorForm span.modifier.after {
    right: 0;
}

.calculatorForm input[type='number'] {
    width: 100%;
	display: inline-block;
	height: auto;
	box-shadow: none;
	border: 2px solid #666;
	padding: 10px;
	padding: 1rem;
	color: #1e1e1e;
	box-shadow: none;
	transition: none;
    border-radius: 3px;
}
.calculatorForm input[type='number']:focus {
    border-color: #000;
    border-width: 3px;
    outline: 0;
}
.dfp-card {
	background: #fff;
	padding: 2rem;
	box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
	position: relative;
	z-index: 5;
	border-radius: 4px;
}

.bubbles .dfp-card::before {
	content: '';
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 70%;
	background: red;
	height: 120px;
	height: 12rem;
	right: 50%;
    background: transparent url('../images/guide-2-accent.png') no-repeat;
}

.form-actions {
    text-align: center;
}

.form-actions li {
    display: inline-block;
}

.cost-output-row {
    background: #fafafa;
    border-radius: 8px;
}

#costOutput.show {
    display: block;
}

#costOutput li {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#costOutput li:last-child {
    border: 0;
}

#costOutput li::after {
    content: '';
    clear: both;
    display: block;
}

#costOutput li strong {
    float: left;
    line-height: 3.4rem;
}

#costOutput li span {
    float: right;
    font-size: 2.4rem;
}
