

/* Start:/bitrix/templates/biznes_hat_inner_full/components/web-comp/calc/calcTabs/style.css?16583186067632*/
@charset "UTF-8";

.calc {
  border-radius: 14px;
  border: 1px solid #dadada;
  padding: 70px 70px 45px 70px;
  font-family: "Open Sans",sans-serif!important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.calc__form{
  position: relative;
  overflow: hidden;
}

.calc__form.sended .calc__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.calc__success {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.calc__success-title {
  color: #000000;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.calc__title {
  color: #000000;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}

.calc__sws{
  display: flex;
  justify-content: center;
}

.calc__sw{
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;
}

.calc__sw.active{
  background-color: #1a98d0;
  color: white;
}

.calc__tables {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  margin-bottom: 50px;
}

.calc__table {
  margin: 0;
}

.calc__table:nth-child(2) tbody tr:last-child td {
  padding-bottom: 30px;
}

.calc__contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.calc__submit {
  width: 249px;
  height: 46px;
  border-radius: 52px;
  background-color: #f59725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  color: #ffffff;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.calc__submit:hover {
  background-color: #f0a951;
}

.calc__contact input,
.table__input,
.table__select {
  outline: none;
  font-weight: 400;
  width: 182px;
  min-height: 33px;
  border: 1px solid #d8d8d8;
  text-align: center;
  resize: none;
  font-family: "Open Sans",sans-serif!important;
  font-size: 14px;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc__contact input {
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #dadada;
  border-bottom: none;
  border-right: none;
  border-left: none;
  color: #000000;
}

.table td,
.table th {
  padding: 0;
}

.table td:nth-child(3),
.table th:nth-child(3) {
  display: none;
}

.table td.table__blue,
.table th.table__blue {
  padding-left: 35px;
  background-color: #1a98d0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.table td.table__blue input,
.table th.table__blue input {
  display: none;
}

.table th {
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.table td {
  font-size: 14px;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 20px;
}

.table tfoot th {
  padding-bottom: 35px;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}

.table__input:-moz-read-only {
  border: none;
  text-align: left;
}

.table__input:read-only {
  border: none;
  text-align: left;
}

.table__input--square {
  border: 1px solid #d8d8d8!important;
  text-align: center!important;
}

.table__input--dn {
  display: none;
}

.table__input--price {
  font-weight: 500;
  width: 100%;
}

.table__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/bitrix/templates/biznes_hat_inner_full/components/web-comp/calc/calcTabs/arr.svg") right center no-repeat;
  background-size: 25px 33px;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}

.table__sum:after {
  content: " ₽";
  display: inline;
}

.table__total {
  background: none!important;
  color: #1a98d0!important;
  font-size: 20px!important;
  font-weight: 700!important;
}

[data-tabs=tab] {
  display: none
}

[data-tabs=tab].active {
  display: block
}

.absolute {
  position: relative
}

.absolute [data-tabs=tab] {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  display: block
}

.absolute [data-tabs=tab].active {
  z-index: 1;
  opacity: 1;
  pointer-events: all
}

@media (max-width:991.98px) {
  .calc {
    padding: 40px;
  }

}

@media (max-width:767.98px) {
  .calc {
    padding: 30px 15px;
  }

  .calc__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .calc__sw{
    padding: 10px 15px;
    font-size: 12px;
  }

  .calc__contacts {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 10px;
  }

  .calc__contact input,
  .table__input,
  .table__select {
    width: 100%;
    font-size: 12px;
  }

  .table {
    display: block;
  }

  .table thead {
    display: none;
  }

  .table tbody {
    display: block;
    padding: 20px 0;
  }

  .table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .table td,
  .table th {
    width: 50%;
  }

  .table td:nth-child(2),
  .table th:nth-child(2) {
    padding-right: 0;
  }

  .table td:nth-child(4),
  .table th:nth-child(4) {
    display: none;
  }

  .table td {
    font-size: 12px;
    padding-right: 10px;
  }

  .table tfoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    padding: 15px 0;
  }

  .table tfoot tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .table tfoot th {
    width: 100%;
    border: none;
    padding: 5px 0;
  }

  .table tfoot th:nth-child(2) {
    display: none;
  }

  .table tfoot th:nth-child(4) {
    display: block;
  }

  .calc {
    padding: 30px 15px;
  }

  .calc__title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .table__input,
  .table__select {
    width: 100%;
    font-size: 12px;
  }

  .table {
    display: block;
  }

  .table thead {
    display: none;
  }

  .table tbody {
    display: block;
    padding: 20px 0;
  }

  .table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .table td,
  .table th {
    width: 50%;
  }

  .table td:nth-child(2),
  .table th:nth-child(2) {
    padding-right: 0;
  }

  .table td:nth-child(4),
  .table th:nth-child(4) {
    display: none;
  }

  .table td {
    font-size: 12px;
    padding-right: 10px;
  }

  .table tfoot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    padding: 15px 0;
  }

  .table tfoot tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .table tfoot th {
    width: 100%;
    border: none;
    padding: 5px 0;
  }

  .table tfoot th:nth-child(2) {
    display: none;
  }

  .table tfoot th:nth-child(4) {
    display: block;
  }
}
/* End */
/* /bitrix/templates/biznes_hat_inner_full/components/web-comp/calc/calcTabs/style.css?16583186067632 */
