.calculator-graph-area {
    padding: 134px 0 230px;
    position: relative;
}

.calculator-graph-area:before {
    position: absolute;
    right: -566px;
    bottom: -737px;
    content: '';
    border: 200px solid #45ebc8;
    border-radius: 100%;
    pointer-events: none;
    width: 1010px;
    height: 1010px;
}

.calculator-graph-area .container {
    max-width: 1372px;
    display: flex;
    flex-wrap: wrap;
}

.calculator-graph-area .description {
    text-align: center;
    font-size: 40px;
    color: #023047;
    line-height: 47px;
    font-weight: 300;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
}

.calculator-graph-area .description h2 {
    font-size: 45px;
    line-height: 48px;
    color: #023047;
    margin: 0 0 50px;
    font-weight: 700;
    letter-spacing: -3px;
    font-family: "Sarala", "Arial", "Helvetica", sans-serif;
}

.calculator-graph-area .description p {
    padding: 0 12%;
    position: relative;
    left: -10px;
    letter-spacing: -1px;
}

.calculator-graph-area .graph-holder {
    width: 786px;
    margin-left: 7%;
}

.graph-input-section {
    background: #f2f5f8;
    border-radius: 8px;
    padding: 24px 20px 46px;
    margin: 4px 0 39px;
}

.graph-input-section .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 -18px;
}

.graph-input-section .wrap label {
    font-size: 20px;
    line-height: 24px;
    color: #444;
    margin: 0 0 12px;
    width: 100%;
    display: block;
}

.graph-input-section .wrap input[type=text] {
    border: 2px solid #9b9b9b;
    border-radius: 3px;
    width: 203px;
    background: #fff;
    height: 48px;
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    padding: 8px 10px;
    outline: none;
    text-align: center;
}
  

#balanceSlider {
    width: 364px;
    outline: 0;
    border: 0;
    border-radius: 5px;
    display: block;
    max-width: 100%;
    margin: 10px auto 0;
    transition: box-shadow 0.2s ease-in-out;
    display: none
}

.graph-holder .head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 18px;
    padding-right: 5px;
}
.graph-holder .profit-label.pl5:after,
.graph-holder .profit-label.pl2:after {
    top: 6px;
}
.graph-holder .profit-label.pl4:after,
.graph-holder .profit-label.pl3:after {
    top: 4px;
}
.graph-holder .head .title {
    color: #444;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 24px;
    width: 100%;
}
.amountRaw {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph-holder .head .right-area {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    width: 100%;
    justify-content: center;
}

.graph-holder .head .na-holder {
    font-size: 22px;
    color: rgba(68, 68, 68, 0.8);
    line-height: 14px;
    font-weight: 400;
    position: relative;
    padding-left: 18px;
}
.graph-holder .head .na-holder2 {
    font-size: 22px;
    color: rgba(68, 68, 68, 0.8);
    line-height: 14px;
    font-weight: 400;
    position: relative;
}


.graph-holder .head .na-holder:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 13px;
    height: 13px;
    background: #c8cfd5;
}
.graph-holder .head .na-holder.ye-holder:before {
    background: #45EBC8;
}

.graph-holder .head .graph-logo {
    width: 98px;
    position: relative;
    margin-left: 18px;
}

.graph-holder .head .graph-logo:before {
    position: absolute;
    left: -18px;
    top: 0;
    content: '';
    width: 13px;
    height: 13px;
    background: #3e3ee3;
}

.graph-holder .head .graph-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.graph-holder .bar {
    max-height: 280px;
}
.graph-holder .chart-section {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.graph-holder .profit-scale {
    margin-right: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 273px; 
    margin-top: 5px;
    width: 42px;
}

.graph-holder .profit-label {
    font-size: 10px;
    color: #444;
    font-weight: 400;
    text-align: right;
    position: relative;
}
.graph-holder .profit-label:after {
    content: '';
    height: 1px;
    background-color: #ccc;
    position: absolute;
    top: 8px;
    right: -9999px;
    left: 110%;
}

.graph-holder .profit-label.add:after {
    height: 2px;
    background-color: #444;
    z-index: 9;
}

.graph-holder .chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 316px;
    margin-top: 40px;
    padding-right: 4px;
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    position: relative;
}

