.popup-css {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0px;
    z-index: 99999999;
    position: fixed;
    background: #00000087;
    padding: 10px;
    color: #fafafa;
    text-align: justify;
    box-shadow: 0px 0px 2px #111;
    -moz-box-shadow: 0px 0px 2px #111;
    -webkit-box-shadow: 0px 0px 2px #111;
    animation: popup .3s;
    -webkit-animation: popup .3s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    transform: scale(0,0);
    -webkit-transform: scale(0,0);
}

.popup-css .inner-pop {
    width: 50%;
    margin: 0 auto;
    box-shadow: 0px 0px 2px #111;
    border: 5px solid #000;
}

#popup img {
	width:100%;
	height:100%;
}
@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:#dfbc44;
	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;
}




.popupCertificate {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0px;
    z-index: 99999999;
    position: fixed;
    background: #00000087;
    padding: 10px;
    color: #fafafa;
    box-shadow: 0px 0px 2px #111;
    -moz-box-shadow: 0px 0px 2px #111;
    -webkit-box-shadow: 0px 0px 2px #111;
    animation: popup 0.1s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    transform: scale(0,0);
    -webkit-transform: scale(0,0);
    overflow: auto;
        cursor: zoom-out;
}
.popupCertificate img {width: 50%; }

