<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * All of the CSS for your public-specific functionality should be
 * included in this file.
 */

#cartbounty-exit-intent-form-container,
#cartbounty-exit-intent-close,
#cartbounty-exit-intent-submit{
	-webkit-transition: 	all .3s cubic-bezier(.38,1.09,.5,.98);
	-moz-transition: 		all .3s cubic-bezier(.38,1.09,.5,.98);
	-o-transition: 			all .3s cubic-bezier(.38,1.09,.5,.98);
	transition: 			all .3s cubic-bezier(.38,1.09,.5,.98);
}

#cartbounty-exit-intent-form{
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: auto;
}

#cartbounty-exit-intent-form-backdrop{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0;
	z-index: 0;
	display: block;
	visibility: hidden;
	cursor: pointer;
	-webkit-transition: 	all .6s cubic-bezier(.38,1.09,.5,.98);
	-moz-transition: 		all .6s cubic-bezier(.38,1.09,.5,.98);
	-o-transition: 			all .6s cubic-bezier(.38,1.09,.5,.98);
	transition: 			all .6s cubic-bezier(.38,1.09,.5,.98);
}

#cartbounty-exit-intent-form.cartbounty-visible,
#cartbounty-exit-intent-form-backdrop.cartbounty-visible,
.cartbounty-visible #cartbounty-exit-intent-form-container{
	z-index: 99999999;
	opacity: 1;
	visibility: visible;
}

#cartbounty-exit-intent-form-backdrop.cartbounty-visible{
	z-index: 99999998;
	opacity: .5;
}

#cartbounty-exit-intent-close{
	height: 42px;
	width: 42px;
	top: 20px;
	right: 20px;
	position: absolute;
	cursor: pointer;
	padding: 15px;
	opacity: .6;
	z-index: 2;
	overflow: hidden;
}

#cartbounty-exit-intent-close:hover{
	opacity: 1;
}

#cartbounty-exit-intent-form-container{
	position: relative;
	padding: 60px 60px 50px;
	opacity: 0;
	overflow-x: hidden;
}

#cartbounty-exit-intent-form-content-l{
	text-align: center;
}

#cartbounty-exit-intent-form-content img{
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
	max-height: 30vh;
	width: auto;
	max-width: 100%;
}

#cartbounty-exit-intent-submit{
	display: inline-block;
	width: 36%;
	padding: 10px 5%;
	position: relative;
	margin: 0;
	height: 50px;
	float: none;
	min-width: unset;
	border: 0 none;
	opacity: .9;
}

#cartbounty-exit-intent-submit:hover{
	opacity: 1;
}

#cartbounty-exit-intent-form input{
	width: 62%;
	min-width: unset;
	display: inline-block;
	height: 50px;
	vertical-align: top;
	padding: 12px 15px;
	margin: 0;
}

#cartbounty-exit-intent-form input:focus{
	outline-color: transparent;
}

#cartbounty-exit-intent-form h2{
	font-size: 34px;
	line-height: 42px;
	margin-top: 0;
	margin-bottom: 15px;
}

#cartbounty-exit-intent-form p{
	font-size: 15px;
	line-height: 20px;
	margin: 0;
	padding: 0 0 20px;
}

#cartbounty-exit-intent-form #cartbounty-exit-intent-consent{
	margin-top: 20px;
	font-size: 13px;
	line-height: 18px;
}

/* Exit Intent Template
 * Appear In Center
 */
 .cartbounty-ei-center#cartbounty-exit-intent-form{
 	overflow-y: auto;
 	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
 }

.cartbounty-ei-center #cartbounty-exit-intent-form-container{
	position: relative;
	height: auto;
	width: 100%;
	max-width: 600px;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	margin: auto;
}

@media screen and (max-width: 768px) {
	.cartbounty-ei-center #cartbounty-exit-intent-form-container{
		width: 90%;
	}
}

@media screen and (max-width: 576px) {
	#cartbounty-exit-intent-form input{
		width: 100%;
		margin-bottom: 10px;
	}

	#cartbounty-exit-intent-form-container{
		padding: 30px 30px 20px;
	}

	.cartbounty-ei-center #cartbounty-exit-intent-form-container{
		width: 94%;
	}

	#cartbounty-exit-intent-form-container{
		padding: 30px 30px 10px;
	}

	#cartbounty-exit-intent-submit{
		width: auto;
		display: block;
	}
}

@media screen and (max-width: 320px) {
	#cartbounty-exit-intent-form h2{
		font-size: 26px;
		line-height: 36px;
	}
}</pre></body></html>