@media screen and (max-width: 767px) {
  .calculator-wrap .section_title {
    line-height: 50px;
    font-size: 26px;
    margin-bottom: 48px;
  }
  .calculator-wrap .calculator-grid {
    gap: 48px;
    flex-direction: column;
  }
  .calculator-wrap .calculator-grid .form-section {
    gap: 24px;
  }
  .calculator-wrap .result-section {
    flex: auto;
  }
  .calculator-wrap .result-section .result-section-bordered {
    padding: 24px;
  }
  .calculator-wrap .result-section .result-section-bordered .result-header {
    gap: 20px;
  }
  .calculator-wrap .result-section .result-section-bordered .result-header #arr-result {
    font-size: 40px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .calculator-wrap .result-section .result-section-bordered .result-header #arr-result::before {
    line-height: 26px;
    font-size: 20px;
    margin-right: 5px;
  }
  .calculator-wrap .result-section .result-section-bordered .result-header #arr-result #arr-calculation {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .calculator-wrap .result-section .result-section-bordered .result-header .line {
    width: 100%;
    height: 1px;
  }
  .calculator-wrap .result-section .result-section-bordered #chart-container {
    padding: 2px 0;
    gap: 9px;
  }
  .calculator-wrap .result-section .result-section-bordered #chart-container .chart-bar {
    border-radius: 5px 5px 0 0;
  }
}
