/* General Form Styles */
div[name='FormContactForm7'] {
  outline: none;
}

div[name='FormContactForm7'] :focus-visible {
  border-bottom: 1px solid hsl(35.2, 23.5%, 38.4%);
  outline: none;
  outline-color: hsla(0, 0%, 100%, 0);
  outline-color: -webkit-focus-ring-color;
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 2px;
}

div[name='FormContactForm7'] .form-row-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}

div[name="FormContactForm7"] .progress-bar .circle.active p {

	margin-top: 15px;
}

div[name="FormContactForm7"] .progress-bar .circle p {

	margin-top: 15px;
}


@media (min-width: 768px) {
  div[name='FormContactForm7'] .form-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

div[name='FormContactForm7'] .form-row-3 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  div[name='FormContactForm7'] .form-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  div[name='FormContactForm7'] .form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

div[name='FormContactForm7'] .form-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

div[name='FormContactForm7'] .form-flex-col {
  width: 100%;
}

@media (min-width: 768px) {
  div[name='FormContactForm7'] .form-flex-col {
    flex-grow: 1;
    width: unset;
  }
}

div[name='FormContactForm7'] .form-flex-col .button {
  width: 100%;
  min-height: 52px;
}

div[name='FormContactForm7'] .step {
  display: none;
}

div[name='FormContactForm7'] .step.active {
  display: block;
}

div[name='FormContactForm7'] .progress-bar {
  display: flex;
  align-items: center;
  color: hsl(35.2, 23.5%, 38.4%);
  margin-bottom: 20px;
}

div[name='FormContactForm7'] .progress-bar .circle {
  align-items: center;
  background-color: hsl(37.5, 22.2%, 92.9%);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-right: 5px;
  font-weight: bold;
}

div[name='FormContactForm7'] .progress-bar .circle.active {
  background-color: hsl(35.2, 23.5%, 38.4%);
  color: white;
}

div[name='FormContactForm7'] .progress-bar .line {
  height: 2px;
  flex-grow: 1;
  background-color: hsl(37.5, 22.2%, 92.9%);
  margin-right: 5px;
}

div[name='FormContactForm7'] .progress-bar .line.active {
  background-color: hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] input {
  border: 0;
  border-bottom: 1px solid hsl(35.2, 23.5%, 38.4%);
  padding: 8px 0;
  width: 100%;
}

div[name='FormContactForm7'] input:focus {
  border-color: hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] input:focus-visible {
  border-bottom: 1px solid hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] input[aria-required="true"] {
  border: 0;
  border-bottom: 1px solid hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] input[aria-required="true"]:focus {
  border-color: hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] input[aria-required="true"]:focus-visible {
  border-bottom: 1px solid hsl(35.2, 23.5%, 38.4%);
}

div[name='FormContactForm7'] .form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

div[name='FormContactForm7'] .button {
  background-color: white;
  border: 1px solid hsl(35.2, 23.5%, 38.4%);
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: black;
}

div[name='FormContactForm7'] .next-step {
  border-radius: 20px;
}

div[name='FormContactForm7'] .next-step:hover {
  background: hsl(35.2, 23.5%, 38.4%);
  color: white;
}

div[name='FormContactForm7'] .prev-step {
  border-radius: 20px;
}

div[name='FormContactForm7'] .prev-step:hover {
  background: hsl(35.2, 23.5%, 38.4%);
  color: white;
}

/* Error Styling */
div[name='FormContactForm7'] .error {
    border-color: red !important;
}

div[name='FormContactForm7'] .error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 5px;
    display: block;
}


.wpcf7-form-control.wpcf7-submit.has-spinner.next-step {
	padding: 12px;
	background: #79664b;
}