/* Newsletter plugin - footer subscribe UX */
.subscribe-footer .tnp.tnp-subscription {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.subscribe-footer input.tnp-email[type="email"],
.subscribe-footer .tnp-subscription input[type="email"] {
	border: 1px solid #D0D5DD;
	height: 48px;
	border-radius: 24px;
	padding: 12px 16px;
	font-size: 16px;
	color: #667085;
	line-height: 24px;
	min-width: 72%;
	background: #fff;
}
.subscribe-footer .tnp-subscription input[type="email"]::placeholder {
	color: #98A2B3;
}
.subscribe-footer .tnp-subscription input[type="submit"],
.subscribe-footer .tnp-subscription button[type="submit"],
.subscribe-footer .tnp-subscription .tnp-submit {
	background-color: var(--primary-color);
	height: 48px;
	border-radius: 24px;
	padding: 12px 32px;
	border-width: 0px;
	color: #fff;
	font-size: 16px;
	font-family: 'Gilroy-SemiBold', sans-serif;
	cursor: pointer;
	transition: filter 160ms ease, opacity 160ms ease;
}
.subscribe-footer form.tnp-ajax.is-loading .tnp-subscription input[type="submit"],
.subscribe-footer form.tnp-ajax.is-loading .tnp-subscription button[type="submit"],
.subscribe-footer form.tnp-ajax.is-loading .tnp-subscription .tnp-submit {
	opacity: 0.85;
}
.subscribe-footer .tnp-subscription input[type="submit"]:disabled,
.subscribe-footer .tnp-subscription button[type="submit"]:disabled,
.subscribe-footer .tnp-subscription .tnp-submit[disabled] {
	opacity: 0.65;
	cursor: not-allowed;
}

.subscribe-footer form.tnp-ajax.is-loading::after {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-top-color: rgba(255, 255, 255, 1);
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	animation: surveycams-spin 0.8s linear infinite;
	pointer-events: none;
}
@keyframes surveycams-spin {
	to { transform: translateY(-50%) rotate(360deg); }
}

.subscribe-footer .tnp-response {
	border-radius: 14px;
	padding: 10px 14px;
	font-size: 14px;
	line-height: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
}
.subscribe-footer .tnp-response:empty {
	display: none;
}
.subscribe-footer .tnp-response[hidden] {
	display: none !important;
}
.subscribe-footer .tnp-response p {
	margin: 0;
	color: inherit;
  font-size: inherit;
}
.subscribe-footer .tnp-response.is-success {
	background: rgba(38, 162, 105, 0.18);
	border-color: rgba(38, 162, 105, 0.45);
}
.subscribe-footer .tnp-response.is-error {
	background: rgba(238, 74, 66, 0.18);
	border-color: rgba(238, 74, 66, 0.45);
}