#newsletter-form {
	width: 75%;
}

.newsletter-block .row {
	margin: 0;
}

#newsletter-form ul {
	margin: 0;
	list-style-type: none;
	padding: 0px;
	display: flex;
	justify-content: flex-end;
	height: 40px;
}

#newsletter-form li {
	display: flex;
	flex-direction: column;
	padding-bottom: 10px;
	position: relative;
}

#newsletter-form input[type="email"] {
	color: #898585;
    background-color: #F4F0EA;
    padding: 8px 20px;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	width: 285px;
	font-size: 14px;
}

#newsletter-form input[type="email"]:focus {
	outline: none;
}

#newsletter-form .check-wrapper {
	position: absolute;
	width: 20px;
	height: 20px;
	content: "";
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
}

#newsletter-form .check {
	content: "";
	background: url(/wp-content/uploads/2022/04/Check.svg);
	background-repeat: no-repeat;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: invert(72%) sepia(12%) saturate(2582%) hue-rotate(90deg) brightness(79%) contrast(68%);
}

#newsletter-form label {
	margin: 0;
	position: absolute;
	top: 5px;
	left: 10px;
	font-size: 14px;
}

#newsletter-form input[type=submit] {
	cursor: pointer;
	height: 40px;
	background-color: var(--beon-button-color);
	color:var(--beon-button-text-color);
	padding: 11px 22px;
	border: 0;
	line-height: normal;
	font-size: 12px;
}
@media only screen and (max-width:1024px){
	#newsletter-form{
		width: 100%;
	}
	#newsletter-form input[type="email"] {
		width: 200px;
	}
}
@media only screen and (max-width:768){
	#newsletter-form ul {	
		justify-content: center !important;
	}
}