.formwrap {
    /*
    animation: showform .500s;
    animation: hideform .500s;
    */
    height: 100%;
    width: 80%;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    background: #5fc3e4;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(0, 0, 0, 0.03);
    transform: scale(0);
    z-index: 99999;
    padding: 40px;
}

/* Contact Section
********************************************************************* */
#contact {
    padding: 100px 0 100px 0;
    background-color: #f5f5f5;
}

.contact-blurb {
    text-align: justify;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	height: 38px;
	padding: 6px 10px;
	/* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #ffffff;
	border: none;
	box-shadow: none;
	box-sizing: border-box;
	border-radius: 4px;
    outline: none;
    resize: none;
}

label {
    color: #FFFFFF;
}

textarea {
	min-height: 250px;
}

input[type="submit"] {
	display: inline-block;
	height: 38px;
	padding: 0 30px;
	color: #1e1e1e;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background: #FFFFFF;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
    box-sizing: border-box;
    outline: none;
}

input[type="submit"]:hover {
    background: #5fc3e4;
    color: #ffffff;
    border: solid 1px #ffffff;
	text-decoration: none;
}

.button-primary {
    float: right;
}

.dismiss {
    position: absolute;
    height: 50px;
    width: 50px;
    right: 0;
    top: 0;
    line-height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999999;
}

.dismiss:hover {
    font-weight: 900;
}

@keyframes showform {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes hideform {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0);
    }
}