/* form#sytech-newsletter-subscription {
	position: relative;
	display: flex;
} */
form#sytech-newsletter-subscription p.failed,
form#sytech-newsletter-subscription p.success {
	position: absolute;
	visibility: hidden;
	bottom: 0;
	left: 0;
	background: var(--theme_color);
	color: white;
	text-transform: initial;
	padding: 0.8rem 0.8rem 0.8rem 1.8rem;
	font-size: 0.7rem;
	border-radius: 0.2rem;
	max-width: 17rem;
	line-height: 1.2rem;
	transition: all 0.2s ease;
	opacity: 1;
}

form#sytech-newsletter-subscription p.failed.active,
form#sytech-newsletter-subscription p.success.active {
	bottom: 3.8rem;
	visibility: visible;
}

form#sytech-newsletter-subscription p.failed:before,
form#sytech-newsletter-subscription p.success:before {
	content: "";
	position: absolute;
	width: 0.9rem;
	height: 0.9rem;
	left: 0.5rem;
	background: url('../img/notify.svg') no-repeat;
	background-size: contain;
	top: 15px;
}

form#sytech-newsletter-subscription p.failed:after,
form#sytech-newsletter-subscription p.success:after {
	content: "";
	position: absolute;
	left: 1rem;
	bottom: -0.5rem;
	width: 0;
	height: 0;
	border-left: 0.4rem solid transparent;
	border-right: 0.4rem solid transparent;
	border-top: 0.6rem solid var(--theme_color);
}

/* form#sytech-newsletter-subscription input[type="email"], footer form input[type="submit"] {
    border-radius: 5px;
    border: 1px solid #666;
    background-color:#1a1a1a;
    line-height: 2rem;
}
form#sytech-newsletter-subscription input[type="email"] {
	width: 305px;
	padding: 12px 15px;
    font-size: 14px;
    color: #999;
    border: 2px solid #d0d2d6;
    border-radius: 3px;
    width: 305px;
	background-color: transparent;
	line-height: unset;
}
form#sytech-newsletter-subscription input[type="email"]:focus {
	outline: 1px solid white;
}
form#sytech-newsletter-subscription input[type="submit"] {
	width: 47px;
    height: 47px;
    background: url('../img/submit.svg') no-repeat center;
    background-size: cover;
    border: none;
    background-color: transparent;
    margin-left: 8px;
    cursor: pointer;
	text-indent: -9999px;
} */

.newsletter_model {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	visibility: hidden;
}

.newsletter_model .newsletter_content {
	width: 500px;
	height: auto;
	border-radius: 15px;
	background-color: #fff;
	position: fixed;
	top: -50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;
	padding: 2rem;
	transition: all .3s;
}

.newsletter_model .newsletter_over {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	transition: .3s all;
	opacity: 0;
	z-index: -1;
	visibility: hidden;
}

.newsletter_model.active .newsletter_content {
	top: 50%;
}

.subscription_open{
	cursor: pointer;
}
.newsletter_model.active {
	visibility: visible;

}
.newsletter_model.active .newsletter_over {
	opacity: 1;
	z-index: 999;
	visibility: visible;
}

.newsletter_model .sub_head_title {
	color: #333 !important;
	text-align: center;
	margin-top: 18px !important;
}

.newsletter_model .newsletter_content input[name="sub_first_name"],
.newsletter_model .newsletter_content input[name="sub_last_name"],
.newsletter_model .newsletter_content input[name="sub_email_address"] {
	color: var(--title_color);
	font-size: 16px;
	font-weight: 500;
	border-radius: 6px;
	padding: .5rem;
	width: 100%;
	border: #ccc solid 1px;
}

.newsletter_model .newsletter_content input[type="submit"] {
	color: #fff;
	font-size: 15px;
	line-height: 26px;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.3s;
	padding: 12px 20px;
	background-color: var(--theme_color)
}

.newsletter_model .newsletter_content input[type="submit"]:hover {
	background-color: var(--bg_color)
}

.newsletter_model.active .newsletter_content label {
	font-weight: 500; 
    display: block;
    margin-bottom: .5rem;
}
.newsletter_model.active .newsletter_content p.flex{
	gap: .8rem;
}
.newsletter_model.active .newsletter_content p.flex input{
	width: 18px;
    height: 18px;
	cursor: pointer;
}
.newsletter_model.active .newsletter_content p.flex label{
	font-size: 13px;
}

.newsletter_model.active .newsletter_content p{
	margin-bottom: .8rem;
}
.newsletter_model .newsletter_content input[type="submit"]{ 
	margin-top: .5rem;
	width: 100%;
}
.newsletter_model .newsletter_content .sub_col2{
	display: flex;
	gap: .8rem;
}
.newsletter_model .newsletter_content .note.success{
	color: var(--theme_color);
}
.newsletter_model .newsletter_content .note.failed{
	color: red;
}

@media screen and (max-width: 786px) {
	.newsletter_model .newsletter_content{
		width: 100%;
	}
	.newsletter_model.active .newsletter_content p.flex{
		font-size: 12px;
	}
	.newsletter_model.active .newsletter_content label{
		font-size: 14px;
	}
	footer .content .weap .slide_obj strong.sub_head_title{
		border: none;
		color: #fff;
		font-weight: 500;
		display: block;
		margin-top: 38px;
		font-size: 20px;
		margin-bottom: 25px;
	}
}