/* ===== FORM EMAIL ĐĂNG KÝ ===== */
.cf7-email-wrap {
	display: flex;
	align-items: center;
	background: var(--color-white);
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #d1d5db;
	width: max-content;
	bottom: -15px;
    position: relative;
}

/* ICON */
.cf7-email-wrap .cf7-icon {
	padding: 0 12px;
	font-size: 18px;
	color: var(--color-black);
	display: flex;
	align-items: center;
}

/* INPUT */
.cf7-email-wrap input[type="email"] {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	margin-top: 8px;
	padding: 12px 10px;
	font-size: 14px;
	flex: 1;
	min-width: 0;
}

/* BUTTON */
.cf7-email-wrap input[type="submit"] {
	background: var(--Navy-Blue);
	color: var(--color-white);
	border: none;
	margin-top: 10px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.25s;
	white-space: nowrap;
}

.cf7-email-wrap .wpcf7-spinner {
	display: none;
}

/* MOBILE */
@media (max-width: 768px) {
	.cf7-email-wrap {
		flex-direction: row;
		width: auto;
		bottom: 0;
	}

	.cf7-email-wrap input[type="email"] {
		font-size: 13px;
	}

	.cf7-email-wrap input[type="submit"] {
		font-size: 13px;
	}
}
