.popup {
    width: 100%;
    height: 100%;
    max-width: initial;
    right: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    top: 0;
    z-index: 99999999;
    position: fixed;
    background: linear-gradient(#333333c9, #000000c9);
    padding: 10px;
    color: #fafafa;
    text-align: center;
    -webkit-box-shadow: 0px 0px 2px #111;
    animation: popup .3s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-delay: 1s;
    -webkit-transform: scale(0,0);
    overflow-y: auto;
    overflow-x: hidden;
}
.popup img {
    border: 6px solid #e7e7e7;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@keyframes popup {
	100% {transform:scale(1,1)}
}
@-webkit-keyframes popup {
	100% {-webkit-transform:scale(1,1)}
}
/*End of main part*/

/*Some Extra Styling. Ignore!*/
.pop-header {
	background:#B62A29;
	display:inline-block;
	text-transform:uppercase;
	padding:3px 10px;
	box-shadow: 0px 3px 3px #111;
	-webkit-box-shadow: 0px 3px 3px #111;
	-moz-box-shadow: 0px 3px 3px #111;
	position:absolute;
	right:10px;
}
.pop-header a {
	float:right;
	color: #fff;
}
.popup h2 {
	text-transform:uppercase;
	text-align:center;
	margin: 5px;
}
#form {
	background: #111;
	width:250px;
	padding: 10px;
	border: 1px solid #111;
	box-shadow: 0px 0px 5px #000 inset;
	-moz-box-shadow: 0px 0px 5px #000 inset;
	-webkit-box-shadow: 0px 0px 5px #000 inset;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
}
#button {
	width: 120px;
	padding: 8px;
	background: -webkit-linear-gradient(#77d42a, #5cb811);
    background: -o-linear-gradient(#77d42a, #5cb811);
    background: -moz-linear-gradient(#77d42a, #5cb811);
    background: linear-gradient(#77d42a, #5cb811);
	border: 1px solid #77d42a;
	cursor: pointer;
	color: #fff;
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform:uppercase;
}

@media only screen and (max-width: 992px){ .pop-header{z-index: 1;}}