.newsletter-block .newsletter-container{
	background-color: var(--bg-newsletter-color);
	color: var(--block-newsletter-color);
	border-radius: var(--theme-border-radius);
	min-height: 560px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media only screen and (min-width: 1025px) {
	.newsletter-block .newsletter-container{
		padding: 45px;
	}
}

.newsletter-block .newsletter-container .h1,
.newsletter-block .newsletter-container .h2{
	color: inherit;
}

.newsletter-block .newsletter-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--block-newsletter-color, #2E2E2E);
	padding-bottom: 10px;
	margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {
	#mc_embed_signup{
		max-width: 55vw;
	}

	.newsletter-block div.h2{
		max-width: 50vw;
	}

	.newsletter-block .newsletter-form {
		margin-bottom: 60px;
		padding-bottom: 30px;
	}
}

.newsletter-block .newsletter-form .mc-field-group {
	flex: 1;
	margin: 0;
}

.newsletter-block .newsletter-input {
	width: 100%;
	border: none;
	background: transparent;
	padding: 0;
	font-size: var(--text-size);
	font-family: var(--font-base);
    line-height: var(--text-line-height);
	outline: none;
}
.newsletter-block .newsletter-input::placeholder {
	font-size: var(--text-size);
	font-family: var(--font-base);
    line-height: var(--text-line-height);
	color: var(--block-newsletter-color);
}

/* Button */
.newsletter-block .btn-fill {
	position: relative;
	overflow: hidden;
	padding: 0;
	height: 60px;
	background-color: var(--block-newsletter-color)!important;
	color: var(--bg-newsletter-btn-color, var(--bg-newsletter-color))!important;
	border-radius: 30px;
	text-decoration: none;
	font-family: var(--font-base);
	font-size: var(--btn-size);
	line-height: var(--btn-line-height);
	font-weight: var(--bold-font-weight);
	display: block;
	width: fit-content;
	cursor: pointer;
	border: 0;
}

.newsletter-block .btn-fill::after{
	background-color: var(--block-newsletter-color)!important;	
}
/* DFL scope */
body.site-4 .newsletter-block .btn-fill {
	background-color: var(--primary-color)!important;
	color: var(--secondary-color)!important;
}
body.site-4 .newsletter-block .btn-fill::after{
	background-color: var(--primary-color)!important;
}

body.site-4 .newsletter-block .btn-fill:hover{
	background-color: var(--secondary-color)!important;
	color: var(--primary-color)!important;
}
body.site-4 .newsletter-block .btn-fill:hover::after{
	background-color: var(--secondary-color)!important;
	filter: brightness(1);
}


.newsletter-block .btn-slide-inner {
	position: relative;
	height: 100%;
	transition: transform 0.3s ease;
}

.newsletter-block .btn-slide-layer {
	height: 100%;
}

.newsletter-block .btn-slide-layer + .btn-slide-layer {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}

.newsletter-block .btn-content {
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0 30px;
}

@media only screen and (min-width: 1025px) {
	.newsletter-block .btn-content {
		height: 60px;
		padding: 0 35px;
	}
}

.newsletter-block .btn-content svg {
	width: 15px;
	height: 10px;
	flex-shrink: 0;
}
.newsletter-block .btn-content svg *{
	fill: currentcolor;
	stroke: currentcolor;
}

.newsletter-block .form-accept-btn{
    grid-column: span 2;
    margin-bottom: 20px;
}
@media only screen and (min-width: 1025px) {
    .newsletter-block .form-accept-btn{
        margin-top: -40px;
        margin-bottom: 40px;
    }
}