.panel_custom_footer {
	position: relative;
}

#custom-cta-widget {
	/* display: none; */
	position: fixed;
	bottom: -10px;
	right: 0;
	padding: 20px 20px 30px 20px;
	width: 100%;
	max-width: 450px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 0 10px rgb(0 0 0 / 30%);
	transition: transform 0.5s;
	transform: translateY(100%);
	z-index: 9999; /* 2147483640 */
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

#custom-cta-widget.in-view {
	transform: translateY(-2%);
}

#custom-cta-widget.left {
	left: 0;
	border-top-right-radius: 10px;
	border-top-left-radius: 0;
}

#custom-cta-widget .slide-content {
	flex: 1 1 auto;
	position: relative;
	padding: 0 0;
}

#custom-cta-widget .headline {
	font-weight: 600;
	color: inherit;
	margin: 0 auto;
	max-width: 275px;
	text-align: center;
}

#custom-cta-widget .headline h3 {
	color: white;
	padding: 0;
	margin: 0;
	font-size: 28px;
	line-height: 28px;
	text-transform: uppercase;
}

#custom-cta-widget .close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 25px;
	font-weight: 600;
	cursor: pointer;
	color: white;
}

#custom-cta-widget .inner-section .slide-content .desc {
	color: #fff;
}

#custom-cta-widget .inner-section .inputs {
	max-width: 340px;
	margin: 0 auto;
}

#custom-cta-widget .inner-section .inputs input {
	height: 54px;
	border: none;
	margin: 20px 0;
}

#custom-cta-widget .inner-section .inputs input::placeholder {
	padding-left: 10px;
	font-size: 16px;
}

#custom-cta-widget .inner-section .submit {
	background-color: #3fc2ba;
	border-radius: 10px;
	padding: 15px 80px;
	text-transform: none;
	max-width: 250px;
	margin: 10px auto;
	display: block;
}

@media (min-width: 640px) {
	#custom-cta-widget {
		right: 2%;
	}
}