/* .graph-holder .chart:before {
    position: absolute;
    left: 24.2%;
    right: 20px;
    top: -28px;
    bottom: 68px;
    content: '';
    background: #f2f5f8;
    z-index: -1;
}

.graph-holder .chart:after {
    position: absolute;
    left: 50%;
    top: -18px;
    content: '';
    background: url('images/logo.svg') no-repeat;
    width: 302px;
    height: 42px;
    opacity: 0.10;
    pointer-events: none;
} */

.graph-holder .chart-bar {
    text-align: center;
    margin: 0 18px;
    position: relative;
    flex: 1;
}

.graph-holder .bar {
    width: 100%;
    height: 0;
    position: relative;
    background-color: #3e3ee3;
    transition: height 0.4s ease;
}

.graph-holder .bar .amount {
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    content: '';
}

.graph-holder .bar .amountRaw {
    position: absolute;
    right: 0;
    top: -21px;
    content: '';
    font-size: 14px;
    line-height: 17px;
    color: #023047;
    padding-left: 17px;
    font-weight: 400;
}

.graph-holder .bar .amountRaw:before {
    position: absolute;
    left: 0;
    top: 2px;
    content: '';
    width: 13px;
    height: 13px;
    background: #3e3ee3;
}

.graph-holder .bar .amountYearlySavings {
    position: absolute;
    left: 0;
    top: -21px;
    content: '';
    font-size: 14px;
    line-height: 17px;
    color: #023047;
    padding-left: 17px;
    font-weight: 400;
}

.graph-holder .bar sup {
    display: none;
}

.graph-holder .bar .amountYearlySavings:before {
    position: absolute;
    left: 0;
    top: 2px;
    content: '';
    width: 13px;
    height: 13px;
    background: #45ebc8;
}

.graph-holder .national-bar {
    background-color: #c8cfd5;
    height: 2px;
}

.graph-holder .checking-bar {
    background-color: #3e3ee3;
    height: 4px;
}

.graph-holder .market-bar {
    background-color: #3e3ee3;
    height: 13px;
}

.graph-holder .savings-bar {
    background-color: #3e3ee3;
    height: 19.6px;
}
.graph-holder .checking-bar,
.graph-holder .market-bar,
.graph-holder .savings-bar {
    border-bottom: 38px solid #45ebc8;
}
    

.graph-holder .amount {
    font-size: 24px;
    line-height: 26px;
    color: #023047;
    display: block;
    text-align: center;
    width: 100%;
}


.pl1 {
    top: 8px;
}
.graph-holder .chart-bar .label {
    font-size: 16px;
    line-height: 20px;
    color: #444;
    font-weight: 400;
    display: block;
    padding-top: 6px;
    padding-bottom: 4px;
}

.graph-holder .chart-bar {
    font-size: 20px;
    line-height: 24px;
    color: #3e3ee3;
    font-weight: 700;
}

.graph-holder .chart-bar.national-col .label {
    color: #444;
    font-weight: 400;
}

.graph-holder .chart-bar.national-col .bar .amount {
    color: #444;
    font-weight: 400;
}

.graph-holder .chart-bar.national-col .apy {
    color: #444;
    font-weight: 400;
}

.chart-bar .bar.national-bar .amount {
    position: relative;
    top: -30px;
}

