#modal-contain {
  content: "";
  background-color: rgba(116, 123, 128, 0.8);
  position: fixed;
  left:0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility:hidden;
  z-index: 99999;
  transition: all 0.3s ease 0.3s;
}
.show-modal #modal-contain {
	visibility: visible;
	opacity: 1;
	transition: all 0.3s ease 0s;
}
#modal-contain > #modal-display {
  display: flex;
  align-items: stretch;
  position: absolute;
  top:50%;
  left:50%;
  background-color: #fff;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(-50%, -50%) scale(0.4);
  -moz-transform:    translate(-50%, -50%) scale(0.4);
  -ms-transform:     translate(-50%, -50%) scale(0.4);
  -o-transform:      translate(-50%, -50%) scale(0.4);
  transform:         translate(-50%, -50%) scale(0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  overflow: hidden;
}
.show-modal #modal-contain > #modal-display {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform:    translate(-50%, -50%) scale(1);
    -ms-transform:     translate(-50%, -50%) scale(1);
    -o-transform:      translate(-50%, -50%) scale(1);
    transform:         translate(-50%, -50%) scale(1);
    transition: all 0.3s ease 0.3s;
}


#modal-display input {
	background-color: #cfcdcd; 
	padding: 10px;
	min-width: 100%;
	
}
.modal-close {
	font-size: 40px;
	color: #fff;
	line-height: 1;
	position: absolute;
	right: 30px;
	top: 25px;
	cursor: pointer;
}

#modal-display figure {
	width: 100%;
	max-width: 600px;
	min-width: 400px;
	background-image: url("/images/uploads/walking-woods.jpg");
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

}
#modal-display form {
	flex-grow: 1;
	padding: 26px 20px 70px;
}
#promo-form h6 {
	color: #131313;
	text-align: center;
}
#promo-form .checkbox label,
#promo-form .checkbox input {
	display: inline-block;
	font-size: 14px;
}
#promo-form .checkbox input {
	min-width: 0;
	margin-right: 6px;
}
#thanks {
	display:flex;
	flex-direction: column;
	width: 500px;
	height: 400px;
	text-align: center;
	background-position: center center;
	align-items:center;
	justify-content: center;
	padding:20px;
}