
/* untuk pemakaian di blog/website anda, yang di copy hanya css di bawah ini*/
	/* style untuk link popup */
	a.popup-link {

	}
	a.popup-link:hover {

	}
	/* end link popup*/

	/*style untuk popup */	
#popup {
    height: 788px;
    margin-top: -200px;
    opacity: 0;
    visibility: hidden;
}
	#popup:target {
		visibility:visible;
		opacity: 1;
		background-color: rgba(255,255,255,0.8);
		position: fixed;
		top:0;
		left:0;
		right:0;
		bottom:0;
		margin:0;
		z-index: 99999999999;
		-webkit-transition:all 1s;
		-moz-transition:all 1s;
		transition:all 1s;
	}

	@media (min-width: 768px){
		.popup-container {
			width:600px;
		}
	}
	@media (max-width: 767px){
		.popup-container {
			width:100%;
		}
	}
   
    @media (max-width: 320px){
    .popup-container {
    background-color: #333;
    border-radius: 3px;
    color: #fff;
    margin: 0 auto 7%;
    position: relative;
    padding: 5% !important;
    margin-top: -1px !important;
    }
    .popup-form h2{
    font-size: 23px !important;
}
    .popup-form .input-group input {
    height: 32px !important;

}
	}

	.popup-container {
		position: relative;
		margin:7% auto;
		padding:30px 50px;
		background-color: #333;
		color:#fff;
		border-radius: 3px;
        margin: 10px auto 7%;
	}

	a.popup-close {
		position: absolute;
		top:3px;
		right:3px;
		background-color: #fff;
		padding:7px 10px;
		font-size: 20px;
		text-decoration: none;
		line-height: 1;
		color:#333;
	}

	/* style untuk isi popup */


	.popup-form {
		margin:10px auto;
	}
		.popup-form h2 {
			margin-bottom: 5px;
			font-size: 37px;
			text-transform: uppercase;
		}
		.popup-form .input-group {
    margin: 10px auto;
    width: 100%;
}
.popup-form .input-group input {
    border-radius: 3px;
    display: block;
    font-size: 16px;
    height: 41px;
    margin-bottom: 10px;
    width: 100%;
}
			.popup-form .input-group input:focus {
			}
			.popup-form .input-group input[type="email"] {
				border:0px;
				position: relative;
			}
			.popup-form .input-group input[type="submit"] {
				background:rgba(255, 255, 255, 0.1) none repeat scroll 0 0;
				color: #fff;
				border: 0;
				cursor: pointer;
			}
			.popup-form .input-group input[type="submit"]:focus {
			}
	/* end isi form */
