.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
	pointer-events: none;
}
.modalDialog:target {
	display: block;
	pointer-events: auto;
}
.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 25% auto;
}
.close {
	background: #9090B9;
	color: #FFF;
	line-height: 34px;
	position: absolute;
	right: -17px;
	text-align: center;
	top: -17px;
	width: 34px;
	text-decoration: none;
	font-size: 24px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
	border-radius: 17px;
}
.close:hover { background: #E75C00; color: #FFF}

/* modal */
#modal .hero-form {
  padding: 30px 10px;
  width: 100%;
  float: right;
  text-align: center;
  background: #446077;
}
#modal .hero-form .default-form .form-title {
  margin: 0 0 20px 0;
  color: #ffffff;
}
#modal .hero-form .default-form .declaration {
  margin-top: 12px;
  display: block;
  color: #ffffff;
  font-size: 13px;
}
#modal .hero-form .default-form .field {
  position: relative;
  margin-right: 6px;
  display: block;
  width: 100%;
}
#modal .hero-form .default-form .field:last-child {
  margin-right: 0;
}
#modal .hero-form .default-form .field input {
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
  border: transparent;
  border-radius: 3px;
  background: #ffffff;
}
#modal .hero-form .default-form .field button {
  width: 100%;
  height: 41px;
}
#modal .hero-form .default-form .field select {
  display: none;
}
#modal .hero-form .default-form .field .select-clone {
  position: absolute;
  margin-top: -2px;
  left: 0;
  right: 0;
  display: none;
  background: #ffffff;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 999;
}
#modal .hero-form .default-form .field .fa {
  position: absolute;
  right: 10px;
  top: 12px;
  color: #999;
}
#modal .hero-form .default-form .field .fa.fa-sort {
  cursor: pointer;
}
#modal .hero-form .default-form .field button {
  border-radius: 3px;
}