#add_new_house {
	width: 500px;
}

.select2 {
	height: 26px;
}

.form .btn {
  margin-top: 10px;

  border: 0;
  color: #444;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
  height: 50px;
  line-height: 50px;
  padding: 0 27px;
  display: inline-block;
  border-radius: 3px;
  transition: all 0.2s;
  font-size: 121.42857142857143%;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  background: #026eb7;
}

.form input[type='text'] {
    border: 1px solid #aaa;
}

h2.center {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 40px;
}

.alert-error-report {
	color: #fff;
	background: #C0251D;
	padding: 15px 10px 15px 20px;
}

#add_new_house,
#payment-form {
  position: relative;
}
#add_new_house.loader > *,
#payment-form.loader > * {
  opacity: 0.5;
  transition: all 0.3s;
  pointer-events: none;
}
#add_new_house.loader:before,
#payment-form.loader:before {
  content: '';
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  background: #fff url("../images/ajax-loader.gif") no-repeat center;
  border-radius: 5px;
  z-index: 100;
  box-shadow: 0 0 3px rgba(0,0,0,0.18);
}