#ddexitpopwrapper { /* dynamically generated wrapper DIV that surrounds exit pop content DIV */
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
		pointer-events: none;
    align-items: center;
    justify-content: center;
}

#ddexitpopwrapper .veil { /* dynamically generated "overlay" DIV that covers entire window when pop up is shown */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,.75);
    content: "";
    z-index: 1;
    display: none;
    cursor: default;
}


.exit-intent { /* user defined exit popup DIV style */
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;

	line-height:1.3em;
    width: 90%;
    max-width: 700px;
    border: 2px solid black;
    padding: 20px;
    padding-bottom: 0px;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    border: 20px solid #434635;
    background: white;
    left: 0;
    top: -100px; /* shift popup DIV upwards by 100px from middle of screen */
		-webkit-animation-duration: .5s; /* customize animation duration */
		animation-duration: .5s; /* customize animation duration */
    visibility: hidden;
    display:none;

	-webkit-box-shadow: 0px 0px 20px 0px rgba(50, 50, 50, 0.8);
	-moz-box-shadow: 0px 0px 20px 0px rgba(50, 50, 50, 0.8);
	box-shadow: 0px 0px 20px 0px rgba(50,50,50,0.8);
}

.exit-intent h2 {
	font-size: 1.3em;
	padding-bottom: 20px;
}

.exit-intent p {
	margin-bottom: 10px;
}

.exit-intent ul {
	margin-top:10px;
	list-style-type: circle;
	padding-left: 40px;
}

.exit-intent ul li {
	text-indent: 10px;
	padding-bottom: 10px;
}

.exit-intent .couponImage { /* demo button style */
	margin-left:auto;
	margin-right:auto;
	display:block;
	opacity:0.8;
}

.exit-intent .couponImage:hover {
	opacity:1;
}

div.closeexitpop { /* Large x close button  */
	width: 70px;
	height: 70px;
	overflow: hidden;
	display: none;
	position: fixed;
	cursor: pointer;
	text-indent: -1000px;
	z-index: 3;
	top: 10px;
	right: 10px;
}


#ddexitpopwrapper.open {
	pointer-events: auto;
}

#ddexitpopwrapper.open .veil { /* style of veil when exit pop is open */
    display: block;
}

#ddexitpopwrapper.open div.closeexitpop {
    display: block;
}

#ddexitpopwrapper.open .exit-intent { /* style of exit pop content DIV when exit pop is open */
    visibility: visible;
    display:block;
}


/* #### CSS that's applied when the viewing area's height is 765px or less #### */

@media screen and (max-height: 765px) {
	.ddexitpop{
		top: 0; /* don't shift exit pop up upwards 100px on screens that aren't very tall */
	}
}



