:root {
  --border-color: #dddddd;
  --border-radius: 5px;
  --transition: .3s linear;
}

input:focus {
  outline: none;
}

body {
  font-family: 'Ubuntu', sans-serif;
}

.calculator_frame {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 38px;
  width: 92%;
  margin: auto;
  border-radius: 7px;
  background: #f0f0f0;
}

.calculator_frame__form {
  margin-right: 6%;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 55%;
}

.calculator_frame__form > h2 {
  text-align: center;
  margin-bottom: 80px;
}

.calculator_frame__form > h2 span {
  color: #f87303;
  margin: 0 5px;
}

.calculator_frame__parentImg {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  bottom: 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.calculator_frame__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding: 10px 30px;
  margin-top: 26px;
  background: #f87303;
  color: #fff;
  border: none;
  font-size: 20px;
}

.calculator_frame__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.calculator_frame__label label {
  color: #000;
  font-size: 15px;
  width: 50%;
}

.calculator_frame__label.active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.calculator_frame__label.active input {
  -webkit-box-shadow: 0px 1px 3px 1px #f87303;
          box-shadow: 0px 1px 3px 1px #f87303;
}

.calculator_frame__label input {
  padding: 10px;
  border: 1px solid var(--border-color);
  color: #000;
  font-family: 'Ubuntu';
  font-size: 14px;
  width: 190px;
  height: 20px;
}

.calculator_frame__label[data-rass="ploshad"] label {
  font-size: 15px;
  color: #000;
  width: 50%;
}

.calculator_frame__select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.calculator_frame__select-box.active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.calculator_frame__select-box.active div {
  -webkit-box-shadow: 0px 1px 3px 1px #f87303;
          box-shadow: 0px 1px 3px 1px #f87303;
}

.calculator_frame__select-box span {
  font-size: 15px;
  width: 60%;
}

.calculator_frame__select {
  position: relative;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  color: #989898;
  font-size: 14px;
  width: 200px;
  height: 40px;
  background: #fff;
  cursor: pointer;
}

.calculator_frame__select[data-rass="tolshina_steny"] li:last-child,
.calculator_frame__select[data-rass="tolshina_steny_2"] li:last-child {
  grid-column: auto;
}

.calculator_frame__select[data-rass="kirpich"] ul {
  width: 322px;
}

.calculator_frame__select p {
  position: absolute;
  color: #000;
  font-size: 14px;
}

.calculator_frame__select ul {
  opacity: 0;
  position: absolute;
  top: 46px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 4px 1px #ccc;
          box-shadow: 0px 3px 4px 1px #ccc;
  width: 100%;
  left: 0;
  padding: 19px;
  list-style: none;
  z-index: -1;
  text-align: center;
}

.calculator_frame__select ul:after {
  content: '';
  position: absolute;
  top: -29px;
  left: 10%;
  border: 11px solid transparent;
  border-bottom: 16px solid #ffffff;
  z-index: 1;
  -webkit-filter: drop-shadow(0px 0px 1px #ccc);
          filter: drop-shadow(0px 0px 1px #ccc);
}

.calculator_frame__select ul:before {
  content: " ";
  top: -2px;
  position: absolute;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 8;
  height: 15px;
}

.calculator_frame__select ul.active {
  opacity: 1;
  z-index: 9;
}

.calculator_frame__select ul.active + span + img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 1;
}

.calculator_frame__select ul li {
  background: #e8e8e8;
  color: #111;
  font-size: 14px;
  padding: 10px;
  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-bottom: 10px;
}

.calculator_frame__select ul li.active {
  background: #8c8c8c;
  color: #fff;
  font-weight: bold;
}

.calculator_frame__select ul li:last-child {
  -ms-grid-column: 3;
  -ms-grid-column-span: -2;
  grid-column: 3/1;
}

.calculator_frame__select img {
  position: absolute;
  right: 12px;
  width: 11px;
  opacity: .4;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.calculator_frame__select:hover img {
  opacity: 1;
}

.calculator_frame__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 18px;
  width: 100%;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.calculator_frame__checkbox.active {
  -webkit-box-shadow: 0px 1px 3px 1px #f87303;
          box-shadow: 0px 1px 3px 1px #f87303;
}

.calculator_frame__checkbox > p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #888;
  margin: 0 auto 0 0;
  font-size: 15px;
}

.calculator_frame__checkbox-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 25px;
}

.calculator_frame__checkbox-input input {
  opacity: 0;
  position: absolute;
  left: 0;
}

