/*
	Name: wpbounce.css
	Version: 1.0
	Description: Layout stylesheet for the popups
*/

.wpbounce {
	
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	overflow-x: hidden;
    overflow-y: auto;
    padding: 50px;
    width: 100%;
    height: 100vh;
    	
}

	.wpbounce .wpbounce-modal {
		
		position: absolute;
		left: 50%;
		top: 50%;
		width: 700px;
		margin: 0 auto 0 auto;

		-webkit-transform: translate(-50%, -50%);
		   -moz-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
				
	}

	.wpbounce .wpbounce-modal .wpbounce-close {
		
		width: 30px;
		height: 30px;
		position: absolute;
		right: -15px;
		top: -15px;
		background: gray;
		
		-webkit-border-radius: 50%;
		   -moz-border-radius: 50%;
		        border-radius: 50%;
		
		background: rgba(0,0,0,0.6);
		border: 2px solid white;
		
		font: 16px/30px sans-serif;
		color: white;
		text-align: center;
		
		-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.6);
		   -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.6);
		        box-shadow: 0px 2px 3px rgba(0,0,0,0.6);
		
	}
	
		.wpbounce .wpbounce-modal .wpbounce-close:before {
			
			content: '✕';
			
		}

@media screen and (max-width: 700px) {

	
	.wpbounce .wpbounce-modal {
		
		width: 100%;
		margin: 0;
		left: auto;
		top: auto;
		position: relative;

		-webkit-transform: translate(0,0);
		   -moz-transform: translate(0,0);
		        transform: translate(0,0);
		
	}
	

}