.section__calc {
  position: relative;
  margin-top: -30px;
}

.section__calc .calc {
  position: relative;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  min-height: 300px;
}

.section__calc .calc * {
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section__calc .calc__black {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000000;
  left: 0;
  top: 0;
  z-index: 99;
  display: none;
}

.section__calc .calc__black--show {
  display: block;
}

.section__calc .calc__head {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

@media (max-width: 360px) {
  .section__calc .calc__head {
    font-size: 26px;
  }
}

.section__calc .calc__head::before {
  content: "";
  height: 4px;
  background: #df0000;
  position: absolute;
  bottom: -5px;
  left: 3px;
  width: 90px;
}

@media (max-width: 360px) {
  .section__calc .calc__head::before {
    width: 70px;
  }
}

.section__calc .calc__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px auto 0 auto;
}

@media (max-width: 1100px) {
  .section__calc .calc__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.section__calc .calc__left {
  width: 65%;
}

@media (max-width: 1100px) {
  .section__calc .calc__left {
    width: 100%;
  }
}

.section__calc .calc__right {
  width: 360px;
  padding: 0 35px;
}

@media (max-width: 1180px) {
  .section__calc .calc__right {
    padding: 0 0 0 35px;
  }
}

@media (max-width: 1100px) {
  .section__calc .calc__right {
    width: 100%;
    padding: 0;
  }
}

.section__calc .calc__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section__calc .calc__flex--aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section__calc .calc__text {
  font-size: 18px;
}

@media (max-width: 360px) {
  .section__calc .calc__text {
    font-size: 16px;
  }
}

@media (max-width: 330px) {
  .section__calc .calc__text {
    max-width: 180px;
  }
}

.section__calc .calc__text--result {
  text-align: center;
  font-weight: 600;
}

@media (max-width: 330px) {
  .section__calc .calc__text--result {
    max-width: 600px;
    font-size: 18px;
  }
}

.section__calc .calc__result {
  font-size: 36px;
  margin: 40px auto;
  text-align: center;
}

@media (max-width: 440px) {
  .section__calc .calc__result {
    margin: 30px auto;
  }
}

@media (max-width: 330px) {
  .section__calc .calc__result {
    margin: 10px auto 20px auto;
  }
}

.section__calc .calc__filials {
  margin: 0 15px;
  height: 32px;
  text-align: center;
  width: 90px;
  border-radius: 0;
  border: 1px solid #e1e1e1;
  background: #fff;
  font-size: 16px;
}

@media (max-width: 730px) {
  .section__calc .calc__filials {
    margin: 0;
  }
}

.section__calc .calc__body {
  margin-top: 40px;
}

.section__calc .calc__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #bbb;
  padding: 20px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 730px) {
  .section__calc .calc__line {
    max-width: 345px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.section__calc .calc__line--add {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
}

.section__calc .calc__add {
  margin: 0 25px 0 0;
  width: 26px;
  height: 26px;
  background: #c6dcee;
  border-radius: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section__calc .calc__add:hover {
  background: #95b5cf;
}

.section__calc .calc__delete {
  width: 22px;
  height: 22px;
  background: #df0000;
  border-radius: 50px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.section__calc .calc__delete:hover {
  opacity: 0.5;
}

.section__calc .calc__delete::after {
  content: "";
  width: 60%;
  background: #fff;
  position: absolute;
  height: 3px;
  border-radius: 20px;
  top: 50%;
  margin: -1.5px 0 0 -30%;
  left: 50%;
}

.section__calc .calc__img {
  height: 30px;
  margin: 0 25px;
}

@media (max-width: 730px) {
  .section__calc .calc__img {
    margin: 0 10px;
  }
}

@media (max-width: 450px) {
  .section__calc .calc__img {
    height: 27px;
    max-width: 230px;
  }
}

@media (max-width: 360px) {
  .section__calc .calc__img {
    max-width: 220px;
    margin: 0 5px 0 10px;
  }
}

@media (max-width: 330px) {
  .section__calc .calc__img {
    max-width: 210px;
  }
}

.section__calc .calc__tip {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 730px) {
  .section__calc .calc__tip {
    position: static;
  }
}

.section__calc .calc__sign {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #ffd56b;
  border-radius: 30px;
  margin: 0 0 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.section__calc .calc__sign:hover {
  background: #e4bb54;
}

.section__calc .calc__sign:hover + .calc__fly {
  display: block;
}

.section__calc .calc__fly {
  position: absolute;
  width: auto;
  white-space: nowrap;
  top: -8px;
  left: calc(100% + 10px);
  background: #fff6dd;
  z-index: 89;
  padding: 10px 5px;
  font-size: 10px;
  border-radius: 6px;
  border: 1px solid #a89d7d;
  display: none;
}

@media (max-width: 880px) {
  .section__calc .calc__fly {
    width: 300px;
    white-space: normal;
    height: 42px;
    top: -11px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 730px) {
  .section__calc .calc__fly {
    left: 0;
    width: 345px;
    height: 66px;
    top: 42px;
    padding: 20px 10px;
  }
}

@media (max-width: 375px) {
  .section__calc .calc__fly {
    width: 100%;
    left: 0;
    top: 40px;
  }
}

.section__calc .calc__fly--show {
  display: block;
}

@media (max-width: 880px) {
  .section__calc .calc__fly--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 730px) {
  .section__calc .calc__fly--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.section__calc .calc__part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  min-width: 390px;
}

@media (max-width: 730px) {
  .section__calc .calc__part {
    width: 345px;
    min-width: auto;
  }
}

.section__calc .calc__part--first {
  padding: 0 0 0 45px;
}

@media (max-width: 730px) {
  .section__calc .calc__part--first {
    padding: 0;
  }
}

.section__calc .calc__head730 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: none;
  width: 100%;
  margin: 10px 0 10px 0;
}

@media (max-width: 730px) {
  .section__calc .calc__head730 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section__calc .calc__between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 730px) {
  .section__calc .calc__between {
    width: 100%;
  }
}

@media (max-width: 730px) {
  .section__calc .calc__between--first {
    display: none;
  }
}

.section__calc .calc__plusminus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 120px;
  height: 34px;
  border-radius: 0;
  border: 1px solid #ddd;
  background: #fff;
}

.section__calc .calc__input {
  width: 60px;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 16px;
  background: #fff;
}

.section__calc .calc__plus,
.calc__minus {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-weight: 300;
  -webkit-transition-duration: 0.2;
  transition-duration: 0.2;
  border-radius: 4px;
}

.section__calc .calc__plus:hover,
.calc__minus:hover {
  opacity: 0.4;
}

.section__calc .calc__plus:active,
.calc__minus:active {
  background: #ccc;
}

.section__calc .calc__plus {
  font-size: 28px;
}

.section__calc .calc__plus::before {
  content: "";
  display: block;
  position: absolute;
  background: #dedede;
  height: 60%;
  width: 1px;
  left: 0;
  top: 20%;
}

.section__calc .calc__minus {
  padding: 0 0 2px 0;
}

.section__calc .calc__minus::before {
  content: "";
  display: block;
  position: absolute;
  background: #dedede;
  height: 60%;
  width: 1px;
  right: 0;
  top: 20%;
}

.section__calc .drop {
  overflow: hidden;
  z-index: 199;
  position: absolute;
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 10px 10px;
  border-radius: 6px;
  border: 1px solid #bbb;
  top: 50%;
  margin: -13px 0 0 0;
  height: 160px;
  overflow-y: scroll;
  display: none;
}

@media (max-width: 730px) {
  .section__calc .drop {
    max-width: 345px;
  }
}

.section__calc .drop--show {
  display: block;
}

.section__calc .drop__item {
  padding: 10px 0px 10px 40px;
  border-radius: 6px;
  cursor: pointer;
}

.section__calc .drop__item:hover {
  background: #f3f3f3;
}

.section__calc .drop__img {
  display: block;
  max-height: 31px;
}

.section__calc .drop::-webkit-scrollbar {
  width: 20px;
  border-radius: 20px;
}

.section__calc .drop::-webkit-scrollbar-track {
  border: 7px solid #fff;
  border-radius: 20px;
}

.section__calc .drop::-webkit-scrollbar-thumb {
  background-color: #df0000;
  border: 7px solid #fff;
  border-radius: 20px;
}

.section__calc .form {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 730px) {
  .section__calc .form {
    max-width: 345px;
  }
}

.section__calc .form__icon {
  position: relative;
}

.section__calc .form__icon--mail::before {
  content: "✉";
  font-size: 20px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 3px 0 0 5px;
  color: #999;
}

.section__calc .form__icon--phone::before {
  content: "+7";
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 5px 0 0 5px;
  color: #999;
}

.section__calc .form__file {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 199;
  margin: -60px 0 0 10px;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  cursor: pointer;
}

.section__calc .form__file:hover {
  opacity: 0.5;
}

.section__calc .form__input {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
  height: 40px;
  border-radius: 0;
  border: 1px solid #e1e1e1;
  background: #00000005;
  font-size: 1rem;
  padding: 2rem 0.75rem;
}

.section__calc .form__comment {
  display: block;
  width: 100%;
  margin: 0 0 10px 0;
  border-radius: 0;
  border: 1px solid #e1e1e1;
  background: #00000005;
  font-size: 1rem;
  height: 110px;
  padding: 1rem 0.75rem 2rem;
  resize: none;
}

.section__calc .form__note {
  font-size: 12px;
  color: #999;
  text-align: center;
}

.section__calc .form__submit {
  width: 100%;
  margin-top: 20px;
  display: block;
  height: 46px;
  background: #df0000;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;

  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none !important;
  outline: 0;
  font-size: 16px;
}

.section__calc .form__submit:hover {
  opacity: 0.7;
}

.section__calc .form__submit:active {
  opacity: 0.4;
}

.section__calc .form-group {
  margin-bottom: 1rem;
}

.section__calc .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  flex-direction: row;
  background: #00000005;
}

.section__calc .input-group-prepend {
  margin-right: -1px;
  text-align: center;
  display: flex;
}

.section__calc .input-group-text {
  background: 0 0;
  color: #8e8e8e;
  width: 42px;
  border-radius: 0;
  display: flex;
  padding-left: 25px;
  padding-right: 16px;
  border-right: 0;
}

.section__calc .input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
  border-left: 0;
  background-color: unset;
}

.section__calc .fa,
.section__calc .fas {
  font-family: "Font Awesome 5 Free";
}

/*# sourceMappingURL=main.css.map */