.calculator_frame__checkbox-input input[value="yes"]:checked + label {
  background: url(../img/check.png);
}

.calculator_frame__checkbox-input input[value="no"]:checked + label {
  background: url(../img/remove.png);
}

.calculator_frame__checkbox-input input:checked + label {
  background-size: 100% !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.calculator_frame__checkbox-input label {
  width: 20px;
  height: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 2px 0px #ccc;
          box-shadow: 0px 0px 2px 0px #ccc;
  border-radius: 2px;
}

.calculator_frame__checkbox-input p {
  margin: 10px 0 10px 10px;
}

@media (max-width: 1300px) {
  .calculator_frame__parentImg {
    width: 39%;
  }
}

@media (max-width: 1200px) {
  .calculator_frame__parentImg {
    width: 25%;
  }
}

@media (max-width: 992px) {
  .calculator_frame__form {
    margin-right: 0;
    width: 100%;
  }
  .calculator_frame__parentImg {
    display: none;
  }
}

@media (max-width: 650px) {
  .calculator_frame {
    width: auto;
    padding: 20px;
  }
  .calculator_frame__select-box span,
  .calculator_frame__label label,
  .calculator_frame__checkbox > p {
    font-size: 11px !important;
  }
  .calculator_frame__label input {
    width: 101px;
  }
  .calculator_frame__select {
    width: 111px;
  }
  .calculator_frame__select ul,
  .calculator_frame__select[data-rass="kirpich"] ul {
    width: 200px;
    left: -130%;
  }
  .calculator_frame__select ul li {
    font-size: 12px;
  }
  .calculator_frame__select ul:after {
    left: 73%;
  }
  .calculator_frame__select p {
    font-size: 10px;
  }
  .calculator_frame__select-box span {
    width: 50%;
  }
  .calculator_frame__checkbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 27px;
    padding-left: 0;
  }
  .calculator_frame__checkbox > p {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
    text-align: center;
  }
  .calculator_frame__checkbox-input p {
    font-size: 12px;
  }
  .calculator_frame__checkbox-input:nth-of-type(1) {
    width: 50%;
    text-align: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 0;
  }
  .calculator_frame__checkbox-input:last-child {
    width: 44%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 0;
    margin-left: 13px;
  }
}

@media (max-width: 465px) {
  .calculator_frame__form > h2,
  .calculator_frame .fly_result h2 {
    font-size: 17px;
  }
  .calculator_frame .fly_result__line-text > p {
    font-size: 15px;
  }
  .calculator_frame .calculator_frame__form > h2 {
    margin-bottom: 30px;
  }
}

.next_block_checkbox {
  display: none;
  margin-top: 25px;
}

.next_block_checkbox.active_box {
  display: block;
}

.calculator_frame form > div.active {
  -webkit-box-shadow: 0px 1px 3px 1px #f87303;
          box-shadow: 0px 1px 3px 1px #f87303;
}

.fly_result {
  width: 100%;
  margin-right: auto;
  margin-top: 70px;
  display: none;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 30px;
}

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

.fly_result__header-material {
  color: #000;
  margin-right: 65px;
}

.fly_result__header-material span {
  color: #f87303;
}

.fly_result__header p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

.fly_result__header p span {
  font-size: 13px;
  color: #f87303;
}

.fly_result h2 {
  text-align: center;
  color: #f87303;
  margin-bottom: 40px;
  margin-right: auto;
  width: 50%;
}

.fly_result h2 span {
  color: #000;
}

.fly_result__line {
  padding: 6px 0;
  border-bottom: 1px solid #e4e4e4;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fly_result__line-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fly_result__line-section > img {
  margin-right: 12px;
}

.fly_result__line-input {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fly_result__line-input .fl-section-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fly_result__line-input .fl-section-input .input-section-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fly_result__line-input .fl-section-input .input-section-box:last-child {
  margin-top: 20px;
}

.fly_result__line-input > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 210px;
}

.fly_result__line-input > div label {
  font-size: 12px;
  color: #a2a1a1;
  margin-top: 4px;
  text-align: center;
}

.fly_result__line-input > div:first-child {
  margin-right: 135px;
}

.fly_result__line-input > div:last-child {
  margin-right: 15px;
}

.fly_result__line-input input {
  border: 1px solid var(--border-color);
  padding: 6px 10px;
  width: 50px;
}

.fly_result__line-input > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fly_result__line-input-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60%;
}

