#block_extra{
display:none;
}

.ls-result,
.ls-result * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.ls-result__section {
  border-bottom: 1px solid #d3d3d3;
  padding: 15px 0;
}

.ls-result__head {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.ls-result__head-dist {
  color: #fff;
  background-color: #f65163;
  padding-left: 3px;
  padding-right: 3px;
}

.ls-result__body {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ls-result__unit {
  width: 50%;
  position: relative;
  padding-right: 10px;
  margin-top: 15px;
}

.ls-result__unit_full {
  width: 100%;
}

.ls-result__unit:before {
  content: '';
  display: none;
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ls-result__unit_green,
.ls-result__unit_red,
.ls-result__unit_blue,
.ls-result__unit_orange {
  padding-left: 20px;
}

.ls-result__unit_green:before {
  display: block;
  background-color: #8ec52e;
}

.ls-result__unit_red:before {
  display: block;
  background-color: #f75163;
}

.ls-result__unit_blue:before {
  display: block;
  background-color: #54a3fa;
}

.ls-result__unit_orange:before {
  display: block;
  background-color: #f8be4e;
}

.ls-result__label {
  color: #606060;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.ls-result__label-dist {
  background-color: #7abb00;
  padding-left: 3px;
  padding-right: 3px;
  color: #fff;
}

.ls-result__value {
  color: #000;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
}

.ls-result__more {
  margin-top: 10px;
}

.ls-result__more-link {
  display: inline-block;
  vertical-align: bottom;
  color: #0166cc;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: underline;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.ls-result__more-link:hover {
  color: #0166cc;
  text-decoration: none;
}

.ls-result__more-link svg {
  display: block;
  width: 22px;
  height: auto;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 0;
}

.ls-result__action {
  margin-top: 15px;
}

.ls-result__btn,
a.ls-result__btn {
  display: inline-block;
  vertical-align: bottom;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  background-color: #56c127;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(86, 193, 39, 0.66);
  padding: 5px 10px;
}

.ls-result__btn:hover,
a.ls-result__btn:hover {
  color: #fff;
  background-color: #5ed12b;
}

.ls-result__numeral {
  white-space: nowrap;
}


@media (max-width: 600px) {

  .ls-result__head {
    font-size: 22px;
  }

  .ls-result__label {
    font-size: 16px;
    line-height: 20px;
  }

  .ls-result__unit:before {
    top: 5px;
  }

  .ls-result__value {
    font-size: 19px;
  }

  .ls-result__more-link {
    font-size: 16px;
  }

}

@media (max-width: 460px) {

  .ls-result__body {
    display: block;
  }

  .ls-result__unit {
    width: auto;
  }

}