
/* Calculator styles */
@font-face {
    font-family: 'CustomHeading';
    src: url('../fonts/HelveticaNeue.ttc') format('embedded-opentype'), /* Internet Explorer */
    url('../fonts/HelveticaNeue.ttc') format('woff2'), /* Super Modern Browsers */
    url('../fonts/HelveticaNeue.ttc') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/HelveticaNeue.ttc')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/HelveticaNeue.ttc') format('svg'); /* Legacy iOS */
}
@font-face {
    font-family: 'BodyText';
    src: url('../fonts/Avenir.ttc') format('embedded-opentype'), /* Internet Explorer */
    url('../fonts/Avenir.ttc') format('woff2'), /* Super Modern Browsers */
    url('../fonts/Avenir.ttc') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/Avenir.ttc')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Avenir.ttc') format('svg'); /* Legacy iOS */
}

.wpcf7 .wpcf7-text {
    background: #fff;
}

.js-calculator__input {
    padding: 8px;
    height: 52px;    
    width: 80%;
    margin: 0 10%;
    line-height: 2rem;
    font-size: 2rem;
}

.js-calculator__input input {
    width: calc(100% - 30px);
    margin-left: 10px;
    font-size: 2rem;
    line-height: 2rem;
}

#calculator__container {
    width: 80%;
    margin: 0 auto 3rem;
    text-align: center;
    font-family: 'BodyText';
    font-size: 1em;
    color: #000;
    margin-top: 150px;
}

#calculator__container h3 {    
    background-color: #fec113;
    font-family: 'CustomHeading';
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
    padding: 20px;
}

#calculator__container h4 {
    margin: 0;
    font-family: 'CustomHeading';
    color: #000;
    font-size: 1.25em;
}


.calculator__intro {
    letter-spacing: -0.03em;
    line-height: 1.3;
    margin: 0 0 32px 0;
    color: #000;
    font-weight: 700;
    font-size: 23px;
}

.calculator__description {
    color: #000;
    font-weight: 400;
    font-family: 'BodyText';
    font-size: 16px;
    line-height: 26px;
}

.bonus-desc {
    display: flex;
}

.bonus-desc > * {
    width: 50%;
}

.bonus-desc div > * {
    padding: 10px 0;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bonus-desc div:first-child {
    border-right: 1px solid #000;
}

.bonus-desc div > *:nth-child(2n) {
    background-color: #f5f5f5;
}

.bonus_desc__bonuses span {
    display: block;
    font-size: .75em;
    padding: 0px;
}

.js-calculator {
    margin: 0 10%;
    min-width: 500px;
}

.js-calculator__row {
    text-align: left;
    margin: 20px auto;
    max-width: 1000px;
    min-width: 700px;
}

.js-calculator__label {
    color: #000;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.js-calculator__savings {
    font-weight: 600;
    font-size: 1.4em;
    text-align: center;
}

.js-calculator__savings span {
    font-weight: 600;
    font-size: 1.5em;
    color: #00D100;
}

.js-calculator__submit {    
    font-size: 1.25rem;
    font-weight: 600;
    width: 300px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    background: #fec113;
    border-radius: 6px;
    transition: all .3s cubic-bezier(0.67, 0.17, 0.40, 0.83);
}

.js-calculator__submit:hover {
    background: #b88909;
}