@media screen and (max-width: 740px) {
  .xxx-calculation-results__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
  }
  .xxx-calculation-results__title {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .xxx-calculation-results__cells {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xxx-calculation-results__cell {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E8ECEF;
  }
  .xxx-calculation-results__cell:last-child {
    border-bottom: none;
  }
  .xxx-calculation-results__cell-title {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .xxx-calculation-results__cell-info {
    margin-top: 0;
      font-size: 14px;
  }
}
