/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2026 | 11:01:36 */
.footer-form{
	z-index: 2;
	position: relative;
}

.footer-form .input-field{
	position: relative;
	margin-bottom: 12px;
	max-width: 320px;
}

.footer-form .input-field label{
	position: absolute;
	color: #2B2B28;
	top: 50%;
	font-size: 18px;
	z-index: 2;
	transform: translatey(-50%);
	left: 16px;
}

.footer-form .input-field input{
	padding: 8px 16px;
	color: #2B2B28;
	font-size: 18px;
	border-radius: 16px;
}

.footer-form .input-field .wpcf7-not-valid-tip{
	padding-left: 16px;
}

.footer-form .input-field .wpcf7-not-valid{
}

.footer-form .input-field .submit-btn {
  background: #3c7d3c;
  color: white;
  border: none;
  padding: 0 11px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 10px;
  position: absolute;
  right: 16px;
  top: 7px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.footer-form .input-field .submit-btn:hover {
  background: #2f6330;
}

.footer-form .acceptance{
	color: #888;
	padding: 0 10px;
}

.footer-form .acceptance .wpcf7-list-item{
	margin-left: 0;
}

.footer-form .acceptance .wpcf7-list-item label{
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-form .acceptance [type="checkbox"]{
	width: 21px;
	height: 21px;
	border-radius: 100%;
}

/* Hide default checkbox */
.footer-form .acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%; /* 👈 makes it circle */
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}

/* Checked state */
.footer-form .acceptance input[type="checkbox"]:checked {
  background-color: #3c7d3c;
  border-color: #3c7d3c;
}

/* Inner dot */
.footer-form .acceptance input[type="checkbox"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#subscribe-form .wpcf7-response-output{
	color: #888;
}

.company-field,
.date-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
}

.company-field.active,
.date-fields.active {
  max-height: 300px;
  opacity: 1;
}

.wpcf7 form.sent .wpcf7-response-output{
	border: 0 !important;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875em;
  margin-top: 5px;
}