.calc {
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-rendering: optimizelegibility;
}
.calc__head {
  margin-bottom: 34px;
}
.calc__head-title {
  font-size: 52px;
  line-height: 56px;
  font-weight: 400;
  margin-bottom: 19px;
  text-transform: uppercase;
}
.calc__head-subtitle {
  font-size: 17px;
}
.calc__body {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f2f5f7;
  padding: 20px;
  border-radius: 7px;
  background-image: url(../img/calc-photo.png);
  background-size: contain;
  background-position: right -306px top 35px;
  background-repeat: no-repeat;
}
.calc__left {
  max-width: 457px;
  width: 100%;
  padding-right: 24px;
}
.calc__desc {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 18px;
}
.calc__line {
  height: 56px;
  width: 100%;
  background-color: #fff;
  margin-bottom: 36px;
  position: relative;
  padding: 0 13px;
  border-width: 1px 1px 2px;
  border-style: solid;
  border-color: #ccc #ccc #d8e0f3;
  -o-border-image: initial;
  border-image: initial;
  border-radius: 3px;
}
.calc__slider {
  margin: 0 0 0 -13px;
}
.calc__line-price {
  font-weight: 500;
}
.calc__line-desc {
  font-size: 12px;
  display: block;
  margin-bottom: -2px;
}
.calc__line-percent-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.calc__line-percent {
  position: relative;
}
.calc__line-percent span {
  position: relative;
}
.calc__ico-rub {
  font-style: normal;
  font-weight: 500;
}
.calc__line-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1px;
  margin: 0 -12px;
  position: relative;
  top: -15px;
}
.calc__right {
  max-width: 427px;
  width: 100%;
  padding-top: 4px;
  padding-left: 25px;
}
.calc__res-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.calc__res-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.calc-tooltip {
  display: inline-block;
  position: relative;
}
.calc-tooltip span {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  color: #fff;
  background-color: #c1c1c1;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
}
.calc-tooltip i {
  font-style: normal;
  visibility: hidden;
  position: absolute;
  bottom: 36px;
  width: 226px;
  left: 50%;
  margin: 0 -113px;
  font-size: 12px;
  line-height: 15px;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 4px;
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  transition-duration: .3s;
  opacity: 0;
}
.calc-tooltip i::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 0;
  left: 50%;
  margin: 0 -10px;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: rgba(0, 0, 0, .7) transparent transparent;
}
.calc-tooltip:hover i {
  visibility: visible;
  opacity: 1;
}
.calc__button {
  position: relative;
  padding: 11px 32px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  background-color: #e31e25;
  outline: 0;
  transition: .3s;
  cursor: pointer;
  color: #fff;
  margin-top: 20px;
}
.calc__button:hover {
  opacity: .8;
}
.calc .ui-state-default {
  background-color: #fff;
  border: 4px solid #e31e25;
  border-radius: 50%;
  outline: 0;
  width: 16px;
  height: 16px;
  top: -6px;
  margin-left: 0;
  z-index: 999;
}
.calc .ui-state-default:before {
  content: '';
  display: block;
  width: 60px;
  height: 62px;
  background-color: transparent;
  position: absolute;
  left: -25px;
  top: -50px;
}
.calc .ui-slider-range {
  background-color: #e31e25;
  height: 2px;
}
.calc__res-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.calc__res-col p {
  font-weight: 400;
  font-size: 16px;
}
.calc__res-total {
  font-weight: 700;
}
.calc__res-line:nth-child(2) {
  border-bottom: 1px solid #bbb;
  margin-bottom: 25px;
  padding-bottom: 14px;
}
.calc-form {
  max-width: 500px;
  width: 100%;
  background-color: #fbfbfb;
  border: 2px solid #f5f5f5;
  padding: 22px 30px 0px;
  margin: 0 auto;
  position: relative;
  font-family: sans-serif;
}
.calc-form__title {
  text-align: center;
  font-size: 24px;
  color: #656565;
  line-height: 1.25;
  margin: 0 0 25px;
  text-transform: uppercase
}
.calc-form .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  line-height: 1;
}
.calc-form input[type="text"], .calc-form input[type="tel"], .calc-form input[type="email"] {
  border: 1px solid #e0e0e0;
  height: 42px;
  padding-left: 18px;
  width: 100%;
  border-radius: 0
}
.calc-form input[type=submit] {
  background-color: #3f51b5;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  height: 48px;
  border: none;
}
.calc-form input.wpcf7-not-valid, .calc-form textarea.wpcf7-not-valid {
  border-color: #ff8686;
}
.calc-form h5 {
  margin-bottom: 20px;
  text-align: center;
}
.calc-form label {
  width: 100%;
}
.calc-form p {
  width: 100%;
}

