.panel_custom_footer {
	position: relative;
}

#custom-cta-widget {
	position: fixed;
	bottom: -10px;
	right: 0;
	padding: 20px 20px 95px 20px;
	width: 100%;
	max-width: 450px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
    background-color: #41738d;
	box-shadow: 0 0 10px rgb(0 0 0 / 30%);
	transition: transform 0.5s;
	transform: translateY(100%);
	z-index: 9999; 
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#custom-cta-widget:after {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgb(25 27 28 / 70%), rgba(5,73,123,0));
    z-index: -1;
    pointer-events: none;
}

#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;
    text-align: center;
}

#custom-cta-widget .inner-section .inputs {
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 90%;
}

#custom-cta-widget .inner-section .inputs input:first-of-type {
    margin: 20px 0 10px 0;
}

#custom-cta-widget .inner-section .inputs input {
	height: 54px;
	border: none;
    border-radius: 4px;
}

#custom-cta-widget .inner-section .inputs input::placeholder {
	padding-left: 10px;
	font-size: 16px;
}

#custom-cta-widget .inner-section .submit {
	border-radius: 4px;
	padding: 15px 80px;
	text-transform: uppercase;
	margin: 10px auto;
	display: block;
	width: 90%;
}

@media (min-width: 641px) {
	#custom-cta-widget {
		right: 2%;
		padding: 20px 20px 30px 20px;
	}	
}