.tooltip{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #E40003;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  color: white;
  margin-left: 5px;
  position: relative;

}

.tooltip-body::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 2;
  top: -20px;
  left: 30px;
  border-bottom: 20px solid #eee;
  border-right: 40px solid transparent;
}
.tooltip-body::before {
  content: '';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 1;
  top: -22px;
  left: 29px;
  border-bottom: 22px solid #ddd;
  border-right: 42px solid transparent;
}
.active.tooltip-body{
  display: block;
}
.tooltip-body {
  display: none;
  position: absolute;
  top: 52px;
  left: -20px;
  background: #eee;
  border: 1px solid #ddd;
  padding: 30px 25px;

  color: #707173;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  z-index: 2;
}
@media screen and (max-width: 859px) {
  .tooltip-body{
    width: 215px;
  }
 
}
@media screen and (min-width: 860px) {
  .tooltip-body{
    width: 690px;
  }
 
}
.tooltip-body .tooltip-body-cross{
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
  height: 12px;
  width: 12px;
  background: url('/images/cross.svg') no-repeat center;
}
.tooltip-body .line{
  margin: 20px 0;
  height: 2px;
  width: 32px;
  background: #E40003;
}
.tooltip-body .hdr-form{
  color: black;
  margin-bottom: 10px;
  line-height: 17px;
  font-weight: 700;
}
.calc-result-br{
  clear: both;
  height: 10px;
}
.calc-result{
  font-size: 22px;
  line-height: 18px;
  font-weight: 700;
  padding: 73px 0;
  border: 2px solid #EEE;
  border-left: hidden;
  border-right: hidden;
  color: black;
  font-family: 'HelveticaNeueCyr-Bold';
}
.calc-result span{
  padding-left: 22px;
}
@media(max-width: 768px){
  .calc-result {
    padding: 26px 0;
    font-size: 16px;
  }
  .calc-result span{
    display: block;
    padding-left: 0;
    margin-top: 14px;
  }
}