.fly_result__line-input-price {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
}

.fly_result__line-input-price span {
  margin: 0 7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.fly_result__line-input__mobile-header {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.fly_result__line-input__mobile-header img {
  width: 20px;
  margin-left: 10px;
}

.fly_result__line-input__mobile-header-popap {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  padding: 10px;
  font-size: 14px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .6s ease;
  transition: .6s ease;
  text-align: left;
}

.fly_result__line-input__mobile-header-popap:after {
  content: '';
  position: absolute;
  bottom: -19px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  left: 40px;
}

.fly_result__line-input__mobile-header-popap.active {
  -webkit-transform: translateY(-109%);
          transform: translateY(-109%);
  z-index: 9;
  opacity: 1;
}

.fly_result__line-double {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.fly_result__line-double ins:first-child {
  margin-bottom: 10px;
}

.fly_result__line-double ins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fly_result__line ins {
  text-decoration: none;
}

.fly_result__line-text > p {
  margin: 0 0 7px;
}

.fly_result__line:last-child {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: none;
}

.fly_result__line span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fly_result__line span p {
  margin: 0 0 0 5px;
  font-size: 13px;
  color: #949494;
  font-weight: 100;
}

@media (max-width: 1200px) {
  .fly_result {
    margin-left: 0;
    width: 100%;
  }
  .fly_result h2 {
    width: 100%;
  }
  .fly_result__header > p {
    display: none;
  }
  .fly_result__line, .fly_result__line:last-child {
    width: 100%;
  }
  .fly_result__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fly_result__line-input {
    margin-left: 0;
    margin-top: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    width: 70%;
    grid-gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .fly_result__line-input.double-input {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .fly_result__line-input-value {
    width: 100%;
  }
  .fly_result__line-input-price {
    margin-top: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fly_result__line-input > div {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .fly_result__line-input > div:first-child {
    margin-right: 15px;
  }
  .fly_result__line-input > div:last-child {
    margin-right: 0;
  }
  .fly_result__line-input__mobile-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 10px;
  }
  .fly_result__line-input__mobile-header img {
    width: 16px;
  }
  .fly_result__line-input .input-section-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fly_result__line > p,
  .fly_result__line span {
    font-size: 12px;
  }
  .fly_result__line > p p,
  .fly_result__line span p {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .fly_result__line-input {
    width: 100%;
  }
  .fly_result__line-input__mobile-header {
    height: 20px;
  }
}

.result_total__container {
  display: none;
  -ms-grid-columns: 11% 31% 22%;
      grid-template-columns: 11% 31% 22%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: 50px 0 20px 0;
}

.result_total p {
  margin: 0;
}

.result_total-name p {
  height: 50px;
  font-weight: bold;
}

.result_total-all {
  margin-right: 97px;
}

.result_total-all > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 50px;
}

.result_total-all__tavno {
  margin: 0 10px !important;
}

.result_total-all__rubl {
  margin-left: 5px !important;
}

.result_total-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 80px;
}

.result_total-img-popap {
  position: absolute;
  top: -56px;
  left: 14px;
  background: #fff;
  padding: 11px;
  -webkit-box-shadow: 2px -5px 8px 0px #dedede;
          box-shadow: 2px -5px 8px 0px #dedede;
  display: none;
  cursor: pointer;
}

.result_total-img-popap img {
  width: 30px;
}

.result_total.active {
  position: fixed;
  right: 0;
  bottom: -105px;
  background: #fff;
  width: 100%;
  height: 76px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
}

.result_total.active.active_section {
  bottom: 0px;
}

.result_total.active .result_total-img-popap {
  display: block;
}

.result_total.active_section.active .result_total__container {
  margin: 0;
  display: -ms-grid;
  display: grid;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-grid-columns: 100px max-content max-content;
      grid-template-columns: 100px -webkit-max-content -webkit-max-content;
      grid-template-columns: 100px max-content max-content;
  padding-left: 277px;
  overflow-x: scroll;
}

@media (max-width: 1200px) {
  .result_total__container {
    width: 100%;
    -ms-grid-columns: (max-content)[3];
        grid-template-columns: repeat(3, -webkit-max-content);
        grid-template-columns: repeat(3, max-content);
    grid-gap: 0 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .result_total-all {
    margin-right: 0;
  }
  .result_total-jobs {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .result_total {
    overflow-x: scroll;
  }
  .result_total > div {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
/*# sourceMappingURL=style.css.map */