@media (max-width: 1359px) {
    .calculator-graph-area .graph-holder {
        margin-left: 2%;
    }

    .calculator-graph-area {
        padding: 70px 0 150px;
    }

    .calculator-graph-area .description {
        padding-right: 20px;
        margin: 0;
        font-size: 30px;
        line-height: 1.3;
    }

    .calculator-graph-area .description p {
        letter-spacing: 0;
        padding: 0 15%;
    }

    .calculator-graph-area .description h2 {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .calculator-graph-area::before {
        bottom: -850px;
    }

    .graph-holder .chart-bar {
        font-size: 20px;
    }

    .graph-holder .chart-bar .label {
        font-size: 14px;
    }
    .graph-holder .amount {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .calculator-graph-area .graph-holder {
        width: 100%;
        margin: 0;
    }

    .calculator-graph-area .description {
        padding: 0 0 40px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .calculator-graph-area .container {
        display: block;
    }

    .calculator-graph-area .description h2 {
        font-size: 35px;
    }
}

@media (max-width: 991px) {

    .calculator-table-wrap .table-row .column2 {
        width: 150px;
    }

    .calculator-table-wrap .table-row .column1 {
        width: auto;
        flex-basis: 0;
        flex-grow: 1;
        min-width: 0;
    }

    .calculator-table-wrap .table-row .column3 {
        width: 35%;
    }

    .calculator-table-wrap .select-holder::before {
        right: 15px;
    }

    .calculator-table-holder {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
  
    .calculator-graph-area .description h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .graph-input-section {
        margin: 0;
    }
  
    .calculator-graph-area .description {
      font-size: 22px;
    }

    .graph-holder .head .title {
        font-size: 20px;
    }

    .graph-holder .bar {
        width: 100%;
    }

    .graph-holder .chart {
        padding-right: 0;
    }

    .graph-holder .chart-bar {
        margin: 0 5px;
    }

    .graph-holder .chart-bar .label {
        font-size: 11px;
        line-height: 14px;
    }

    .graph-holder .chart-bar {
        font-size: 14px;
    }

    .graph-holder .chart {
        height: 302px;
    }
 
    .graph-holder .input-section .wrap input[type="text"] {
        font-size: 20px;
        width: 150px;
    }

    .graph-holder .input-section .wrap label {
        font-size: 16px;
    }
    .calculator-graph-area {
        padding-bottom: 50px;
    }

    .graph-holder .chart-bar .bar .amount {
        font-size: 16px;
        line-height: 20px;
    }

    .graph-holder .bar .amount {
        top: -66px;
    }

    .graph-holder .bar .amountYearlySavings {
        top: -41px;
        right: 0;
        font-size: 12px;
        text-align: left;
    }

    .graph-holder .bar .amountRaw {
        justify-content: flex-start;
        left: 0;
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .graph-holder .chart-bar .bar .amount {
        font-size: 16px;
        line-height: 20px;
    }

    .graph-holder .profit-scale {
        margin-right: 10px;
    }

    .graph-holder .chart-bar {
        font-size: 10px;
        line-height: 12px;
    }

    .chart-bar .bar.national-bar .amount {
        top: -23px;
    }

    .graph-holder .chart-bar .label {
        font-size: 8px;
        line-height: 11px;
    }

    .graph-holder .profit-label {
        font-size: 8px;
    }

    .graph-holder .chart {
        height: 283px;
    }

    .graph-holder .input-section .wrap {
        display: block;
    }

    .graph-holder .input-section .wrap input[type="text"] {
        width: 100%;
    }

    .graph-holder .input-section .wrap label {
        display: block;
        margin: 0 0 12px;
    }

    #balanceSlider {
        width: 100%;
    }

    .graph-holder .head .right-area {
        gap: 8px;
    }

    .graph-holder .head .na-holder,
    .graph-holder .head .na-holder2 {
        font-size: 17px;
    }

    .graph-holder .head .graph-logo {
        width: 80px;
    }

    .graph-holder .head .title {
        font-size: 16px;
    }

    .graph-holder .bar .amount {
        top: -63px;
    }
}

@media (max-width: 374px) {
    .graph-holder .chart-bar .label {
        font-size: 5px;
        line-height: 5px;
    }
    .graph-holder .chart {
        height: 272px;
    }
}



/* Base style for range input */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    outline: none;
    height: 10px;
}

/* Custom track style */
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    background: transparent;
    border-radius: 5px;
    border: 0;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 10px;
    background: transparent;
    border-radius: 5px;
    border: 0;
}

input[type="range"]::-ms-track {
    width: 100%;
    height: 10px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

/* Custom thumb style */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: url('images/slider-thumb.png') no-repeat;
    margin-top: -8px;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
    transition: background-color .3s ease;
}

input[type="range"]::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: url('images/slider-thumb.png') no-repeat;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
}

input[type="range"]::-ms-thumb {
    width: 25px;
    height: 25px;
    background: url('images/slider-thumb.png') no-repeat;
    border-radius: 50%;
    cursor: pointer;
    border: 0;
}

/* Hover effects for thumb */
input[type="range"]:hover::-webkit-slider-thumb {
    background: url('images/slider-thumb.png') no-repeat;
}

input[type="range"]:hover::-moz-range-thumb {
    background: url('images/slider-thumb.png') no-repeat;
}

input[type="range"]:hover::-ms-thumb {
    background: url('images/slider-thumb.png') no-repeat;
}
.amountYearlySavings {
    line-height: 38px;
    color: #000;
}
/*.chart-bar .bar {
    min-height: 62px;
}*/
.chart-bar .bar.national-bar {
    min-height: 5px;
    max-height: 5px;
}
.amountRaw sup {
    top: -0.4em;
}

@media (max-width: 480px) {
    .graph-holder .profit-label:after {
        top: 5px;
    }
}

@media (max-width: 991px) {
    .calculator-table-wrap .table-row .column3 {
      width: 200px;
    }
  
    .calculator-table-wrap .table-row .column2 {
      width: 200px;
    }
  
    .calculator-table-wrap .title-text {
      line-height: 18px;
    }

    .calculator-table-wrap .t-logo {
        margin: 0;
    }
  }
  
  
  @media (max-width: 767px) {
    .calculator-table-wrap .table-row {
      width: 100%;
    }
  
    .calculator-table-wrap {
      margin: 0 -15px;
      padding: 20px 15px 0;
    }
  
    .calculator-table-wrap .title-text {
      font-size: 12px;
      line-height: 15px;
    }
  
    .calculator-table-wrap .t-logo {
      margin-bottom: 12px;
    }
  
    .calculator-table-wrap .select-holder {
      margin-bottom: 12px;
    }
  
    .calculator-table-wrap .select-holder select {
      font-size: 11px;
      text-align: center;
    }
  
    .calculator-table-wrap .t-logo {
      margin: 0 0 10px;
    }
  
    .calculator-table-wrap .table-row.head-row .t-column {
      padding: 10px 5px;
    }
  
    .calculator-table-wrap .table-row .column3 {
      width: 150px;
    }
  
    .calculator-table-wrap .table-row .column2 {
      width: 150px;
    }
  
    .calculator-table-wrap .amount {
      font-size: 16px;
    }
  
    .calculator-table-wrap .select-holder {
      margin-bottom: 10px;
    }
  
    .calculator-table-wrap .table-row .column1 {
      padding: 10px 10px 10px 0;
    }
  
    .calculator-table-wrap .select-holder.slh select {
      padding: 7px 0;
    }
  
    .calculator-table-wrap .comment-box {
      border-width: 2px;
    }
  
    .calculator-table-wrap .comment-box {
      padding: 25px 15px;
    }
  }
  
  @media (max-width: 479px) {
    .calculator-table-wrap .select-holder select {
      font-size: 11px;
      text-align: center;
    }
  
    .calculator-table-wrap .table-row .column3 {
      width: 120px;
    }
  
    .calculator-table-wrap .table-row .column2 {
      width: 100px;
    }
  }

  @media (max-width: 767px) {
    .graph-holder .bar {
        max-height: 275px;
    }
  }

  .txt12 {
    margin: 30px auto -15px;
    display: flex;
    justify-content: space-between;
    max-width: 94%;
  }
 .txt12 span {
    display: block;
    font-size: 35px;
    font-style: italic;
    font-weight: 400;
    color: #fff;
 }
 @media (max-width: 767px) {
    .txt12 span {
        font-size: 22px;
    }
 }
 @media (max-width: 480px) {
    .txt12 span {
        font-size: 17px;
    }
 }


 .calculator-table-section .mob-head {
    display: none;
  }
  
@media (max-width: 991px) {
    .calculator-table-section {
        position: relative;
        margin: 0 -15px;
    }
  
    .calculator-table-section .mob-head {
      display: block;
      text-align: center;
      font-size: 20px;
      line-height: 1.2;
      color: #444;
      margin: 0 0 25px;
      position: relative;
      padding: 0 15px;
    }
  
    .calculator-table-section .mob-head p {
      margin: 0;
    }
  
    .calculator-table-section .mob-head .na-text {
      margin: 0 0 45px;
      transition: all 0.4s ease;
    }
  
    .calculator-table-section .mob-head .cys-text {
      position: absolute;
      left: 15px;
      top: 0;
      right: 15px;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .calculator-table-section.cys-active .mob-head .cys-text {
        opacity: 1;
    }

    .calculator-table-section.cys-active .mob-head .na-text {
        opacity: 0;
    }
  
    .mob-head-openers {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 0 0 50px;
      justify-content: center;
    }
  
    .mob-head-openers a {
      display: inline-block;
      vertical-align: top;
      border: 1px solid #E1E7EE;
      border-radius: 9999px;
      font-size: 14px;
      line-height: 20px;
      height: 50px;
      padding: 15px 39px;
    }
  
    .mob-head-openers a:hover {
      background: #3e3ee3;
      border-color: #3e3ee3;
      color: #fff;
    }
  
    .calculator-table-section.na-active .mob-head-openers .na-opener {
      background: #3e3ee3;
      border-color: #3e3ee3;
      color: #fff;
    }
  
    .calculator-table-section.cys-active .mob-head-openers .cys-opener {
      background: #3e3ee3;
      border-color: #3e3ee3;
      color: #fff;
    }
  
    .calculator-table-wrap .select-holder,
    .calculator-table-wrap .heading {
      display: none;
    }
  
    .calculator-table-wrap .table-row .column3 {
      width: 300px;
    }

    .calculator-table-wrap .table-row .column4 {
        width: 300px;
    }

    .calculator-table-wrap .table-row.table-row-footer .t-column.column1,
    .calculator-table-wrap .table-row.table-row-footer .t-column.column2 {
        display: none;
    }

    .calculator-table-wrap .table-row.table-row-footer .t-column.column3,
    .calculator-table-wrap .table-row.table-row-footer .t-column.column4 {
        width: 100%;
        display: none;
    }

    .calculator-table-section.na-active .calculator-table-wrap .table-row.table-row-footer .t-column.column3 {
        display: block;
        text-align: center;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row.table-row-footer .t-column.column4 {
        display: block;
        padding: 15px;
    }

    .calculator-table-section.na-active .calculator-table-wrap .table-row .column4 {
        display: none;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column4 {
        display: flex;
        align-items: flex-end;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column3 {
        display: none;
    }
    .calculator-table-wrap .table-row.table-row-footer .t-column {
        padding-bottom: 25px;
    }

    .calculator-table-wrap .table-row.table-row-footer .t-column.column3 {
        border-radius: 22px 0 22px 22px;
    }

    .calculator-table-wrap {
        border-radius: 22px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .calculator-cta {
        border-radius: 22px;
    }

    .calculator-table-wrap .res-box {
        text-align: center;
    }

    .calculator-table-wrap .res-box .number {
        justify-content: center;
    }

    .calculator-table-wrap .text-field {
        padding: 0;
    }

    .calculator-table-wrap .text-wrap .total {
        width: 60px;
    }

    .calculator-table-wrap .table-row .t-column.column3 .text-wrap .total {
        width: 100px;
    }

    .column4 .text-field::before {
        left: 8px;
        font-size: 13px;
        top: 5px;
    }

    .calculator-table-wrap .t-column.column4 .text-wrap {
        align-items: flex-end !important;
    }
}

@media (max-width: 767px) {
    .calculator-table-section {
        margin: 0;
    }

    .calculator-table-section .mob-head {
        font-size: 16px;
    }

    .calculator-table-holder .head {
        margin-bottom: 25px;
    }

    .mob-head-openers {
        gap: 10px;
    }

    .calculator-table-wrap .table-row .column3 {
        width: 220px;
    }

    .calculator-table-wrap .table-row .column4 {
        width: 220px;
    }

    .calculator-table-wrap .table-row.head-row .t-column {
        padding: 13px 15px;
    }

    .calculator-table-wrap .table-row.head-row .t-column.column3 {
        padding-top: 30px !important;
    }

    .calculator-table-wrap .table-row.head-row .t-column.column3 .text-wrap {
        align-items: center !important;
    }

    .calculator-table-wrap .text-field {
        padding: 0;
    }

    .calculator-table-wrap .table-row .t-column.column3 .text-wrap .total {
        width: 76px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .t-column.column3 .text-wrap .total {
        width: 60px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column4 .text-wrap .title {
        font-size: 12px;
        line-height: 15px;
        flex-grow: inherit;
        flex-basis: inherit;
        width: 66px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column4 .text-wrap .total {
        font-size: 12px;
        line-height: 15px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .t-column.column4 .text-wrap {
        justify-content: space-between;
    }

    #gform_submit_button_5, #gform_submit_button_6, #gform_submit_button_7 {
        margin-top: 0 !important;
    }
}

@media (max-width: 573px) {
    .calculator-table-wrap .table-row .column3 {
        width: 170px;
    }
    .calculator-table-holder h1 {
        line-height: 1;
        font-size: 4rem;
    }
    .calculator-table-wrap .table-row .column4 {
        width: 170px;
    }
    .text-wrap .total {
        position: relative;
        top: -5px;
    }
    .head-row .text-wrap .total {
        top: 0;
    }
    .calculator-table-wrap .table-row .t-column.column3 {
        padding: 7px 10px !important;
        font-size: 12px;
    }

    .calculator-table-wrap .table-row.table-row-footer .t-column.column3 {
        padding: 15px !important;
    }

    .calculator-table-wrap .text-wrap .total {
        font-size: 12px;
        line-height: 15px;
    }

    .calculator-table-wrap .table-row.head-row .text-wrap .total {
        width: 50px;
    }

    .calculator-table-wrap .text-wrap .total {
        width: 60px;
    }

    .calculator-table-wrap .table-row.head-row .t-column.column3 {
        padding-top: 44px !important;
    }

    .calculator-table-wrap .table-row .t-column {
        padding: 5px 10px;
    }
    
    .calculator-table-wrap .text-field input[type="text"] {
        width: 100%;
    }

    .calculator-table-wrap .text-field input[type="text"] {
        font-size: 11px;
    }
     .column4 .text-field::before {
        top: 4px;
     }
    .calculator-table-wrap .table-row .column4 .text-wrap .total {
        font-size: 12px;
        line-height: 15px;
        text-align: right;
    }

    .mob-head-openers a {
        padding: 15px 25px;
    }
}

@media (max-width: 479px) {
    .mob-head-openers a {
        padding: 15px;
        font-size: 12px;
    }

    .calculator-table-wrap .table-row .column3 {
        width: 120px;
    }

    .calculator-table-wrap .table-row .column4 {
        width: 120px;
    }

    .calculator-table-wrap .text-wrap .total {
        font-size: 10px;
        line-height: 12px;
    }

    .calculator-table-wrap .text-wrap .title {
        font-size: 10px;
        line-height: 12px;
    }

    .calculator-table-wrap .title-text {
        font-size: 10px;
        line-height: 13px;
    }

    .calculator-table-wrap .table-row .t-column.column3 {
        padding: 7px 5px 7px 10px !important;
    }

    .mob-head-openers {
        margin: 0 -10px 20px;
    }

    .calculator-table-wrap .table-row.head-row .t-column {
        padding: 13px 10px;
    }

    .calculator-table-wrap .start-box {
        font-size: 16px;
        padding: 20px 50px;
    }

    .calculator-table-wrap .start-box p {
        margin: 0;
    }

    .calculator-table-wrap .start-box br {
        display: none;
    }

    .calculator-table-wrap .text-wrap .total {
        width: 40px;
    }
    .calculator-table-wrap .table-row .column4 .text-wrap .total {
        font-size: 10px;
    }
    .calculator-table-wrap .table-row.head-row .text-wrap .total {
        width: 50px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .t-column.column3 .text-wrap .total {
        width: 50px;
        font-size: 10px;
        line-height: 13px;
    }

    .calculator-table-wrap .table-row .t-column.column3 .text-wrap .total {
        width: 68px;
    }

    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column4 .text-wrap .title {
        font-size: 10px;
        line-height: 13px;
        width: 50px;
    }
    .calculator-table-section.cys-active .calculator-table-wrap .table-row .column4 .text-wrap .total {
        font-size: 11px;
        line-height: 13px;
    }

    .calculator-table-wrap .table-row.head-row .t-column.column4 {
        padding-bottom: 16px;
    }

    .calculator-table-section.na-active .calculator-table-wrap .table-row.head-row .t-column.column3 .text-wrap {
        align-items: center !important;
    }
}