.id-873 h1 {
  display: none;
}

.av-calc {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.av-calc__title {
  font-size: 32px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.av-calc__subtitle {
  font-size: 16px;
  margin: 0 auto 24px !important;
  max-width: 450px;
}

.av-calc__section {
  margin: 40px 0 32px;
}

.av-calc__section-title {
  background: #0a0a0a;
  color: #fff;
  display: inline-block;
  padding: 12px 18px;
  font-weight: 700;
  width: -webkit-fill-available;

}

.av-calc__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.av-calc__option {
  background: #F8F8F8;
  border: 1px solid #B7B7B7;
  padding: 24px;
  cursor: pointer;
  transition: border-color .2s, background-color .2s, transform .05s;
  width: 100%;
  display: block;
  width: 200px;
  height: 200px;
  align-content: center;
  font-size: 20px;
  font-weight: 800;
}

.av-calc__option:active {
  transform: scale(.99);
}

.av-calc__option:hover {
  border-color: #d0d0d0;
}

.av-calc__option.is-active {
  border-color: #000;
  background-color: #E5E5E5;
}


.av-calc__option-title {
  font-weight: 800;
  font-size: 20px;
}

.av-calc__option-desc {
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.2;
  font-weight: 400;
}

.av-calc__select-wrap {
  margin-top: 32px;
}

.av-calc__select {
  width: 100%;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid #B7B7B7;
  font-size: 14px;
  font-weight: 800;
  background-color: #F8F8F8;
}

.av-calc__select--error {
  border-color: #E4042E;
  box-shadow: 0 0 0 3px rgba(228,4,46,0.15);
}

.av-calc__actions {
  margin: 20px 0;

}

.av-calc__submit {
  background: #E4042E;
  color: #fff;
  font-weight: 600;
  border: 0;
  padding: 7px 22px;
  cursor: pointer;
  width: 100%;
  max-width: 560px;
  font-size: 24px;
  margin-top: 30px;
}

.av-calc__submit:hover {
  filter: brightness(.95);
}

.av-calc__result {
  margin: 8px auto 24px;
  max-width: 560px;
  text-align: left;
}

.av-calc__result--ok {
  color: black;
  padding: 16px;
  text-align: center;
  line-height: 1.4;
}

.av-calc__result-line h3 {
  font-size: 30px;
  margin: 0 0 15px;
}

.av-calc__result--error {
  background: #fff6f6;
  border: 1px solid #f1c1c1;
  color: #7a0910;
  padding: 16px;
  text-align: center;
}
.av-calc__select--error:focus-visible {
  outline: #E4042E;
  border: 1px solid #E4042E;
}
.av-calc__result-line {
  margin: 6px 0;
}


@media (max-width: 760px) {
  .av-calc__option {
    width: 100%;
    height: auto;
    min-height: 125px;
}
}