.hvac-calculator {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    padding: 25px;
    max-width: 400px;
    background-color: #dee2e6;
    --theme_color: #f50;
    --track_color: #ccc;
}

.hvac-calculator .savings-pres .title {
    font-weight: bold;
    font-size: 24px;
}

.hvac-calculator .savings-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}
.hvac-calculator .savings-value div,
.hvac-calculator .savings-value label {
    display: block;
    line-height: 1.25em;
}
.hvac-calculator .savings-value label {
    font-size: 20px;
    font-weight: bold;
}
.hvac-calculator .savings-value .n {
    font-size: 42px;
}
.hvac-calculator .savings-value .c {
    font-size: 14px;
}
.hvac-calculator .info {
    font-size: 13px;
}
.hvac-calculator .range-label-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.hvac-calculator .field-range span {
    position: relative;
    text-align: center;
    width: 15px;
}
.hvac-calculator .field-range span::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 5px;
    background-color: #afafaf;
}
.hvac-calculator .seer-field-data {
    font-size: 12px;
}
.hvac-calculator .seer-field-data > .field-group {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
}
.hvac-calculator .seer-field-data input.seer-field {
    display: block;
    border: 1px solid #e3e3e3;
    padding: 5px;
    text-align: center;
}
.hvac-calculator .seer-field-data input.seer-field:focus {
    outline: none;
}


/* range field */
.hvac-calculator input[type="range"] {
    position: relative;
    -webkit-appearance: none;
    appearance: none; 
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 7px;
    margin: 0;
    background: var(--track_color);
    z-index: 11;
}

/* Thumb: webkit */
.hvac-calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none; 
    height: 15px;
    width: 15px;
    background-color: var(--theme_color);
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
}
/* Thumb: Firefox */
.hvac-calculator input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: var(--theme_color);
    border-radius: 50%;
    border: none;
    transition: .2s ease-in-out;
}
/* Hover, active & focus Thumb: Webkit */
.hvac-calculator input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255,85,0, .1)
}
.hvac-calculator input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255,85,0, .1)
}
.hvac-calculator input[type="range"]:active::-webkit-slider-thumb,
.hvac-calculator input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}
.hvac-calculator input[type="range"]:focus::-webkit-slider-thumb,
.hvac-calculator input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}

.hvac-calculator svg.savings-radial {
    height: auto;
    max-width: 250px;
    transform: rotate(-90deg);
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    text-anchor: middle;
}
.hvac-calculator svg.savings-radial circle {
    fill: rgba(0,0,0,0);
    stroke: #000;
    stroke-dashoffset: 219.91148575129; /* Circumference */
    stroke-width: 8;
}
.hvac-calculator svg.savings-radial circle.incomplete { 
    stroke: #ededed; 
}
.hvac-calculator svg.savings-radial circle.complete { 
    stroke-dasharray: 219.91148575129; /* Circumference */ 
}
.hvac-calculator svg.savings-radial text {
    fill: #000;
}
.hvac-calculator svg.savings-radial text.percentage {
    font-size: 50%;
    fill: #c90707;
}
.hvac-calculator svg.savings-radial text.subtext {
    font-weight: normal;
    font-size: 30%;
    fill: #616161;
}
.hvac-calculator svg.savings-radial circle { 
    stroke: var(--theme_color); 
}


.ossg_animated-progress {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1em;
}
.ossg_animated-progress > .progress {
    position: relative;
    display: block;
    height: 30px;
    width: 100%;
    border-radius: 3px;
    margin: 10px auto;
    background-color: #ededed;
    overflow: hidden;
}
.ossg_animated-progress > .progress span.bar {
    position: absolute;
    height: 100%;
    display: block;
    width: 0;
    color: rgb(255, 251, 251);
    background-color: var(--sg-color-primary);
    line-height: 30px;
    text-align: end;
    padding-right: 5px;
}
.ossg_animated-progress > .progress span.amount {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.ossg_animated-progress > .title {
    position: relative;
    display: block;
    text-align: left;
    font-weight: bold;
}