#exitoffers {
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#exitoffers-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 0;
	display: block;
	visibility: hidden;
	cursor: pointer;
	-webkit-transition: 	all .6s cubic-bezier(.38,1.09,.5,.98);
	-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);
}

#exitoffers.exitoffers-visible,
#exitoffers-backdrop.exitoffers-visible,
.exitoffers-visible #exitoffers-container {
	z-index: 99999999;
	opacity: 1;
	visibility: visible;
}

#exitoffers-backdrop.exitoffers-visible {
	z-index: 99999998;
	opacity: .5;
}

#exitoffers-offer-close {
	height: 42px;
	width: 42px;
	top: 20px;
	right: 20px;
	position: absolute;
	cursor: pointer;
	padding: 15px;
	opacity: .6;
	z-index: 2;
	overflow: hidden;
	-webkit-transition: 	all .3s cubic-bezier(.38,1.09,.5,.98);
	-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);
}

#exitoffers-offer-close:hover {
	opacity: 1;
}

#exitoffers-container {
	position: relative;
	padding: 60px 60px 30px;
	opacity: 0;
	overflow-x: hidden;
	-webkit-transition: 	all .3s cubic-bezier(.38,1.09,.5,.98);
	-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);
}

#exitoffers-content-l {
	text-align: center;
}

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

#exitoffers h2 {
	font-size: 34px;
	line-height: 42px;
}

#exitoffers p {
	font-size: 15px;
	line-height: 20px;
}

.exitoffers-ei-left #exitoffers-container {
	width: 70%;
	height: 100%;
	left: -100%;
	top: 0;
	padding: 0;
	overflow-y: auto;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	border-radius: 0px 0px 0px 0px;
	-moz-border-radius: 0px 0px 0px 0px;
	-webkit-border-radius: 0px 0px 0px 0px;
 }

.exitoffers-ei-left #exitoffers-content {
	position: relative;
	height: auto;
	max-width: 600px;
	width: 100%;
	padding: 20px 60px 30px;
	margin: auto;
}

.exitoffers-ei-left.exitoffers-visible #exitoffers-container {
	left: 0px;
}

@media screen and (max-width: 768px)  {
	.exitoffers-ei-left #exitoffers-container {
		width: 80%;
	}
}

@media screen and (max-width: 576px)  {
	.exitoffers-ei-left #exitoffers-container {
		width: 90%;
	}
	.exitoffers-ei-left #exitoffers-content {
		padding: 10px 30px 20px;
	}
}

@media screen and (max-width: 576px)  {
	#exitoffers-container {
		padding: 30px 30px 10px;
	}
}


.exitoffers-ei-left.exitoffers-visible #exitoffers-container {
    /* display: none; */
    position: relative;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 100%);
    width: 38em;
    max-width: 100%;
    padding: 0 0 1.25em;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #545454;
    font-family: inherit;
    font-size: 1rem;
    display: grid;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    z-index: 20001;
    height: auto;
}

#exitoffers.exitoffers-visible, #exitoffers-backdrop.exitoffers-visible, .exitoffers-visible #exitoffers-container {
    display: grid;
    position: fixed;
    z-index: 1060;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    grid-template-areas:
        "top-start top top-end"
        "center-start center center-end"
        "bottom-start bottom-center bottom-end";
    grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
    height: 100%;
    padding: 0.625em;
    overflow-x: hidden;
    transition: background-color .1s;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: auto minmax(0, 1fr) auto;
    justify-content: center;
    align-items: center;
}

#exitoffers-content-l svg {
    width: 200px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.discount-box {
    display: block;
    padding: 20px;
    padding-left: 5px;
    padding-right: 5px;
    background: linear-gradient(90deg, #FAF4E0 0%, #FCDCCE 100%);
    font-size: 16px;
    font-weight: 500;
    color: #D27B52;
}