.widget_iframe {
  margin-top: -50px!important
}

.wpcf7 h5 {
	text-align: center;
	margin: 0px;
	padding-bottom: 30px;
}
.popmake .wpcf7 h5 {
	padding-bottom: 20px;
	font-size: 16px;
}
#cf7md-form {
	max-width: 860px;
	margin: 0 auto;
}
.wpcf7-spinner {
	display: none;
}
.cf7md-submit {
	display: flex;
	justify-content: center;
}
#cf7md-form .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, #cf7md-form .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch, #cf7md-form .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
  /*border-color: #b00020 !important;
  border-color: #b5b5b5 !important;
  background: #f5f5f5 !important;*/
  border-radius: 0px !important;
}
#cf7md-form .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, #cf7md-form .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__notch, #cf7md-form .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
  border-color: rgba(0,0,0,0.24);
  background: none !important;
  border-radius: 0px !important;
}
#cf7md-form .mdc-text-field,
#cf7md-form .mdc-text-field:not(.mdc-text-field--disabled) {
	background-color: transparent !important;
	background: none !important;
}
#cf7md-form .mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__leading {
	display: none;
}
#cf7md-form .mdc-text-field--textarea .mdc-notched-outline .mdc-notched-outline__trailing {
	border-top: 0px;
	border-right: 0px;
}
#cf7md-form .mdc-notched-outline__notch {
	border-top: 0px;
}
#cf7md-form .mdc-text-field--textarea .mdc-floating-label {
	left: 16px;
}
#cf7md-form .mdc-button::before, #cf7md-form .mdc-button::after, #cf7md-form .mdc-button--raised:not(:disabled), #cf7md-form .mdc-button--unelevated:not(:disabled) {
	background-color: #196eff;
}
#cf7md-form .mdc-button--raised.mdc-ripple-upgraded:hover {
	background-color: #196eff;
}
.show-callback {
	display: flex !important;
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
	animation: t708__pulsate 1s ease-out;
	animation-iteration-count: infinite;
	-webkit-animation: t708__pulsate 2s ease-out;
	  animation-iteration-count: 1;
	-webkit-animation-iteration-count: infinite;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 75px;
	bottom: 170px;
	background: #ffd500;
	z-index: 1000;
}
.show-callback svg path {
	fill: #fff;
}

@media all and (max-width: 767px) {
	.show-callback {
		right: 20px;
		bottom: 100px;
	}
}

@media all and (max-width:1100px) {
  .calc__body {
    background-image: none;
  }
  .calc__head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width:992px) {
  .calc__body {
    flex-wrap: wrap;
  }
  .calc__left {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
  .calc__right {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
  .calc__button {
    margin-left: 0;
  }
  .calc__head-title {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .calc__head-subtitle {
    font-size: 14px;
    line-height: 16px;
  }
  .calc__head {
    margin-bottom: 20px;
  }
  .calc__res-title {
    display: none;
  }
  .calc__res-col p {
    font-size: 14px;
    line-height: 18px;
  }
  .calc__res-total {
    font-size: 14px;
    flex-shrink: 0;
  }
  .calc__res-line {
    margin-bottom: 5px;
  }
  .calc__res-col:first-child {
    padding-right: 20px;
  }
  .calc-tooltip span {
    width: 16px;
    height: 16px;
    line-height: 17px;
  }
  .calc .ui-state-default:focus, .calc .ui-state-default:hover {
    outline: 1px solid #282828;
  }
  .calc .ui-state-default:before {
    content: none;
  }
  .raven-heading-h2 span {
    font-size: 32px!important;
  }
}