.calc-tool {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 0 10px 0 #efefef;
    background-color: #ffffff;
}
.calc-wrapper {
    padding-bottom: 48px;
}
.calc-wrapper .calc-header {
    padding: 96px 0;
    background-image: url(/wp-content/uploads/2019/08/calc-header-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
}
.calc-wrapper .calc-header h3 {
    color: #ffffff;
    margin-bottom: 0;
    opacity: 1;
}
.calc-wrapper .calc-body {
    padding: 48px 48px 24px;
}
.calc-wrapper .calc-body .calc-section {
    margin-bottom: 20px;
}
.calc-wrapper .calc-body .calc-section label {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    font-size: 12px;
}
.calc-wrapper .calc-body h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5em;
    color: #323232;
    opacity: 1;
}
.calc-wrapper .calc-body p {
    margin-bottom: 8px;
    text-align: center;
}
.calc-wrapper .calc-body p.desc {
    max-width: 340px;
    margin: 0 auto;
    font-size: 12px;
}
.calc-wrapper .calc-body .btn-by {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: calc(50% - 8px);
    padding: 16px;
    margin: 0 2px 8px;
    border: 2px solid #008672;
    border-radius: 5px;
    background-color: transparent;
    color: #008672;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
}
.calc-wrapper .calc-body .btn-by:hover {
    background-color: rgba(142, 216, 178, 0.2);
}
.calc-wrapper .calc-body .btn-by.selected {
    background-color: #008672;
    color: #ffffff;
}

