.calc {
	background: #f2f4f6;
	color: #2c3e50;
}

.calc h6 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 0;
}

.calc a:hover {
	color: #2b6295;
	text-decoration: none;
}

.calc .control {
	margin-bottom: 30px;
}

.calc .button {
    font-size: 15px;
    font-weight: 300;
    padding: .6rem 1.5em;
    border-radius: 3px;
    margin-bottom: .5rem;
    white-space: normal;
} 

@media (min-width: 768px) {
	.calc .button {
		min-width: 100px;
	} 
}


.calc__container {
	max-width: 720px;
	padding-top: 2rem;
	padding-bottom: 4rem;
}

.calc__steps {
	cursor:pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  position: relative;
  z-index: 0;
}

.calc__steps:before {
    content: '';
    background: #e8e8e8;
    position: absolute;
    top: 2.3rem;
    left: 0;
    right: 0;
    border-top: 1px dashed #6f5a57;
    z-index: -1;
}

@media (min-width: 768px) {
	.calc__steps:before {
		top: 2.8rem;
	}
}


.calc__step {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #6f5a57;
  width: 40px;
  height: 40px;
  line-height: 40px;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
	.calc__step {
	  width: 56px;
	  height: 56px;
	  line-height: 56px;
	}
}

.calc__step_wrong {
  background: #e45e52;
  color: #fff;
}

.calc__step_right {
	background: #f5a623;
	color: #fff;
	cursor:default
}

.calc__card {
    padding: 2rem 1.5rem;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
    background-color: #fff;
}

.calc__card p {
	font-size: 13px;
	color: #8f929e;
	line-height: 19px;
}

.calc__label {
	font-weight: 500;
	margin-bottom: .5rem;
}

@media (min-width: 768px) {
	.calc__label {
		margin-bottom: 0;
		margin-top: .9rem;
	}
}

.checkbox-group {
	font-size: .9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.checkbox-group li {
	display: inline-block;
	margin-right: 1rem;
}

.calc__bottom-text {
	margin-top: 1.5rem;
	color: #88949a;
}

.calc__info {
	fill-opacity: .2;
	-webkit-transition: all .1s ease-in;
	-o-transition: all .1s ease-in;
	transition: all .1s ease-in;
	margin-left: 5px;
	margin-right: 5px;
	height: 16px;
	line-height: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #4b545b;
}

.calc__info:hover {
	cursor: pointer;
    fill-opacity: 1;
}

.calc__info svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.calc__switch-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: .8rem;
}

@media (min-width: 768px) {
	.calc__switch-group {
		margin-top: 0;
	}
}

.calc__discount {
    font-size: 14px;
	margin-right: 28px;
    font-weight: 500;
    color: #dfb57a;
}

@media (min-width: 768px) {
	.calc__discount {
		margin: 0 28px;
	}
}

.calc hr {
    border-top: 1px dashed #c9cbcd;
	margin-top: 25px;
	margin-bottom: 25px;
}
.title .button { float:right; padding:.2rem 1.5em; font-size:14px; }
.button_black {
    background-color: #212121;
    -webkit-box-shadow: 0 10px 15px 0 rgba(83,179,116,.3);
    box-shadow: 0 10px 15px 0 rgba(83,179,116,.3);
    color: #fff !important;
}
.button_black:hover, .button_black:focus {
	background-color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsla(0,0%,100%,.9) !important;
}