
/* style link that you click to activate popup */
a {
	cursor: pointer;
	transition: all 0.3s ease-out;
}

/* div that wraps the form */
.gform_wrapper {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;	
}

.gform_wrapper:target {
	visibility: visible;
	opacity: 1;
}

/*form within wrapper div*/
.gform_wrapper form {
	margin: 70px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	width: 30%;
	position: relative;
	transition: all 3s ease-in-out;
}

/*close button*/
.gform_wrapper a.gfpop_close {
	position: absolute;
	top: 0px;
	right: 10px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	box-shadow: none;
}