.calc-wrapper .calc-body .btn-be {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: calc(50% - 8px);
    padding: 16px;
    margin: 0 2px 8px;
    border: 2px solid #008672;
    border-radius: 5px;
    background-color: transparent;
    color: #008672;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
}
.calc-wrapper .calc-body .btn-be:hover {
    background-color: rgba(142, 216, 178, 0.2);
}
.calc-wrapper .calc-body .btn-be.selected {
    background-color: #008672;
    color: #ffffff;
}
.calc-wrapper .calc-body .field-wrapper {
    position: relative;
    width: calc(100% - 4px);
    margin: 0 2px 8px;
    padding: 16px;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
}
.calc-wrapper .calc-body .field-wrapper>input, .calc-wrapper .calc-body .field-wrapper>select {
    width: 100%;
    padding: 0;
    border: 0;
    color: #323232;
    background-color: transparent;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
}
.calc-wrapper .calc-body form.hs-form input.hs-input, .calc-wrapper .calc-body form.hs-form select.hs-input{
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(50, 50, 50, 0.5);
    border-radius: 5px;
    color: #323232;
    background-color: transparent;
    text-align: center;
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
}
.hbspt-form form .hs-form-field {
    margin-bottom: 8px;
}
.hbspt-form form .hs-form-field label {
    font-size: 12px;
}
.hbspt-form form .hs-submit {
    text-align: center;
}
.calc-wrapper .calc-body .field-wrapper.rate::before {
    content: '%';
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
    color: #323232;
    position: absolute;
    top: 18px;
    left: 16px;
}
.calc-wrapper .calc-body .field-wrapper.price::before {
    content: '$';
    font-family: Poppins;
    font-size: 19px;
    font-weight: 500;
    color: #323232;
    position: absolute;
    top: 18px;
    left: 16px;
}
.calc-wrapper .calc-body .field-wrapper.fname::before {
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 800;
    color: #008672;
    position: absolute;
    top: 6px;
    left: 16px;
}
.calc-wrapper .calc-body .field-wrapper.email::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 800;
    color: #008672;
    position: absolute;
    top: 6px;
    left: 16px;
}
.calc-wrapper .calc-body .field-wrapper.lname::before {
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 800;
    color: #008672;
    position: absolute;
    top: 6px;
    left: 16px;
}
.calc-wrapper .calc-body .field-wrapper.phone::before {
    content: '\f3cd';
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 800;
    color: #008672;
    position: absolute;
    top: 6px;
    left: 16px;
}
.calc-wrapper .calc-body .form-info {
    display: none;
}
.calc-wrapper .calc-body .form-info p {
    font-size: 12px;
    color: #ff6666;
}
.calc-wrapper .calc-footer {
    text-align: center;
}
.calc-wrapper .calc-footer .btn-calc, .calc-wrapper .calc-footer .btn-submit,
        .calc-wrapper .calc-body form.hs-form input[type=submit] {
    position: relative;
    display: inline-block;
    width: calc(100% - 128px);
    min-width: 200px;
    padding: 24px 64px;
    border: 0;
    border-radius: 5px;
    background-color: #FF3E0E;
    color: #eee;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 500;
}
.calc-wrapper.step-2 {
    display: none;
}
.calc-wrapper .calc-body .calc-result {
    position: relative;
    width: 100%;
    padding: 16px 0 16px 32px;
    margin: 0 auto;
    border: 0;
    color: #008672;
    background-color: #efefef;
    font-family: Poppins;
    font-size: 19px;
    font-weight: bold;
}
.calc-wrapper .calc-body .calc-result::before {
    content: '$';
    font-size: 19px;
    font-weight: 500;
    color: #008672;
    position: absolute;
    top: 18px;
    left: 16px;
}
.calc-wrapper .calc-footer .btn-back, .calc-wrapper .calc-footer .btn-no {
    position: relative;
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding: 4px 16px;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--light-teal);
    border-radius: 2px;
    background-color: transparent;
    color: #008672;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    line-height: 1em;
    font-weight: bold;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
}
.calc-wrapper .calc-footer .btn-back:hover, .calc-wrapper .calc-footer .btn-no:hover {
    background-color: var(--light-teal);
    border: 2px solid var(--light-teal);
}
.calc-wrapper .calc-footer .btn-back:hover::before, .calc-wrapper .calc-footer .btn-no:hover::before {
    content: '\f30a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    color: #008672;
    position: absolute;
    top: 4px;
    left: 16px;
}
.calc-chart {
    display: none;
    width: 100%;
}
.calc-chart-left {
    position: relative;
    width: 10%;
    height: 380px;
    float: left;
}
.calc-chart-right {
    width: 90%;
    float: left;
}
.calc-chart-bar-wrapper {
    position: relative;
    width: 100%;
    border-left: 1px solid var(--light-teal);
    border-bottom: 1px solid var(--light-teal);
    background-image: url(/wp-content/uploads/2019/08/chart-bg.png);
    background-repeat: repeat-x;
    background-size: contain;
}
.calc-chart-bar-item {
    position: relative;
    width: 33.33%;
    height: 380px;
    float: left;
}
.calc-chart-bar-item>div.print, .calc-chart-bar-item>div.ebook {
    position: absolute;
    width: 40%;
    height: 0%;
    margin: 0;
    border: 1px solid #008672;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    background-color: var(--light-teal);
    opacity: 0.8;
    transition: height 0.5s;
    -o-transition: height 0.5s;
    -moz-transition: height 0.5s;
    -webkit-transition: height 0.5s;
}
.calc-chart-bar-item>div.print.selected, .calc-chart-bar-item>div.ebook.selected {
    background-color: #008672;
    color: #ffffff;
    opacity: 1;
}
.calc-chart-bar-item>div.print {
    margin-right: 4%;
    left: 8%;
}
.calc-chart-bar-item>div.ebook {
    right: 8%;
}
.calc-chart-bar-item>div>span {
    position: absolute;
    width: 100%;
    font-size: 12px;
    bottom: 2px;
    text-align: center;
}
.calc-chart-desc-item {
    width: 33.33%;
    font-size: 12px;
    text-align: center;
    float: left;
}
.calc-chart-num {
    width: 100%;
    height: 25%;
    text-align: right;
    font-size: 12px;
}
.sold-num {
    text-decoration: underline;
}
.calc-table-header {
    text-align: center;
}
.calc-table-body {
    display: table;
    width: 100%;
    border: 1px solid #008672;
}
.calc-table-row {
    display: table-row;
}
.calc-table-row.col-row-slt {
    background-color: rgba(142, 216, 178, 0.4);
}
.calc-table-cell {
    display: table-cell;
    padding: 4px;
    font-size: 12px;
    border: 1px solid #008672;
    text-align: center;
}
.calc-table-cell.col-row-slt {
    background-color: rgba(142, 216, 178, 0.4);
}
.calc-table-cell.selected {
    background-color: #008672 !important;
    color: #ffffff;
}
